INIT
This commit is contained in:
+37
@@ -0,0 +1,37 @@
|
||||
<script lang="ts">
|
||||
import { boxWith, mergeProps } from "svelte-toolbelt";
|
||||
import type { AvatarImageProps } from "../types.js";
|
||||
import { AvatarImageState } from "../avatar.svelte.js";
|
||||
import { createId } from "../../../internal/create-id.js";
|
||||
|
||||
const uid = $props.id();
|
||||
|
||||
let {
|
||||
src,
|
||||
child,
|
||||
id = createId(uid),
|
||||
ref = $bindable(null),
|
||||
crossorigin = undefined,
|
||||
referrerpolicy = undefined,
|
||||
...restProps
|
||||
}: AvatarImageProps = $props();
|
||||
|
||||
const imageState = AvatarImageState.create({
|
||||
src: boxWith(() => src),
|
||||
id: boxWith(() => id),
|
||||
ref: boxWith(
|
||||
() => ref,
|
||||
(v) => (ref = v)
|
||||
),
|
||||
crossOrigin: boxWith(() => crossorigin),
|
||||
referrerPolicy: boxWith(() => referrerpolicy),
|
||||
});
|
||||
|
||||
const mergedProps = $derived(mergeProps(restProps, imageState.props));
|
||||
</script>
|
||||
|
||||
{#if child}
|
||||
{@render child({ props: mergedProps })}
|
||||
{:else}
|
||||
<img {...mergedProps} {src} />
|
||||
{/if}
|
||||
Reference in New Issue
Block a user