1
0
Fork 0
mirror of synced 2024-09-18 18:28:33 +12:00
budibase/packages/standard-components/src/Navigation.svelte

86 lines
1.5 KiB
Svelte
Raw Normal View History

2020-04-24 00:32:36 +12:00
<script>
import { authStore } from "../../component-sdk"
2020-04-24 00:32:36 +12:00
export let onLoad
export let logoUrl
export let _bb
2020-10-15 05:06:02 +13:00
export let title
2020-04-24 00:32:36 +12:00
let itemContainer
let hasLoaded
$: {
if (itemContainer) {
_bb.attachChildren(itemContainer)
if (!hasLoaded) {
2020-09-11 08:11:05 +12:00
_bb.call("onLoad")
2020-04-24 00:32:36 +12:00
hasLoaded = true
}
}
}
2020-10-15 08:12:41 +13:00
const logOut = () => {
2020-11-13 01:27:53 +13:00
authStore.actions.logOut()
location.reload()
2020-10-15 08:12:41 +13:00
}
2020-04-24 00:32:36 +12:00
</script>
2020-10-15 05:06:02 +13:00
<div class="nav">
<div class="nav__top">
<a href="/">
{#if logoUrl}
<img class="logo" alt="logo" src={logoUrl} height="48" />
{/if}
2020-10-15 08:12:41 +13:00
{#if title}<span>{title}</span>{/if}
2020-10-15 05:06:02 +13:00
</a>
<div class="nav__controls">
2020-10-15 08:12:41 +13:00
<div on:click={logOut}>Log out</div>
2020-10-15 05:06:02 +13:00
</div>
</div>
<div class="nav__menu" bind:this={itemContainer} />
</div>
2020-04-24 00:32:36 +12:00
<style>
2020-10-15 05:06:02 +13:00
.nav {
2020-04-24 00:32:36 +12:00
display: flex;
2020-10-15 05:06:02 +13:00
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
2020-04-24 00:32:36 +12:00
}
2020-10-15 05:06:02 +13:00
.nav__top {
2020-04-24 00:32:36 +12:00
display: flex;
2020-10-15 05:06:02 +13:00
flex-direction: row;
justify-content: space-between;
2020-04-24 00:32:36 +12:00
align-items: center;
}
2020-10-15 05:06:02 +13:00
.nav__top img {
margin-right: 16px;
2020-04-24 00:32:36 +12:00
}
2020-10-15 05:06:02 +13:00
.nav__controls {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: center;
gap: 16px;
}
.nav__controls > div:hover {
cursor: pointer;
color: #4285f4;
}
.nav__menu {
2020-04-24 00:32:36 +12:00
display: flex;
2020-10-15 05:06:02 +13:00
margin-top: 40px;
gap: 16px;
flex-direction: row;
justify-content: flex-start;
align-items: center;
2020-04-24 00:32:36 +12:00
}
2020-10-15 05:06:02 +13:00
.nav__menu > a {
font-size: 1.5em;
text-decoration: none;
2020-04-24 00:32:36 +12:00
}
</style>