forked from coracle/flotilla
92 lines
3.5 KiB
Svelte
92 lines
3.5 KiB
Svelte
<script lang="ts">
|
|
import {displayRelayUrl} from "@welshman/util"
|
|
import {userProfile} from "@welshman/app"
|
|
import Avatar from "@lib/components/Avatar.svelte"
|
|
import Divider from "@lib/components/Divider.svelte"
|
|
import PrimaryNavItem from "@lib/components/PrimaryNavItem.svelte"
|
|
import SpaceAdd from "@app/components/SpaceAdd.svelte"
|
|
import SpaceAvatar from "@app/components/SpaceAvatar.svelte"
|
|
import MenuSpaces from "@app/components/MenuSpaces.svelte"
|
|
import MenuSettings from "@app/components/MenuSettings.svelte"
|
|
import {userMembership, getMembershipUrls} from "@app/state"
|
|
import {pushModal} from "@app/modal"
|
|
import {makeSpacePath} from "@app/routes"
|
|
|
|
const addSpace = () => pushModal(SpaceAdd)
|
|
|
|
const showSpacesMenu = () => pushModal(MenuSpaces)
|
|
|
|
const showSettingsMenu = () => pushModal(MenuSettings)
|
|
</script>
|
|
|
|
<div class="relative hidden w-14 flex-shrink-0 bg-base-200 pt-4 md:block">
|
|
<div class="flex h-full flex-col justify-between">
|
|
<div>
|
|
<PrimaryNavItem title="Home" href="/home" class="tooltip-right">
|
|
<Avatar src="/flotilla.png" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
<Divider />
|
|
{#if import.meta.env.VITE_PLATFORM_RELAY}
|
|
<PrimaryNavItem
|
|
title={displayRelayUrl(import.meta.env.VITE_PLATFORM_RELAY)}
|
|
href={makeSpacePath(import.meta.env.VITE_PLATFORM_RELAY)}
|
|
class="tooltip-right">
|
|
<SpaceAvatar url={import.meta.env.VITE_PLATFORM_RELAY} />
|
|
</PrimaryNavItem>
|
|
{:else}
|
|
{#each getMembershipUrls($userMembership) as url (url)}
|
|
<PrimaryNavItem
|
|
title={displayRelayUrl(url)}
|
|
href={makeSpacePath(url)}
|
|
class="tooltip-right">
|
|
<SpaceAvatar {url} />
|
|
</PrimaryNavItem>
|
|
{/each}
|
|
<PrimaryNavItem title="Add Space" on:click={addSpace} class="tooltip-right">
|
|
<Avatar icon="add-circle" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
<PrimaryNavItem title="Discover Spaces" href="/discover" class="tooltip-right">
|
|
<Avatar icon="compass-big" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
{/if}
|
|
</div>
|
|
<div>
|
|
<PrimaryNavItem
|
|
title="Settings"
|
|
href="/settings/profile"
|
|
prefix="/settings"
|
|
class="tooltip-right">
|
|
<Avatar src={$userProfile?.picture} class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
<PrimaryNavItem title="Messages" href="/chat" class="tooltip-right">
|
|
<Avatar icon="letter" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
<PrimaryNavItem title="Search" href="/people" class="tooltip-right">
|
|
<Avatar icon="magnifer" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<slot />
|
|
|
|
<div
|
|
class="border-top fixed bottom-0 left-0 right-0 z-nav h-14 border border-base-200 bg-base-100 md:hidden">
|
|
<div class="content-padding-x content-sizing flex justify-between px-2">
|
|
<div class="flex gap-4 sm:gap-8">
|
|
<PrimaryNavItem title="Search" href="/people">
|
|
<Avatar icon="magnifer" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
<PrimaryNavItem title="Messages" href="/chat">
|
|
<Avatar icon="letter" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
<PrimaryNavItem title="Spaces" on:click={showSpacesMenu}>
|
|
<Avatar icon="add-circle" class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
</div>
|
|
<PrimaryNavItem title="Settings" on:click={showSettingsMenu}>
|
|
<Avatar src={$userProfile?.picture} class="!h-10 !w-10" />
|
|
</PrimaryNavItem>
|
|
</div>
|
|
</div>
|