mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-19 05:27:57 +00:00
Romein van Buren
415efe9ac4
* Consistent usage of modal footer * Remove hosts * Moved hosts to dedicated store
106 lines
2.8 KiB
Svelte
106 lines
2.8 KiB
Svelte
<script>
|
|
import BlankState from '$components/blankstate.svelte';
|
|
import ContextMenu from '$components/contextmenu.svelte';
|
|
import connections from '$lib/stores/connections';
|
|
import contextMenu from '$lib/stores/contextmenu';
|
|
import environment from '$lib/stores/environment';
|
|
import hosts from '$lib/stores/hosts';
|
|
import applicationInited from '$lib/stores/inited';
|
|
import About from '$organisms/about.svelte';
|
|
import Connection from '$organisms/connection/index.svelte';
|
|
import Settings from '$organisms/settings/index.svelte';
|
|
import { EventsEmit, EventsOn } from '$wails/runtime';
|
|
import { tick } from 'svelte';
|
|
|
|
const activeHostKey = '';
|
|
let activeDbKey = '';
|
|
let activeCollKey = '';
|
|
let settingsModalOpen = false;
|
|
let aboutModalOpen = false;
|
|
let connectionManager;
|
|
let showWelcomeScreen = undefined;
|
|
|
|
$: host = hosts[activeHostKey];
|
|
$: connection = $connections[activeHostKey];
|
|
|
|
hosts.subscribe(h => {
|
|
if (h && (showWelcomeScreen === undefined)) {
|
|
showWelcomeScreen = !Object.keys($hosts || {}).length;
|
|
}
|
|
});
|
|
|
|
async function createFirstHost() {
|
|
showWelcomeScreen = false;
|
|
await tick();
|
|
connectionManager.createHost();
|
|
}
|
|
|
|
EventsOn('OpenPreferences', () => settingsModalOpen = true);
|
|
EventsOn('OpenAboutModal', () => aboutModalOpen = true);
|
|
</script>
|
|
|
|
<svelte:window on:contextmenu|preventDefault />
|
|
|
|
<div id="root" class="platform-{$environment?.platform}">
|
|
<div class="titlebar"></div>
|
|
|
|
{#if $applicationInited && $hosts && (showWelcomeScreen !== undefined)}
|
|
<main class:empty={showWelcomeScreen}>
|
|
{#if showWelcomeScreen}
|
|
<BlankState label="Welcome to Rolens!" image="/logo.png" pale={false} big={true}>
|
|
<button class="btn" on:click={createFirstHost}>Add your first host</button>
|
|
</BlankState>
|
|
{:else}
|
|
<Connection {activeHostKey} bind:activeCollKey bind:activeDbKey bind:this={connectionManager} />
|
|
{/if}
|
|
</main>
|
|
|
|
{#key $contextMenu}
|
|
<ContextMenu {...$contextMenu} on:close={contextMenu.hide} />
|
|
{/key}
|
|
|
|
<Settings bind:show={settingsModalOpen} />
|
|
<About bind:show={aboutModalOpen} />
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
.titlebar {
|
|
height: 0;
|
|
background-color: #00002a;
|
|
--wails-draggable: drag;
|
|
}
|
|
#root.platform-darwin .titlebar {
|
|
height: var(--darwin-titlebar-height);
|
|
}
|
|
|
|
main {
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template: 1fr / minmax(300px, 0.3fr) 1fr;
|
|
}
|
|
main.empty {
|
|
grid-template: 1fr / 1fr;
|
|
}
|
|
#root.platform-darwin main {
|
|
height: calc(100vh - var(--darwin-titlebar-height));
|
|
}
|
|
|
|
main > :global(*) {
|
|
overflow: auto;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
main > :global(.addressbar) {
|
|
grid-column: 1 / 3;
|
|
}
|
|
|
|
.databaselist {
|
|
overflow: scroll;
|
|
}
|
|
|
|
.btn.create {
|
|
margin-top: 0.5rem;
|
|
}
|
|
</style>
|