-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathtooltip.stories.tsx
More file actions
205 lines (187 loc) · 5.26 KB
/
Copy pathtooltip.stories.tsx
File metadata and controls
205 lines (187 loc) · 5.26 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import { FilesIcon } from '@navikt/aksel-icons';
import type { Meta, StoryFn, StoryObj } from '@storybook/react-vite';
import { useEffect, useRef, useState } from 'react';
import { expect, fireEvent, userEvent, waitFor } from 'storybook/test';
import { Button, Link } from '../../';
import { Tooltip } from './tooltip';
type Story = StoryObj<typeof Tooltip>;
type FnStory = StoryFn<typeof Tooltip>;
function isInViewport(el: Element) {
const { height, width } = el.getBoundingClientRect();
return height > 1 && width > 1;
}
export default {
title: 'Komponenter/Tooltip',
component: Tooltip,
parameters: {
customStyles: { margin: '2rem', padding: '4rem' },
chromatic: {
disableSnapshot: false,
},
},
play: async (ctx) => {
const tooltips =
ctx.canvasElement.querySelectorAll<HTMLElement>('[data-tooltip]');
const fakeFocus = (e: HTMLElement) => {
fireEvent.focus(e); // shows up in interaction log in Storybook
e.focus({ focusVisible: true } as Record<string, unknown>); // necessary to get focusVisible styling, but doesn't show up in interaction log
};
for (const event of [userEvent.hover, fakeFocus])
for (const tooltipTrigger of tooltips) {
await event(tooltipTrigger);
await waitFor(async () => {
const text = tooltipTrigger.getAttribute('data-tooltip');
if (!text) {
throw new Error('Tooltip trigger has no data-tooltip attribute');
}
const tooltipRenderer = document.body.querySelector('.ds-tooltip');
await expect(tooltipRenderer).toBeVisible();
await expect(tooltipRenderer).toSatisfy(isInViewport); // toBeVisible() doesn't check if the element is in the viewport
await expect(tooltipRenderer).toHaveTextContent(text);
if (tooltipTrigger.textContent.trim()) {
await expect(tooltipTrigger).toHaveAttribute(
'aria-description',
text,
);
} else {
await expect(tooltipTrigger).toHaveAttribute('aria-label', text);
}
});
}
},
} satisfies Meta;
export const Preview: StoryFn<typeof Tooltip> = (args) => (
<Tooltip {...args}>
<Button icon>
<FilesIcon aria-hidden />
</Button>
</Tooltip>
);
Preview.args = {
content: 'Kopier',
placement: 'top',
};
export const WithLink: FnStory = () => {
return (
<Tooltip content='Gå til en annen side...' placement='top'>
<Link href='#'>En lenke</Link>
</Tooltip>
);
};
export const WithSpan: FnStory = () => {
return (
<Tooltip content='Innholdet i tooltipen' placement='top'>
<span>Tekst med tooltip</span>
</Tooltip>
);
};
export const WithPlainText: FnStory = () => {
return (
<Tooltip content='Innholdet i tooltipen' placement='top'>
Tekst med tooltip
</Tooltip>
);
};
export const WithString: Story = {
args: {
content: 'Organisasjonsnummer',
children: 'Org.nr.',
tabIndex: 0,
},
};
export const Placement: Story = {
args: {
content: 'Kopier',
placement: 'bottom',
children: (
<Button icon>
<FilesIcon aria-hidden />
</Button>
),
},
};
export const Aria: FnStory = () => {
return (
<>
<Tooltip content='Beskrivelse for aria-description'>
<Button>Eg er aria-description</Button>
</Tooltip>
<Tooltip content='Beskrivelse for aria-description'>
<Button>
<FilesIcon aria-hidden />
<span>Eg er også aria-description</span>
</Button>
</Tooltip>
<Tooltip content='Eg er aria-label'>
<Button icon>
<FilesIcon aria-hidden />
</Button>
</Tooltip>
</>
);
};
Aria.parameters = {
customStyles: {
display: 'flex',
gap: 'var(--ds-size-2)',
alignItems: 'center',
},
};
export const WithDynamicTooltipText: Story = {
args: {
content: 'Kopier',
},
render: () => {
const [content, setContent] = useState('Kopier');
return (
<Tooltip content={content}>
<Button
icon
onClick={() => setContent('Kopiert')}
onBlur={() => setContent('Kopier')}
>
<FilesIcon aria-hidden />
</Button>
</Tooltip>
);
},
};
export const WithCSSTooltipText: Story = {
args: {
content: 'Kopier',
},
render: () => (
<Tooltip content=''>
<Button style={{ '--ds-tooltip': '"Kopier"' } as React.CSSProperties}>
<FilesIcon aria-hidden />
</Button>
</Tooltip>
),
};
export const WithDynamicCSSTooltipText: Story = {
args: {
content: 'Kopier',
},
render: () => {
const tooltipRef = useRef<HTMLDivElement>(null);
const [tooltipContent, setTooltipContent] = useState('');
// Tooltip text from css variable
useEffect(() => {
if (typeof window === 'undefined' || !tooltipRef.current) return;
const content = getComputedStyle(tooltipRef.current)
.getPropertyValue('--ds-tooltip-content')
.replace(/^["']|["']$/g, '')
.trim();
setTooltipContent(content);
}, []);
return (
<Tooltip content={tooltipContent} ref={tooltipRef}>
<Button
style={{ '--ds-tooltip-content': '"Kopier"' } as React.CSSProperties}
>
<FilesIcon aria-hidden />
</Button>
</Tooltip>
);
},
};