forked from coracle/flotilla
18 lines
535 B
Svelte
18 lines
535 B
Svelte
<script lang="ts">
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import SecondaryNavItem from "@lib/components/SecondaryNavItem.svelte"
|
|
import {makeSpacePath} from "@app/routes"
|
|
import {deriveNotification, getRoomFilters} from "@app/notifications"
|
|
|
|
export let url
|
|
export let room
|
|
|
|
const path = makeSpacePath(url, room)
|
|
const notification = deriveNotification(path, getRoomFilters(room), url)
|
|
</script>
|
|
|
|
<SecondaryNavItem href={path} notification={$notification}>
|
|
<Icon icon="hashtag" />
|
|
{room}
|
|
</SecondaryNavItem>
|