[feat] realm popup

This commit is contained in:
kwaroran
2023-07-19 22:51:28 +09:00
parent a208623621
commit 287cfcb1f9
4 changed files with 29 additions and 5 deletions

View File

@@ -5,10 +5,12 @@
import { DataBase, loadedStore } from './ts/storage/database';
import ChatScreen from './lib/ChatScreens/ChatScreen.svelte';
import AlertComp from './lib/Others/AlertComp.svelte';
import RealmPopUp from './lib/UI/Realm/RealmPopUp.svelte';
import { alertStore } from './ts/alert';
import GridChars from './lib/Others/GridCatalog.svelte';
import WelcomeRisu from './lib/Others/WelcomeRisu.svelte';
import Settings from './lib/Setting/Settings.svelte';
import { showRealmInfoStore } from './ts/characterCards';
let didFirstSetup: boolean = false
let gridOpen = false
@@ -49,4 +51,7 @@
{#if $alertStore.type !== 'none'}
<AlertComp />
{/if}
{#if $showRealmInfoStore}
<RealmPopUp bind:openedData={$showRealmInfoStore} />
{/if}
</main>