summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/hover-card.stories.tsx
blob: 3f5cf1028184308f621ca0c826d4ff46e15c69a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// @ts-nocheck
import { createSignal } from "solid-js"
import * as mod from "./hover-card"

const docs = `### Overview
Hover-triggered card for lightweight previews and metadata.

Use for short summaries; avoid dense interactive controls.

### API
- Required: \`trigger\` element.
- Children render inside the hover card body.

### Variants and states
- None; content and trigger are fully composable.

### Behavior
- Opens on hover/focus over the trigger.

### Accessibility
- TODO: confirm focus and hover intent behavior from Kobalte.

### Theming/tokens
- Uses \`data-component="hover-card-content"\` and slots for styling.

`

export default {
  title: "UI/HoverCard",
  id: "components-hover-card",
  component: mod.HoverCard,
  tags: ["autodocs"],
  parameters: {
    docs: {
      description: {
        component: docs,
      },
    },
  },
}

export const Basic = {
  render: () => (
    <mod.HoverCard trigger={<span style={{ "text-decoration": "underline", cursor: "default" }}>Hover me</span>}>
      <div style={{ display: "grid", gap: "6px" }}>
        <div style={{ "font-weight": 600 }}>Preview</div>
        <div style={{ color: "var(--text-weak)", "font-size": "12px" }}>Short supporting text.</div>
      </div>
    </mod.HoverCard>
  ),
}

export const InlineMount = {
  render: () => {
    const [mount, setMount] = createSignal<HTMLDivElement | undefined>(undefined)
    return (
      <div ref={setMount} style={{ padding: "16px", border: "1px dashed var(--border-weak)" }}>
        <mod.HoverCard
          mount={mount()}
          trigger={<span style={{ "text-decoration": "underline", cursor: "default" }}>Hover me</span>}
        >
          <div style={{ display: "grid", gap: "6px" }}>
            <div style={{ "font-weight": 600 }}>Mounted inside</div>
            <div style={{ color: "var(--text-weak)", "font-size": "12px" }}>Uses custom mount node.</div>
          </div>
        </mod.HoverCard>
      </div>
    )
  },
}