-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathuui-symbol-sort.story.ts
61 lines (57 loc) · 1.66 KB
/
uui-symbol-sort.story.ts
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
import '.';
import readme from '../README.md?raw';
import { html } from 'lit';
import type { Meta, StoryObj } from '@storybook/web-components';
import { spread } from '../../../storyhelpers';
const meta: Meta = {
id: 'uui-symbol-sort',
component: 'uui-symbol-sort',
title: 'Symbols/Sort',
parameters: {
readme: {
markdown: readme,
},
},
};
export default meta;
type Story = StoryObj;
export const Default: Story = {
render: args =>
html`<style>
button {
padding: 6px 6px 6px 12px;
background-color: transparent;
color: inherit;
border: none;
border-bottom: 1px solid currentColor;
cursor: pointer;
}
uui-symbol-sort {
margin-left: 20px;
}
button:hover {
--uui-symbol-sort-hover: 1;
/* We want to provide the hover indication on the sorting arrow for the full interactive element. */
}
</style>
<button
@click=${(e: MouseEvent) => {
const sortArrowEl = (e.target as any).querySelector(
'uui-symbol-sort',
);
// sorting algorithm/behaviour is not part of the symbol, therefor we need to do something like this in our implementation.
if (sortArrowEl.active !== true) {
sortArrowEl.active = true;
return;
}
if (sortArrowEl.descending !== true) {
sortArrowEl.descending = true;
} else {
sortArrowEl.descending = false;
sortArrowEl.active = false;
}
}}>
Header example
<uui-symbol-sort ${spread(args)}></uui-symbol-sort>
</button>`,
};