mirror of
https://github.com/dbgate/dbgate
synced 2024-11-15 08:16:28 +00:00
164 lines
4.4 KiB
Svelte
164 lines
4.4 KiB
Svelte
<script lang="ts">
|
|
import { onMount } from 'svelte';
|
|
import { internalRedirectTo } from './clientAuth';
|
|
import FormButton from './forms/FormButton.svelte';
|
|
import FormPasswordField from './forms/FormPasswordField.svelte';
|
|
import FormProvider from './forms/FormProvider.svelte';
|
|
import FormSubmit from './forms/FormSubmit.svelte';
|
|
import FormTextField from './forms/FormTextField.svelte';
|
|
import { apiCall, enableApi } from './utility/api';
|
|
import { useConfig } from './utility/metadataLoaders';
|
|
import ErrorInfo from './elements/ErrorInfo.svelte';
|
|
import FormSelectField from './forms/FormSelectField.svelte';
|
|
import { writable } from 'svelte/store';
|
|
import FormProviderCore from './forms/FormProviderCore.svelte';
|
|
|
|
export let isAdminPage;
|
|
|
|
const config = useConfig();
|
|
|
|
let availableConnections = null;
|
|
|
|
const values = writable({});
|
|
|
|
async function loadAvailableServers() {
|
|
availableConnections = await apiCall('storage/get-connections-for-login-page');
|
|
if (availableConnections?.length > 0) {
|
|
values.set({ databaseServer: availableConnections[0].id });
|
|
}
|
|
}
|
|
|
|
onMount(() => {
|
|
const removed = document.getElementById('starting_dbgate_zero');
|
|
if (removed) removed.remove();
|
|
|
|
if (!isAdminPage) {
|
|
loadAvailableServers();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<div class="root theme-light theme-type-light">
|
|
<div class="text">DbGate</div>
|
|
<div class="wrap">
|
|
<div class="logo">
|
|
<img class="img" src="logo192.png" />
|
|
</div>
|
|
<div class="box">
|
|
<div class="heading">Log In</div>
|
|
<FormProviderCore {values}>
|
|
{#if !isAdminPage && availableConnections}
|
|
<FormSelectField
|
|
label="Database server"
|
|
name="databaseServer"
|
|
isNative
|
|
options={availableConnections.map(conn => ({ value: conn.id, label: conn.label }))}
|
|
/>
|
|
{/if}
|
|
|
|
{#if !isAdminPage}
|
|
<FormTextField label="Username" name="login" autocomplete="username" saveOnInput />
|
|
{/if}
|
|
<FormPasswordField label="Password" name="password" autocomplete="current-password" saveOnInput />
|
|
|
|
{#if isAdminPage && $config && !$config.isAdminLoginForm}
|
|
<ErrorInfo message="Admin login is not configured. Please set ADMIN_PASSWORD environment variable" />
|
|
{/if}
|
|
|
|
<div class="submit">
|
|
<FormSubmit
|
|
value={isAdminPage ? 'Log In as Administrator' : 'Log In'}
|
|
on:click={async e => {
|
|
enableApi();
|
|
const resp = await apiCall('auth/login', {
|
|
isAdminPage,
|
|
...e.detail,
|
|
});
|
|
if (resp.error) {
|
|
internalRedirectTo(
|
|
`?page=not-logged&error=${encodeURIComponent(resp.error)}&is-admin=${isAdminPage ? 'true' : ''}`
|
|
);
|
|
return;
|
|
}
|
|
const { accessToken } = resp;
|
|
if (accessToken) {
|
|
localStorage.setItem(isAdminPage ? 'adminAccessToken' : 'accessToken', accessToken);
|
|
if (isAdminPage) {
|
|
internalRedirectTo('?page=admin');
|
|
} else {
|
|
internalRedirectTo('?');
|
|
}
|
|
return;
|
|
}
|
|
internalRedirectTo(`?page=not-logged`);
|
|
}}
|
|
/>
|
|
</div>
|
|
</FormProviderCore>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.logo {
|
|
display: flex;
|
|
margin-bottom: 1rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.img {
|
|
width: 80px;
|
|
}
|
|
.text {
|
|
position: fixed;
|
|
top: 1rem;
|
|
left: 1rem;
|
|
font-size: 30pt;
|
|
font-family: monospace;
|
|
color: var(--theme-bg-2);
|
|
text-transform: uppercase;
|
|
}
|
|
.submit {
|
|
margin: var(--dim-large-form-margin);
|
|
display: flex;
|
|
}
|
|
|
|
.submit :global(input) {
|
|
flex: 1;
|
|
font-size: larger;
|
|
}
|
|
|
|
.root {
|
|
color: var(--theme-font-1);
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: var(--theme-bg-1);
|
|
align-items: baseline;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.box {
|
|
width: 600px;
|
|
max-width: 80vw;
|
|
/* max-width: 600px;
|
|
width: 40vw; */
|
|
border: 1px solid var(--theme-border);
|
|
border-radius: 4px;
|
|
background-color: var(--theme-bg-0);
|
|
}
|
|
|
|
.wrap {
|
|
margin-top: 20vh;
|
|
}
|
|
|
|
.heading {
|
|
text-align: center;
|
|
margin: 1em;
|
|
font-size: xx-large;
|
|
}
|
|
</style>
|