Refactor navbar to dynamically inject buttons
This commit is contained in:
parent
c89eb37361
commit
c6e441dc26
@ -2,74 +2,67 @@
|
|||||||
<div class="navbar-brand">
|
<div class="navbar-brand">
|
||||||
<a class="navbar-item primary" href="/">
|
<a class="navbar-item primary" href="/">
|
||||||
<i class="bi bi-cup-straw"></i>
|
<i class="bi bi-cup-straw"></i>
|
||||||
|
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
|
<a class="navbar-item primary is-hidden" id="nav_username" href="/">
|
||||||
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
|
<strong>Hey, <span id="nav_usernameContent"></span></strong>
|
||||||
<span aria-hidden="true"></span>
|
|
||||||
<span aria-hidden="true"></span>
|
|
||||||
<span aria-hidden="true"></span>
|
|
||||||
<span aria-hidden="true"></span>
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="navbarBasicExample" class="navbar-menu">
|
<div id="navbarBasicExample" class="navbar-menu is-active">
|
||||||
<div class="navbar-start">
|
<div class="navbar-end">
|
||||||
<a class="navbar-item" href="/">Screensaver</a>
|
<div class="navbar-item" id="dynamic-navbar-buttons">
|
||||||
<a class="navbar-item" href="/user_select">user_select</a>
|
<!-- Buttons will be dynamically injected here -->
|
||||||
<a class="navbar-item" href="/product_select">product_select</a>
|
</div>
|
||||||
<a class="navbar-item" href="/test">Test <span class="tag is-info">Dev</span></a>
|
|
||||||
|
|
||||||
<!--<div class="navbar-item has-dropdown is-hoverable">
|
|
||||||
<a class="navbar-link">More</a>
|
|
||||||
<div class="navbar-dropdown">
|
|
||||||
<a class="navbar-item">About</a>
|
|
||||||
<a class="navbar-item is-selected">Jobs</a>
|
|
||||||
<a class="navbar-item">Contact</a>
|
|
||||||
<hr class="navbar-divider">
|
|
||||||
<a class="navbar-item">Report an issue</a>
|
|
||||||
</div>
|
|
||||||
</div>-->
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="navbar-end">
|
|
||||||
<div class="navbar-item is-hidden" id="showOnLogin">
|
|
||||||
<strong>Hey, <span id="nav_username"></span></strong>
|
|
||||||
<button class="button" onclick="window.location='/pay_up'" >Zur Abrechnung</button>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-item is-hidden" id="onlyShowRoot">
|
|
||||||
<button class="button" onclick="window.location='/admin/'" >Zur Administration</button>
|
|
||||||
</div>
|
|
||||||
<div class="navbar-item is-hidden" id="onlyShowAdmin">
|
|
||||||
<button class="button" onclick="window.location='/admin/'" >Zur Administration</button>
|
|
||||||
<button class="button" onclick="window.location='/'" >Abmelden</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script>
|
<script>
|
||||||
// Check if ?user is set
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
if (window.location.search.includes('user')) {
|
const navbarButtons = document.getElementById('dynamic-navbar-buttons');
|
||||||
// Show the sign up button
|
const currentPath = window.location.pathname;
|
||||||
document.querySelector('#showOnLogin').classList.remove('is-hidden');
|
const queryParams = new URLSearchParams(window.location.search);
|
||||||
// Get the username from the cookie
|
|
||||||
username = document.cookie.split('; ').find(row => row.startsWith('name')).split('=')[1];
|
|
||||||
// Set the username in the nav
|
|
||||||
document.getElementById('nav_username').innerText = username;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if /user_select is the current page
|
const buttonsConfig = {
|
||||||
if (window.location.pathname == '/user_select') {
|
'/user_select': [
|
||||||
// Show the sign up button
|
{ text: '', icon: 'bi bi-gear', link: '/admin' }
|
||||||
document.querySelector('#onlyShowRoot').classList.remove('is-hidden');
|
],
|
||||||
}
|
'/product_select': [
|
||||||
|
{ text: 'Zur Abrechnung', link: '/pay_up' },
|
||||||
|
{ text: '', icon: 'bi bi-gear', link: '/admin' },
|
||||||
|
{ text: '', icon: 'bi bi-box-arrow-right', link: '/user_select' }
|
||||||
|
],
|
||||||
|
'/pay_up': [
|
||||||
|
{ text: '', icon: 'bi bi-gear', link: '/admin' },
|
||||||
|
{ text: '', icon: 'bi bi-box-arrow-right', link: '/user_select' }
|
||||||
|
],
|
||||||
|
'/admin': [
|
||||||
|
{ text: '', icon: 'bi bi-gear', link: '/admin' },
|
||||||
|
{ text: '', icon: 'bi bi-house', link: '/user_select' }
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
// If admin is contained in url
|
if (currentPath === '/product_select' && queryParams.has('user')) {
|
||||||
if (window.location.pathname.includes('admin')) {
|
const username = document.cookie.split('; ').find(row => row.startsWith('name'))?.split('=')[1];
|
||||||
// Show the sign up button
|
if (username) {
|
||||||
document.querySelector('#onlyShowAdmin').classList.remove('is-hidden');
|
document.getElementById('nav_usernameContent').innerText = username; // Set greeting
|
||||||
}
|
document.getElementById('nav_username').classList.remove('is-hidden'); // Show greeting
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const buttons = buttonsConfig[currentPath] || [];
|
||||||
|
buttons.forEach(button => {
|
||||||
|
const btn = document.createElement('button');
|
||||||
|
btn.className = 'button';
|
||||||
|
btn.onclick = () => window.location = button.link;
|
||||||
|
if (button.icon) {
|
||||||
|
const icon = document.createElement('i');
|
||||||
|
icon.className = button.icon;
|
||||||
|
btn.appendChild(icon);
|
||||||
|
}
|
||||||
|
if (button.text) {
|
||||||
|
btn.appendChild(document.createTextNode(button.text));
|
||||||
|
}
|
||||||
|
navbarButtons.appendChild(btn);
|
||||||
|
});
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user