Compare commits
2 Commits
a8aafa1519
...
0d37814cf4
Author | SHA1 | Date | |
---|---|---|---|
0d37814cf4 | |||
31532cd76e |
@ -2,6 +2,8 @@
|
|||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import { slide } from 'svelte/transition';
|
import { slide } from 'svelte/transition';
|
||||||
|
|
||||||
|
let extraClasses;
|
||||||
|
export {extraClasses as class};
|
||||||
export let slideDuration = 150;
|
export let slideDuration = 150;
|
||||||
let animationClass = "";
|
let animationClass = "";
|
||||||
|
|
||||||
@ -49,7 +51,7 @@
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
<div in:slide="{{duration: slideDuration}}" class="alert alert-error shadow-lg {animationClass}">
|
<div in:slide="{{duration: slideDuration}}" class="alert alert-error shadow-lg {animationClass} {extraClasses}">
|
||||||
<div>
|
<div>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current flex-shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current flex-shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
|
||||||
<span>
|
<span>
|
||||||
|
62
src/ui/settings/NumericSetting.svelte
Normal file
62
src/ui/settings/NumericSetting.svelte
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<script>
|
||||||
|
import { createEventDispatcher } from 'svelte';
|
||||||
|
|
||||||
|
import Setting from './Setting.svelte';
|
||||||
|
|
||||||
|
export let title;
|
||||||
|
export let value;
|
||||||
|
export let unit = '';
|
||||||
|
export let min = null;
|
||||||
|
export let max = null;
|
||||||
|
export let decimal = false;
|
||||||
|
|
||||||
|
const dispatch = createEventDispatcher();
|
||||||
|
let error = null;
|
||||||
|
function validate(event) {
|
||||||
|
let v = event.target.value;
|
||||||
|
|
||||||
|
if (v === '') {
|
||||||
|
error = null;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let num = parseFloat(v);
|
||||||
|
if (Number.isNaN(num)) {
|
||||||
|
error = `"${v}" is not a number`;
|
||||||
|
}
|
||||||
|
else if (num % 1 !== 0 && !decimal) {
|
||||||
|
error = `${num} is not a whole number`;
|
||||||
|
}
|
||||||
|
else if (min && num < min) {
|
||||||
|
error = `Too low (minimum ${min})`;
|
||||||
|
}
|
||||||
|
else if (max && num > max) {
|
||||||
|
error = `Too large (maximum ${max})`
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
error = null;
|
||||||
|
value = num;
|
||||||
|
dispatch('update', {value})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<Setting {title} {error}>
|
||||||
|
<div slot="input">
|
||||||
|
{#if unit}
|
||||||
|
<span class="mr-2">{unit}:</span>
|
||||||
|
{/if}
|
||||||
|
<div class="tooltip tooltip-error" class:tooltip-open={error !== null} data-tip={error}>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
class="input input-sm input-bordered text-right max-w-[4rem]"
|
||||||
|
class:input-error={error}
|
||||||
|
value={value}
|
||||||
|
on:input="{validate}"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<slot name="description" slot="description"></slot>
|
||||||
|
</Setting>
|
@ -1,13 +1,18 @@
|
|||||||
<script>
|
<script>
|
||||||
|
import { slide } from 'svelte/transition';
|
||||||
|
import ErrorAlert from '../ErrorAlert.svelte';
|
||||||
|
|
||||||
export let title;
|
export let title;
|
||||||
|
export let error = null;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<div class="divider"></div>
|
<div class="divider"></div>
|
||||||
<div class="grid grid-cols-2 items-center">
|
<div class="flex justify-between">
|
||||||
<h3 class="text-lg font-bold">{title}</h3>
|
<h3 class="text-lg font-bold">{title}</h3>
|
||||||
<slot name="input"></slot>
|
<slot name="input"></slot>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="mt-3">
|
<p class="mt-3">
|
||||||
<slot name="description"></slot>
|
<slot name="description"></slot>
|
||||||
</p>
|
</p>
|
22
src/ui/settings/ToggleSetting.svelte
Normal file
22
src/ui/settings/ToggleSetting.svelte
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<script>
|
||||||
|
import { createEventDispatcher } from 'svelte';
|
||||||
|
|
||||||
|
import Setting from './Setting.svelte';
|
||||||
|
|
||||||
|
export let title;
|
||||||
|
export let value;
|
||||||
|
|
||||||
|
const dispatch = createEventDispatcher();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<Setting title="Start minimized">
|
||||||
|
<input
|
||||||
|
slot="input"
|
||||||
|
type="checkbox"
|
||||||
|
class="toggle toggle-success"
|
||||||
|
bind:checked={value}
|
||||||
|
on:change={e => dispatch('update', {value: e.target.checked})}
|
||||||
|
/>
|
||||||
|
<slot name="description" slot="description"></slot>
|
||||||
|
</Setting>
|
3
src/ui/settings/index.js
Normal file
3
src/ui/settings/index.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export { default as Setting } from './Setting.svelte';
|
||||||
|
export { default as ToggleSetting } from './ToggleSetting.svelte';
|
||||||
|
export { default as NumericSetting } from './NumericSetting.svelte';
|
@ -1,21 +1,16 @@
|
|||||||
<script>
|
<script>
|
||||||
import { invoke } from '@tauri-apps/api/tauri';
|
import { invoke } from '@tauri-apps/api/tauri';
|
||||||
window.invoke = invoke;
|
|
||||||
|
|
||||||
import { appState } from '../lib/state.js';
|
import { appState } from '../lib/state.js';
|
||||||
import Nav from '../ui/Nav.svelte';
|
import Nav from '../ui/Nav.svelte';
|
||||||
import Link from '../ui/Link.svelte';
|
import Link from '../ui/Link.svelte';
|
||||||
import Setting from '../ui/Setting.svelte';
|
|
||||||
import ErrorAlert from '../ui/ErrorAlert.svelte';
|
import ErrorAlert from '../ui/ErrorAlert.svelte';
|
||||||
|
// import Setting from '../ui/settings/Setting.svelte';
|
||||||
|
import { Setting, ToggleSetting, NumericSetting } from '../ui/settings';
|
||||||
|
|
||||||
async function save() {
|
async function save() {
|
||||||
try {
|
|
||||||
await invoke('save_config', {config: $appState.config});
|
await invoke('save_config', {config: $appState.config});
|
||||||
}
|
}
|
||||||
catch (e) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
@ -25,41 +20,27 @@
|
|||||||
<div class="mx-auto mt-3 max-w-md">
|
<div class="mx-auto mt-3 max-w-md">
|
||||||
<h2 class="text-2xl font-bold text-center">Settings</h2>
|
<h2 class="text-2xl font-bold text-center">Settings</h2>
|
||||||
|
|
||||||
<Setting title="Start minimized">
|
<ToggleSetting title="Start minimized" bind:value={$appState.config.start_minimized} on:update={save}>
|
||||||
<input slot="input" type="checkbox" bind:checked="{$appState.config.start_minimized}" class="justify-self-end toggle toggle-success" />
|
<svelte:fragment slot="description">
|
||||||
<svelte:fragment slot="description">Minimize to the system tray at startup.</svelte:fragment>
|
Minimize to the system tray at startup.
|
||||||
</Setting>
|
</svelte:fragment>
|
||||||
|
</ToggleSetting>
|
||||||
|
|
||||||
<div class="divider"></div>
|
<NumericSetting title="Re-hide delay" bind:value={$appState.config.rehide_ms} min={0} unit="Milliseconds" on:update={save}>
|
||||||
<div class="grid grid-cols-2 items-center">
|
<svelte:fragment slot="description">
|
||||||
<h3 class="text-lg font-bold">Start minimized</h3>
|
|
||||||
<input type="checkbox" bind:checked="{$appState.config.start_minimized}" class="justify-self-end toggle toggle-success" />
|
|
||||||
</div>
|
|
||||||
<p class="mt-3">Minimize to the system tray at startup.</p>
|
|
||||||
|
|
||||||
<div class="divider"></div>
|
|
||||||
<div class="grid grid-cols-2 items-center">
|
|
||||||
<h3 class="text-lg font-bold">Re-hide delay</h3>
|
|
||||||
<div class="justify-self-end">
|
|
||||||
<span class="mr-2">(Milliseconds)</span>
|
|
||||||
<input type="text" bind:value="{$appState.config.rehide_ms}" class="input input-sm input-bordered text-right max-w-[4rem]" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="mt-3">
|
|
||||||
How long to wait after a request is approved/denied before minimizing
|
How long to wait after a request is approved/denied before minimizing
|
||||||
the window to tray. Only applicable if the window was minimized
|
the window to tray. Only applicable if the window was minimized
|
||||||
to tray before the request was received.
|
to tray before the request was received.
|
||||||
</p>
|
</svelte:fragment>
|
||||||
|
</NumericSetting>
|
||||||
|
|
||||||
<div class="divider"></div>
|
<Setting title="Update credentials">
|
||||||
<div class="grid grid-cols-2 items-center">
|
<Link slot="input" target="EnterCredentials">
|
||||||
<h3 class="text-lg font-bold">Update credentials</h3>
|
|
||||||
<div class="justify-self-end">
|
|
||||||
<Link target="EnterCredentials">
|
|
||||||
<button class="btn btn-sm btn-primary">Update</button>
|
<button class="btn btn-sm btn-primary">Update</button>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
<svelte:fragment slot="description">
|
||||||
</div>
|
Update or re-enter your encrypted credentials.
|
||||||
<p class="mt-3">Update or re-enter your encrypted credentials.</p>
|
</svelte:fragment>
|
||||||
|
</Setting>
|
||||||
</div>
|
</div>
|
||||||
{/await}
|
{/await}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user