mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-13 12:14:47 +00:00
60 lines
1.2 KiB
TypeScript
60 lines
1.2 KiB
TypeScript
// @ts-nocheck
|
|
import { onMount } from "solid-js"
|
|
import * as mod from "./image-preview"
|
|
import { Button } from "./button"
|
|
import { useDialog } from "../context/dialog"
|
|
|
|
const docs = `### Overview
|
|
Image preview content intended to render inside the dialog stack.
|
|
|
|
Use for full-size image inspection; keep images optimized.
|
|
|
|
### API
|
|
- Required: \`src\`.
|
|
- Optional: \`alt\` text.
|
|
|
|
### Variants and states
|
|
- Single layout with close action.
|
|
|
|
### Behavior
|
|
- Intended to be used via \`useDialog().show\`.
|
|
|
|
### Accessibility
|
|
- Uses localized aria-label for close button.
|
|
|
|
### Theming/tokens
|
|
- Uses \`data-component="image-preview"\` and slot attributes.
|
|
|
|
`
|
|
|
|
export default {
|
|
title: "UI/ImagePreview",
|
|
id: "components-image-preview",
|
|
component: mod.ImagePreview,
|
|
tags: ["autodocs"],
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: docs,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export const Basic = {
|
|
render: () => {
|
|
const dialog = useDialog()
|
|
const src = "https://placehold.co/640x360/png"
|
|
|
|
const open = () => dialog.show(() => <mod.ImagePreview src={src} alt="Preview" />)
|
|
|
|
onMount(open)
|
|
|
|
return (
|
|
<Button variant="secondary" onClick={open}>
|
|
Open image preview
|
|
</Button>
|
|
)
|
|
},
|
|
}
|