Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28c027c48b | ||
|
|
80fc26eb3b | ||
|
|
aa39aaf84f | ||
|
|
2d694a7277 | ||
|
|
ae7d4912f9 | ||
|
|
1c66bc0fcf | ||
|
|
3b659c1e2d | ||
|
|
90ff836061 | ||
|
|
5e5f133763 |
@@ -4,7 +4,7 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://gitea.auvem.com/svelte-toolkit/sui.git"
|
"url": "https://gitea.auvem.com/svelte-toolkit/sui.git"
|
||||||
},
|
},
|
||||||
"version": "1.0.0",
|
"version": "1.0.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
"build": "vite build && pnpm run prepack",
|
"build": "vite build && pnpm run prepack",
|
||||||
|
|||||||
@@ -42,8 +42,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
type DialogControlButton = {
|
type DialogControlButton = {
|
||||||
|
/** Label for the button */
|
||||||
label?: string;
|
label?: string;
|
||||||
|
/** Additional classes to apply to the button */
|
||||||
class?: ClassValue;
|
class?: ClassValue;
|
||||||
|
/** Callback when the button is pressed */
|
||||||
action?: (dialog: DialogAPI) => void;
|
action?: (dialog: DialogAPI) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -51,25 +54,36 @@
|
|||||||
* Configures the default dialog controls.
|
* Configures the default dialog controls.
|
||||||
*/
|
*/
|
||||||
export type DialogControls = {
|
export type DialogControls = {
|
||||||
|
/** Options for the bottom cancel button */
|
||||||
cancel?: DialogControlButton | null;
|
cancel?: DialogControlButton | null;
|
||||||
|
/** Options for the bottom submit button */
|
||||||
ok?: DialogControlButton | null;
|
ok?: DialogControlButton | null;
|
||||||
close?: Omit<DialogControlButton, 'label'> | null;
|
/** Inverts the order of the buttons */
|
||||||
|
flip?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores internal state of the dialog, everything necessary to render
|
||||||
|
* internal snippets.
|
||||||
|
*/
|
||||||
|
type DialogState = {
|
||||||
|
frozen: boolean;
|
||||||
|
loading: boolean;
|
||||||
|
disabled: boolean;
|
||||||
|
api: DialogAPI;
|
||||||
};
|
};
|
||||||
|
|
||||||
const defaultDialogControls: DialogControls = {
|
const defaultDialogControls: DialogControls = {
|
||||||
cancel: {
|
cancel: { label: 'Cancel' },
|
||||||
label: 'Cancel'
|
ok: { label: 'OK' }
|
||||||
},
|
|
||||||
ok: {
|
|
||||||
label: 'OK'
|
|
||||||
},
|
|
||||||
close: {}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export { dialogCancelButton, dialogOkButton, dialogCloseButton };
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Portal } from '@jsrob/svelte-portal';
|
import { Portal } from '@jsrob/svelte-portal';
|
||||||
import { type Snippet } from 'svelte';
|
import { untrack, type Snippet } from 'svelte';
|
||||||
import type { ClassValue } from 'svelte/elements';
|
import type { ClassValue } from 'svelte/elements';
|
||||||
import { fade } from 'svelte/transition';
|
import { fade } from 'svelte/transition';
|
||||||
import { flyAndScale } from './transition';
|
import { flyAndScale } from './transition';
|
||||||
@@ -80,17 +94,33 @@
|
|||||||
import { mergeOverrideObject } from './util';
|
import { mergeOverrideObject } from './util';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
|
/** Bindable open state of the dialog */
|
||||||
open?: boolean;
|
open?: boolean;
|
||||||
title: string;
|
/** Title of the dialog */
|
||||||
description?: string;
|
title: string | Snippet;
|
||||||
|
/** Description of the dialog, optionally rendered below the title */
|
||||||
|
description?: string | Snippet;
|
||||||
|
/** Size of the dialog (default: 'sm') */
|
||||||
size?: 'sm' | 'md' | 'lg' | 'max';
|
size?: 'sm' | 'md' | 'lg' | 'max';
|
||||||
|
/** Additional classes for the dialog */
|
||||||
class?: ClassValue;
|
class?: ClassValue;
|
||||||
|
/** Content of the dialog */
|
||||||
children?: Snippet;
|
children?: Snippet;
|
||||||
|
/** Bottom controls for the dialog */
|
||||||
controls?: Snippet | DialogControls;
|
controls?: Snippet | DialogControls;
|
||||||
|
/** Sets bottom alignment of controls (default: end) */
|
||||||
|
controlsAlign?: 'start' | 'center' | 'end';
|
||||||
|
/** Top-right close control */
|
||||||
|
close?: Snippet | Omit<DialogControlButton, 'label'> | null;
|
||||||
|
/** Callback when the dialog is opened */
|
||||||
onopen?: (dialog: DialogAPI) => void;
|
onopen?: (dialog: DialogAPI) => void;
|
||||||
|
/** Callback when the dialog is closed */
|
||||||
onclose?: (dialog: DialogAPI) => void;
|
onclose?: (dialog: DialogAPI) => void;
|
||||||
|
/** If default controls are used, controls loading state of submit button */
|
||||||
loading?: boolean;
|
loading?: boolean;
|
||||||
|
/** If default controls are used, freezes all interactions */
|
||||||
frozen?: boolean;
|
frozen?: boolean;
|
||||||
|
/** If default controls are used, disables submit button */
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,6 +132,8 @@
|
|||||||
class: classValue,
|
class: classValue,
|
||||||
children,
|
children,
|
||||||
controls: rawControls = defaultDialogControls,
|
controls: rawControls = defaultDialogControls,
|
||||||
|
controlsAlign = 'end',
|
||||||
|
close = {},
|
||||||
onopen,
|
onopen,
|
||||||
onclose,
|
onclose,
|
||||||
loading = $bindable(false),
|
loading = $bindable(false),
|
||||||
@@ -122,14 +154,15 @@
|
|||||||
$effect(() => {
|
$effect(() => {
|
||||||
if (open) {
|
if (open) {
|
||||||
document.body.style.overflow = 'hidden';
|
document.body.style.overflow = 'hidden';
|
||||||
onopen?.(dialogAPI);
|
untrack(() => onopen?.(dialogAPI));
|
||||||
} else {
|
} else {
|
||||||
document.body.style.overflow = '';
|
document.body.style.overflow = '';
|
||||||
onclose?.(dialogAPI);
|
untrack(() => onclose?.(dialogAPI));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const dialogAPI: DialogAPI = {
|
/** DialogAPI instance to control this dialog */
|
||||||
|
export const dialogAPI: DialogAPI = {
|
||||||
error: (message) => (error = ErrorMessage.from(message)),
|
error: (message) => (error = ErrorMessage.from(message)),
|
||||||
close: () => (open = false),
|
close: () => (open = false),
|
||||||
open: () => (open = true),
|
open: () => (open = true),
|
||||||
@@ -146,6 +179,16 @@
|
|||||||
canContinue: () => !loading && !disabled && !frozen,
|
canContinue: () => !loading && !disabled && !frozen,
|
||||||
title: (newTitle) => (title = newTitle)
|
title: (newTitle) => (title = newTitle)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** Returns the current state of the dialog */
|
||||||
|
export const getState = (): DialogState => {
|
||||||
|
return {
|
||||||
|
frozen,
|
||||||
|
loading,
|
||||||
|
disabled,
|
||||||
|
api: dialogAPI
|
||||||
|
};
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Portal target="body">
|
<Portal target="body">
|
||||||
@@ -190,7 +233,21 @@
|
|||||||
start: 0.96
|
start: 0.96
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<h2 class="pointer-events-none mb-2 text-lg font-medium text-black select-none">{title}</h2>
|
<div class="flex items-center justify-between">
|
||||||
|
<!-- Dialog title -->
|
||||||
|
<h2 class="pointer-events-none mb-2 text-lg font-medium text-black select-none">
|
||||||
|
{@render stringOrSnippet(title)}
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<!-- Close Button -->
|
||||||
|
{#if close !== null}
|
||||||
|
{#if typeof close === 'function'}
|
||||||
|
{@render close()}
|
||||||
|
{:else}
|
||||||
|
{@render dialogCloseButton(getState(), close)}
|
||||||
|
{/if}
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
{#if error}
|
{#if error}
|
||||||
<ErrorBox {error} />
|
<ErrorBox {error} />
|
||||||
@@ -198,68 +255,100 @@
|
|||||||
|
|
||||||
{#if description}
|
{#if description}
|
||||||
<p class="mb-3 leading-normal text-zinc-600">
|
<p class="mb-3 leading-normal text-zinc-600">
|
||||||
{description}
|
{@render stringOrSnippet(description)}
|
||||||
</p>
|
</p>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if children}{@render children()}{:else}Dialog is empty{/if}
|
{#if children}{@render children()}{:else}Dialog is empty{/if}
|
||||||
|
|
||||||
<!-- Dialog Controls -->
|
<!-- Dialog Controls -->
|
||||||
<div class="mt-6 flex justify-end gap-4">
|
<div
|
||||||
{#if controls && typeof controls === 'function'}{@render controls()}{:else}
|
class={[
|
||||||
{#if controls.cancel !== null}
|
'mt-6 flex gap-4',
|
||||||
<Button
|
controlsAlign === 'start' && 'justify-start',
|
||||||
class={controls?.cancel?.class}
|
controlsAlign === 'center' && 'justify-center',
|
||||||
onclick={() => {
|
controlsAlign === 'end' && 'justify-end'
|
||||||
if (controls?.cancel?.action) {
|
]}
|
||||||
controls.cancel.action(dialogAPI);
|
|
||||||
} else if (!frozen) {
|
|
||||||
open = false;
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
disabled={frozen}
|
|
||||||
>
|
>
|
||||||
{controls?.cancel?.label || 'Cancel'}
|
{#if controls && typeof controls === 'function'}{@render controls()}{:else if controls?.flip}
|
||||||
</Button>
|
{#if controls.ok !== null}
|
||||||
|
{@render dialogOkButton(getState(), controls.ok)}
|
||||||
|
{/if}
|
||||||
|
{#if controls.cancel !== null}
|
||||||
|
{@render dialogCancelButton(getState(), controls.cancel)}
|
||||||
|
{/if}
|
||||||
|
{:else}
|
||||||
|
{#if controls.cancel !== null}
|
||||||
|
{@render dialogCancelButton(getState(), controls.cancel)}
|
||||||
{/if}
|
{/if}
|
||||||
{#if controls.ok !== null}
|
{#if controls.ok !== null}
|
||||||
<Button
|
{@render dialogOkButton(getState(), controls.ok)}
|
||||||
class={controls?.ok?.class}
|
|
||||||
onclick={() => {
|
|
||||||
if (controls?.ok?.action) {
|
|
||||||
controls.ok.action(dialogAPI);
|
|
||||||
} else if (!frozen && !loading && !disabled) {
|
|
||||||
open = false;
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
disabled={frozen || loading || disabled}
|
|
||||||
{loading}
|
|
||||||
>
|
|
||||||
{controls?.ok?.label || 'OK'}
|
|
||||||
</Button>
|
|
||||||
{/if}
|
{/if}
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Close Button -->
|
|
||||||
{#if typeof controls === 'function' || controls?.close !== null}
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
aria-label="close"
|
|
||||||
class="absolute top-4 right-4 inline-flex cursor-pointer items-center
|
|
||||||
justify-center disabled:cursor-not-allowed disabled:opacity-50"
|
|
||||||
onclick={() => {
|
|
||||||
if (typeof controls !== 'function' && controls?.close?.action) {
|
|
||||||
controls?.close?.action?.(dialogAPI);
|
|
||||||
} else if (!frozen) {
|
|
||||||
open = false;
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
disabled={frozen}
|
|
||||||
>
|
|
||||||
<X size="1.5em" weight="bold" />
|
|
||||||
</button>
|
|
||||||
{/if}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/snippet}
|
{/snippet}
|
||||||
|
|
||||||
|
{#snippet dialogCancelButton(state: DialogState, opts?: DialogControls['cancel'])}
|
||||||
|
<Button
|
||||||
|
class={opts?.class}
|
||||||
|
onclick={() => {
|
||||||
|
if (opts?.action) {
|
||||||
|
opts.action(state.api);
|
||||||
|
} else if (!state.frozen) {
|
||||||
|
state.api.close();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
disabled={state.frozen}
|
||||||
|
>
|
||||||
|
{opts?.label || 'Cancel'}
|
||||||
|
</Button>
|
||||||
|
{/snippet}
|
||||||
|
|
||||||
|
{#snippet dialogOkButton(state: DialogState, opts?: DialogControls['ok'])}
|
||||||
|
<Button
|
||||||
|
class={opts?.class}
|
||||||
|
onclick={() => {
|
||||||
|
if (opts?.action) {
|
||||||
|
opts.action(state.api);
|
||||||
|
} else if (!state.frozen && !state.loading && !state.disabled) {
|
||||||
|
state.api.close();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
disabled={state.frozen || state.loading || state.disabled}
|
||||||
|
loading={state.loading}
|
||||||
|
>
|
||||||
|
{opts?.label || 'OK'}
|
||||||
|
</Button>
|
||||||
|
{/snippet}
|
||||||
|
|
||||||
|
{#snippet dialogCloseButton(state: DialogState, opts?: Omit<DialogControlButton, 'label'> | null)}
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
aria-label="close"
|
||||||
|
class={[
|
||||||
|
'inline-flex cursor-pointer items-center justify-center',
|
||||||
|
'disabled:cursor-not-allowed disabled:opacity-50',
|
||||||
|
'rounded-full p-2 transition-colors hover:bg-zinc-200/50'
|
||||||
|
]}
|
||||||
|
onclick={() => {
|
||||||
|
if (opts?.action) {
|
||||||
|
opts.action(state.api);
|
||||||
|
} else if (!state.frozen) {
|
||||||
|
state.api.close();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
disabled={state.frozen}
|
||||||
|
>
|
||||||
|
<X size="1.25em" weight="bold" />
|
||||||
|
</button>
|
||||||
|
{/snippet}
|
||||||
|
|
||||||
|
{#snippet stringOrSnippet(val: string | Snippet)}
|
||||||
|
{#if typeof val === 'string'}
|
||||||
|
{val}
|
||||||
|
{:else}
|
||||||
|
{@render val()}
|
||||||
|
{/if}
|
||||||
|
{/snippet}
|
||||||
|
|||||||
@@ -1,18 +1,28 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { ClassValue } from 'svelte/elements';
|
import type { ClassValue } from 'svelte/elements';
|
||||||
import type { ErrorMessage } from './error';
|
import { ErrorMessage, type RawError } from './error';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
error: ErrorMessage | null;
|
/** Error in the form of an ErrorMessage */
|
||||||
|
error?: ErrorMessage | null;
|
||||||
|
/** Raw error that can be converted to an ErrorMessage */
|
||||||
|
rawError?: RawError | null;
|
||||||
|
/** Additional CSS classes for the error box */
|
||||||
class?: ClassValue | null;
|
class?: ClassValue | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
let { error, class: classValue }: Props = $props();
|
let { error, rawError, class: classValue }: Props = $props();
|
||||||
|
|
||||||
|
let errorMessage = $derived.by(() => {
|
||||||
|
if (error) return error;
|
||||||
|
if (rawError) return new ErrorMessage(rawError);
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if error}
|
{#if errorMessage && errorMessage.hasError()}
|
||||||
<!-- eslint-disable svelte/no-at-html-tags -->
|
|
||||||
<div class={['bg-sui-accent text-sui-background my-4 rounded-xs px-6 py-4', classValue]}>
|
<div class={['bg-sui-accent text-sui-background my-4 rounded-xs px-6 py-4', classValue]}>
|
||||||
{@html error.message}
|
{#each errorMessage.lines as line}
|
||||||
|
<p>{line}</p>
|
||||||
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
import { tweened } from 'svelte/motion';
|
import { tweened } from 'svelte/motion';
|
||||||
import { fade, fly } from 'svelte/transition';
|
import { fade, fly } from 'svelte/transition';
|
||||||
import { validateForm } from '@svelte-toolkit/validate';
|
import { validateForm } from '@svelte-toolkit/validate';
|
||||||
import { ArrowLeft, Check, CheckFat } from 'phosphor-svelte';
|
import { ArrowLeft, CheckFat } from 'phosphor-svelte';
|
||||||
import type { IconDef } from './util';
|
import type { IconDef } from './util';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
@@ -49,6 +49,13 @@
|
|||||||
failure: StateMachinePage;
|
failure: StateMachinePage;
|
||||||
index?: number;
|
index?: number;
|
||||||
action?: string;
|
action?: string;
|
||||||
|
/**
|
||||||
|
* Called when the form is submitted at the end of the state machine.
|
||||||
|
* Receives the collated form data as a key-value object.
|
||||||
|
* If you wish to prevent the submission, return false.
|
||||||
|
* If you wish to indicate a failure, you can also throw an error.
|
||||||
|
*/
|
||||||
|
onsubmit?: (data: Record<string, string>) => Promise<boolean> | boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
let {
|
let {
|
||||||
@@ -57,7 +64,8 @@
|
|||||||
success,
|
success,
|
||||||
failure,
|
failure,
|
||||||
index = $bindable(0),
|
index = $bindable(0),
|
||||||
action
|
action,
|
||||||
|
onsubmit
|
||||||
}: Props = $props();
|
}: Props = $props();
|
||||||
|
|
||||||
// add success and failure pages to the end of the pages array
|
// add success and failure pages to the end of the pages array
|
||||||
@@ -250,6 +258,22 @@
|
|||||||
// update button state
|
// update button state
|
||||||
buttonLoading = true;
|
buttonLoading = true;
|
||||||
|
|
||||||
|
if (onsubmit) {
|
||||||
|
try {
|
||||||
|
const res = await onsubmit(collatedFormData);
|
||||||
|
if (res === false) {
|
||||||
|
buttonLoading = false;
|
||||||
|
index = pages.length - 2;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.log('onsubmit handler failed, submission prevented', e);
|
||||||
|
buttonLoading = false;
|
||||||
|
index = pages.length - 1;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const form_data = new FormData();
|
const form_data = new FormData();
|
||||||
for (const [key, value] of Object.entries(collatedFormData)) {
|
for (const [key, value] of Object.entries(collatedFormData)) {
|
||||||
form_data.append(key, value);
|
form_data.append(key, value);
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
value?: string;
|
value?: string;
|
||||||
invalidMessage?: string | null;
|
invalidMessage?: string | null;
|
||||||
ref?: HTMLInputElement | null;
|
ref?: HTMLInputElement | null;
|
||||||
asterisk?: boolean;
|
asterisk?: boolean | null;
|
||||||
class?: ClassValue | null | undefined;
|
class?: ClassValue | null | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -21,12 +21,16 @@
|
|||||||
value = $bindable(''),
|
value = $bindable(''),
|
||||||
invalidMessage = 'Field is required',
|
invalidMessage = 'Field is required',
|
||||||
ref = $bindable<HTMLInputElement | null>(null),
|
ref = $bindable<HTMLInputElement | null>(null),
|
||||||
asterisk = false,
|
asterisk = null,
|
||||||
class: classValue,
|
class: classValue,
|
||||||
|
forceInvalid = false,
|
||||||
...others
|
...others
|
||||||
}: Props = $props();
|
}: Props = $props();
|
||||||
|
|
||||||
let valid: boolean = $state(true);
|
let valid: boolean = $state(true);
|
||||||
|
let displayAsterisk = $derived(
|
||||||
|
asterisk === true || (asterisk !== false && others.validate && others.validate.required)
|
||||||
|
);
|
||||||
|
|
||||||
export const focus = () => {
|
export const focus = () => {
|
||||||
if (ref) ref.focus();
|
if (ref) ref.focus();
|
||||||
@@ -37,7 +41,7 @@
|
|||||||
{#if label}
|
{#if label}
|
||||||
<Label for={id}>
|
<Label for={id}>
|
||||||
{label}
|
{label}
|
||||||
{#if asterisk}
|
{#if displayAsterisk}
|
||||||
<span class="text-red-500">*</span>
|
<span class="text-red-500">*</span>
|
||||||
{/if}
|
{/if}
|
||||||
</Label>
|
</Label>
|
||||||
@@ -50,11 +54,12 @@
|
|||||||
onvalidate={(e) => {
|
onvalidate={(e) => {
|
||||||
valid = e.detail.valid;
|
valid = e.detail.valid;
|
||||||
}}
|
}}
|
||||||
|
{forceInvalid}
|
||||||
{...others}
|
{...others}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{#if others.validate && invalidMessage !== null}
|
{#if others.validate && invalidMessage !== null}
|
||||||
<div class={['opacity-0 transition-opacity', !valid && 'opacity-100']}>
|
<div class={['opacity-0 transition-opacity', (!valid || forceInvalid) && 'opacity-100']}>
|
||||||
<Label for={id} error>
|
<Label for={id} error>
|
||||||
{invalidMessage}
|
{invalidMessage}
|
||||||
</Label>
|
</Label>
|
||||||
|
|||||||
@@ -10,20 +10,41 @@ export interface GraphError {
|
|||||||
export type RawError = Error | string | GraphError[];
|
export type RawError = Error | string | GraphError[];
|
||||||
|
|
||||||
export class ErrorMessage {
|
export class ErrorMessage {
|
||||||
private _message: string;
|
private _lines: string[] = [];
|
||||||
|
|
||||||
/** converts a RawError to a string and stores it for later access */
|
/**
|
||||||
constructor(raw: RawError) {
|
* Converts a RawError to an array of lines and stores it for later access,
|
||||||
this._message = ErrorMessage.rawErrorToString(raw);
|
* or initializes without any errors if the input is null or undefined.
|
||||||
|
* @param raw The raw error to convert and store, or null/undefined for no error.
|
||||||
|
* @throws If the raw error is of an unsupported type.
|
||||||
|
*/
|
||||||
|
constructor(raw: RawError | null | undefined) {
|
||||||
|
if (raw) {
|
||||||
|
this._lines = ErrorMessage.rawErrorToLines(raw);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** returns the stored message */
|
/** returns the stored lines */
|
||||||
get message(): string {
|
get lines(): string[] {
|
||||||
return this._message;
|
return this._lines;
|
||||||
}
|
}
|
||||||
/** returns the error as a string */
|
/** returns the error lines as a string, separated by newlines */
|
||||||
toString(): string {
|
toString(): string {
|
||||||
return this._message;
|
return this._lines.join('\n');
|
||||||
|
}
|
||||||
|
/** returns the error lines as an HTML string, separated by <br /> */
|
||||||
|
toHTML(): string {
|
||||||
|
return this._lines.join('<br />');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** returns true if there are any error lines */
|
||||||
|
hasError(): boolean {
|
||||||
|
return this._lines.length > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** adds a new line to the error message */
|
||||||
|
addLine(line: string): void {
|
||||||
|
this._lines.push(line);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** optionally returns a new ErrorMessage only if the RawError is not empty */
|
/** optionally returns a new ErrorMessage only if the RawError is not empty */
|
||||||
@@ -32,28 +53,27 @@ export class ErrorMessage {
|
|||||||
return new ErrorMessage(raw);
|
return new ErrorMessage(raw);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** converts a RawError to a string */
|
/** converts a RawError to an array of lines */
|
||||||
static rawErrorToString(raw: RawError | null | undefined): string {
|
static rawErrorToLines(raw: RawError | null | undefined): string[] {
|
||||||
if (!raw) return 'No error';
|
if (!raw) return ['No error'];
|
||||||
|
|
||||||
let errorString: string;
|
let errorLines: string[];
|
||||||
if (typeof raw === 'string') {
|
if (typeof raw === 'string') {
|
||||||
errorString = raw;
|
errorLines = [raw];
|
||||||
} else if (raw instanceof Error) {
|
} else if (raw instanceof Error) {
|
||||||
errorString = raw.message;
|
errorLines = [raw.message];
|
||||||
} else if (Array.isArray(raw)) {
|
} else if (Array.isArray(raw)) {
|
||||||
errorString = raw
|
errorLines = raw.map((e) => {
|
||||||
.flatMap((e) => {
|
|
||||||
const messageString = e.message || 'Unknown error';
|
const messageString = e.message || 'Unknown error';
|
||||||
if (e.path && e.path.length > 0) {
|
if (e.path && e.path.length > 0) {
|
||||||
return `"${messageString}" at ${e.path.join('.')}`;
|
return `"${messageString}" at ${e.path.join('.')}`;
|
||||||
}
|
}
|
||||||
})
|
return messageString;
|
||||||
.join('<br />');
|
});
|
||||||
} else {
|
} else {
|
||||||
throw `Bad error value ${raw}`;
|
throw `Bad error value ${raw}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
return errorString;
|
return errorLines;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,14 @@ export { default as CenterBox } from './CenterBox.svelte';
|
|||||||
export { default as Checkbox, type CheckboxState } from './Checkbox.svelte';
|
export { default as Checkbox, type CheckboxState } from './Checkbox.svelte';
|
||||||
export { default as Combobox, type ComboboxOption } from './Combobox.svelte';
|
export { default as Combobox, type ComboboxOption } from './Combobox.svelte';
|
||||||
export { default as DateInput } from './DateInput.svelte';
|
export { default as DateInput } from './DateInput.svelte';
|
||||||
export { default as Dialog, type DialogAPI, type DialogControls } from './Dialog.svelte';
|
export {
|
||||||
|
default as Dialog,
|
||||||
|
type DialogAPI,
|
||||||
|
type DialogControls,
|
||||||
|
dialogCancelButton,
|
||||||
|
dialogCloseButton,
|
||||||
|
dialogOkButton
|
||||||
|
} from './Dialog.svelte';
|
||||||
export {
|
export {
|
||||||
default as DurationInput,
|
default as DurationInput,
|
||||||
formatDuration,
|
formatDuration,
|
||||||
|
|||||||
Reference in New Issue
Block a user