mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-28 00:12:58 +00:00
fix: fav and bookmark icon not updating for local sync fix: cards not showing local progress fix: animated anilist PFPs not working fix: menubar being selectable fix: offline banner moving content outside of screen fix: local sync entry deletion being problematic
47 lines
1.4 KiB
Svelte
47 lines
1.4 KiB
Svelte
<script lang='ts' context='module'>
|
|
import { writable, type Writable } from 'simple-store-svelte'
|
|
|
|
import { client } from '$lib/modules/anilist'
|
|
import MessageClient from '$lib/modules/irc'
|
|
|
|
const irc: Writable<Promise<MessageClient> | null> = writable(null)
|
|
</script>
|
|
|
|
<script lang='ts'>
|
|
import Interface from './interface.svelte'
|
|
|
|
const viewer = client.viewer.value
|
|
|
|
let ident: { nick: string, id: string, pfpid: string, type: 'al' | 'guest' }
|
|
|
|
if (viewer?.viewer) {
|
|
const url = viewer.viewer.avatar?.large ?? ''
|
|
const id = '' + viewer.viewer.id
|
|
const pfpid = url.slice(url.lastIndexOf('/') + 2 + id.length + 1)
|
|
ident = { nick: viewer.viewer.name, id, pfpid, type: 'al' }
|
|
} else {
|
|
ident = { nick: 'Guest-' + crypto.randomUUID().slice(0, 6), id: crypto.randomUUID().slice(0, 6), pfpid: '0', type: 'guest' }
|
|
}
|
|
|
|
irc.value ??= MessageClient.new(ident)
|
|
</script>
|
|
|
|
{#if $irc}
|
|
{#await $irc}
|
|
<div class='w-full h-full flex items-center justify-center flex-col text-muted-foreground text-lg'>
|
|
<svg
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
width='24'
|
|
height='24'
|
|
viewBox='0 0 24 24'
|
|
fill='none'
|
|
stroke='currentColor'
|
|
class='animate-spin mb-2'>
|
|
<path d='M21 12a9 9 0 1 1-6.219-8.56' />
|
|
</svg>
|
|
Loading...
|
|
</div>
|
|
{:then client}
|
|
<Interface {client} />
|
|
{/await}
|
|
{/if}
|