creddy/src/views/Home.svelte

47 lines
1.4 KiB
Svelte
Raw Normal View History

2022-11-23 17:11:44 -08:00
<script>
import { onMount, createEventDispatcher } from 'svelte';
2022-12-22 21:50:09 -08:00
import { invoke } from '@tauri-apps/api/tauri';
2023-04-23 22:29:12 -07:00
2023-04-24 12:05:11 -07:00
import { navigate } from '../lib/routing.js';
2023-04-24 22:16:25 -07:00
import Nav from '../ui/Nav.svelte';
2023-04-23 22:29:12 -07:00
import Icon from '../ui/Icon.svelte';
2022-11-23 17:11:44 -08:00
export let appState;
2022-11-23 17:11:44 -08:00
const dispatch = createEventDispatcher();
onMount(async () => {
// will block until a request comes in
let req = await appState.pendingRequests.get();
appState.currentRequest = req;
2023-04-24 12:05:11 -07:00
navigate('Approve');
});
2022-12-22 21:50:09 -08:00
let status = 'unknown';
onMount(async() => {
status = await invoke('get_session_status');
})
2022-11-23 17:11:44 -08:00
</script>
2022-12-22 21:50:09 -08:00
2023-04-24 22:16:25 -07:00
<Nav />
2022-12-22 21:50:09 -08:00
{#if status === 'locked'}
2023-04-23 22:29:12 -07:00
<div class="flex flex-col h-screen justify-center items-center space-y-4">
<img src="/static/padlock-closed.svg" alt="An unlocked padlock" class="w-32" />
<h2 class="text-2xl font-bold">Creddy is locked</h2>
2023-04-24 22:16:25 -07:00
<Link target="Unlock">
<button class="btn btn-primary">Unlock</button>
</Link>
2023-04-23 22:29:12 -07:00
</div>
{:else if status === 'unlocked'}
<div class="flex flex-col h-screen justify-center items-center space-y-4">
<img src="/static/padlock-open.svg" alt="An unlocked padlock" class="w-24" />
2023-04-24 22:16:25 -07:00
<h2 class="text-2xl font-bold">Waiting for requests</h2>
2023-04-23 22:29:12 -07:00
</div>
2022-12-22 21:50:09 -08:00
{:else if status === 'empty'}
2023-04-24 22:16:25 -07:00
<Link target="EnterCredentials">
<button class="btn btn-primary">Enter Credentials</button>
</Link>
2022-12-22 21:50:09 -08:00
{/if}