Compare commits
5 Commits
ed48b404d4
...
v0.3.5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d3c4962495 | ||
|
|
3cdda64686 | ||
|
|
6630051d67 | ||
|
|
bf77a20ff9 | ||
|
|
42c9bc0bcc |
@@ -4,7 +4,7 @@
|
||||
"type": "git",
|
||||
"url": "https://gitea.auvem.com/svelte-toolkit/sui.git"
|
||||
},
|
||||
"version": "0.3.3",
|
||||
"version": "0.3.5",
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
"build": "vite build && pnpm run prepack",
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
| null;
|
||||
dismiss?: Omit<BannerControlButton, 'framed'> | null;
|
||||
/** if true, accept and decline buttons are swapped with more info */
|
||||
swap?: boolean;
|
||||
swap?: boolean | null;
|
||||
};
|
||||
|
||||
const defaultBannerControls: BannerControls = {
|
||||
@@ -58,21 +58,6 @@
|
||||
},
|
||||
swap: false
|
||||
};
|
||||
|
||||
const mergeBannerControls = (
|
||||
defaults: BannerControls,
|
||||
overrides: BannerControls | null | undefined
|
||||
): BannerControls => {
|
||||
if (!overrides) return defaults;
|
||||
|
||||
return {
|
||||
accept: overrides.accept ?? defaults.accept,
|
||||
decline: overrides.decline ?? defaults.decline,
|
||||
moreInfo: overrides.moreInfo ?? defaults.moreInfo,
|
||||
dismiss: overrides.dismiss ?? defaults.dismiss,
|
||||
swap: overrides.swap ?? defaults.swap
|
||||
};
|
||||
};
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
@@ -82,6 +67,7 @@
|
||||
import Button from './Button.svelte';
|
||||
import FramelessButton from './FramelessButton.svelte';
|
||||
import { X } from 'phosphor-svelte';
|
||||
import { mergeOverrideObject } from './util';
|
||||
|
||||
/**
|
||||
* Banner provides a simple component to display a banner message with
|
||||
@@ -118,7 +104,7 @@
|
||||
children
|
||||
}: Props = $props();
|
||||
|
||||
const controls = $derived(mergeBannerControls(defaultBannerControls, rawControls));
|
||||
const controls = $derived(mergeOverrideObject(defaultBannerControls, rawControls));
|
||||
|
||||
const api: BannerAPI = {
|
||||
open: () => (open = true),
|
||||
|
||||
@@ -41,24 +41,29 @@
|
||||
title: (title: string) => void;
|
||||
}
|
||||
|
||||
type DialogControlButton = {
|
||||
label?: string;
|
||||
class?: ClassValue;
|
||||
action?: (dialog: DialogAPI) => void;
|
||||
};
|
||||
|
||||
/**
|
||||
* Configures the default dialog controls.
|
||||
*/
|
||||
export type DialogControlOpts = {
|
||||
cancel?: {
|
||||
label?: string;
|
||||
class?: ClassValue;
|
||||
action?: (dialog: DialogAPI) => void;
|
||||
};
|
||||
ok?: {
|
||||
label?: string;
|
||||
class?: ClassValue;
|
||||
action?: (dialog: DialogAPI) => void;
|
||||
};
|
||||
close?: {
|
||||
class?: ClassValue;
|
||||
action?: (dialog: DialogAPI) => void;
|
||||
export type DialogControls = {
|
||||
cancel?: DialogControlButton | null;
|
||||
ok?: DialogControlButton | null;
|
||||
close?: Omit<DialogControlButton, 'label'> | null;
|
||||
};
|
||||
|
||||
const defaultDialogControls: DialogControls = {
|
||||
cancel: {
|
||||
label: 'Cancel'
|
||||
},
|
||||
ok: {
|
||||
label: 'OK'
|
||||
},
|
||||
close: {}
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -72,6 +77,7 @@
|
||||
import { X } from 'phosphor-svelte';
|
||||
import { ErrorMessage, type RawError } from './error';
|
||||
import ErrorBox from './ErrorBox.svelte';
|
||||
import { mergeOverrideObject } from './util';
|
||||
|
||||
interface Props {
|
||||
open?: boolean;
|
||||
@@ -80,7 +86,7 @@
|
||||
size?: 'sm' | 'md' | 'lg' | 'max';
|
||||
class?: ClassValue;
|
||||
children?: Snippet;
|
||||
controls?: Snippet | DialogControlOpts;
|
||||
controls?: Snippet | DialogControls;
|
||||
onopen?: (dialog: DialogAPI) => void;
|
||||
onclose?: (dialog: DialogAPI) => void;
|
||||
loading?: boolean;
|
||||
@@ -95,7 +101,7 @@
|
||||
size = 'sm',
|
||||
class: classValue,
|
||||
children,
|
||||
controls,
|
||||
controls: rawControls = defaultDialogControls,
|
||||
onopen,
|
||||
onclose,
|
||||
loading = $bindable(false),
|
||||
@@ -103,6 +109,12 @@
|
||||
disabled = $bindable(false)
|
||||
}: Props = $props();
|
||||
|
||||
let controls = $derived(
|
||||
typeof rawControls === 'function'
|
||||
? rawControls
|
||||
: mergeOverrideObject(defaultDialogControls, rawControls)
|
||||
);
|
||||
|
||||
let dialogContainer = $state<HTMLDivElement | null>(null);
|
||||
let error = $state<ErrorMessage | null>(null);
|
||||
|
||||
@@ -192,8 +204,10 @@
|
||||
|
||||
{#if children}{@render children()}{:else}Dialog is empty{/if}
|
||||
|
||||
<!-- Dialog Controls -->
|
||||
<div class="mt-6 flex justify-end gap-4">
|
||||
{#if controls && typeof controls === 'function'}{@render controls()}{:else}
|
||||
{#if controls.cancel !== null}
|
||||
<Button
|
||||
class={controls?.cancel?.class}
|
||||
onclick={() => {
|
||||
@@ -207,6 +221,8 @@
|
||||
>
|
||||
{controls?.cancel?.label || 'Cancel'}
|
||||
</Button>
|
||||
{/if}
|
||||
{#if controls.ok !== null}
|
||||
<Button
|
||||
class={controls?.ok?.class}
|
||||
onclick={() => {
|
||||
@@ -222,19 +238,28 @@
|
||||
{controls?.ok?.label || 'OK'}
|
||||
</Button>
|
||||
{/if}
|
||||
{/if}
|
||||
</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 (!frozen) open = false;
|
||||
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>
|
||||
{/snippet}
|
||||
|
||||
@@ -143,3 +143,55 @@ export const trimEdges = (str: string, char: string, trimStart?: boolean, trimEn
|
||||
|
||||
return str.substring(start, end);
|
||||
};
|
||||
|
||||
// helper: only treat plain objects as mergeable
|
||||
const isPlainObject = (v: unknown): v is Record<string, unknown> =>
|
||||
typeof v === 'object' &&
|
||||
v !== null &&
|
||||
!Array.isArray(v) &&
|
||||
Object.getPrototypeOf(v) === Object.prototype;
|
||||
|
||||
/** Merge two plain object maps. No `any` used. */
|
||||
function mergePlainObjects(
|
||||
baseObj: Record<string, unknown>,
|
||||
overrideObj: Record<string, unknown>
|
||||
): Record<string, unknown> {
|
||||
const res: Record<string, unknown> = { ...baseObj };
|
||||
|
||||
for (const k of Object.keys(overrideObj)) {
|
||||
const v = overrideObj[k];
|
||||
if (v === undefined) continue; // undefined preserves base
|
||||
const b = res[k];
|
||||
|
||||
if (isPlainObject(v) && isPlainObject(b)) {
|
||||
res[k] = mergePlainObjects(b as Record<string, unknown>, v as Record<string, unknown>);
|
||||
} else {
|
||||
// primitives, null, arrays, non-plain objects replace base
|
||||
res[k] = v;
|
||||
}
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
/**
|
||||
* Merge `base` with `override`.
|
||||
* - `null` in `override` replaces (kept as valid override)
|
||||
* - `undefined` in `override` is ignored (keeps base)
|
||||
* - Only plain objects are deep-merged
|
||||
* - If `override` is null/undefined we return a shallow copy of `base`
|
||||
*/
|
||||
export const mergeOverrideObject = <T extends Record<string, unknown>>(
|
||||
base: T,
|
||||
override?: Partial<T> | null
|
||||
): T => {
|
||||
if (override == null) return { ...base } as T;
|
||||
|
||||
// Use plain maps internally to avoid explicit any
|
||||
const baseMap = { ...base } as Record<string, unknown>;
|
||||
const overrideMap = override as Record<string, unknown>;
|
||||
|
||||
const merged = mergePlainObjects(baseMap, overrideMap);
|
||||
|
||||
return merged as T;
|
||||
};
|
||||
|
||||
@@ -84,6 +84,7 @@
|
||||
title="Manage Cookies"
|
||||
controls={{
|
||||
moreInfo: { label: 'More Info', type: 'link', href: '#!' },
|
||||
dismiss: null,
|
||||
swap: true
|
||||
}}
|
||||
onaccept={() => console.log('Cookies accepted!')}
|
||||
@@ -522,7 +523,8 @@
|
||||
dialog.close();
|
||||
alert('Dialog submitted!');
|
||||
}
|
||||
}
|
||||
},
|
||||
cancel: null
|
||||
}}
|
||||
onopen={(dialog) => {
|
||||
dialog.error('Example error message!');
|
||||
|
||||
Reference in New Issue
Block a user