-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathuui-symbol-sort.element.ts
118 lines (109 loc) · 2.99 KB
/
uui-symbol-sort.element.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
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
import { ActiveMixin } from '@umbraco-ui/uui-base/lib/mixins';
import { defineElement } from '@umbraco-ui/uui-base/lib/registration';
import { css, html, LitElement } from 'lit';
import { property } from 'lit/decorators.js';
/**
* @element uui-symbol-sort
* @description A symbol indicating whether related composition is sorting(active) and whether the sorting is ascending or descending.
* Please define aria-sort on the header for the composition.
*/
@defineElement('uui-symbol-sort')
export class UUISymbolSortElement extends ActiveMixin(LitElement) {
/**
* Turns the arrow around. Set this boolean to true for displaying descending sort is active.
* @type {boolean}
* @default false
*/
@property({ type: Boolean, reflect: true })
public descending = false;
render() {
return html` <svg
id="up"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round">
<path d="m4 9 8 8 8-8"></path>
</svg>
<svg
id="down"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round">
<path d="m4 9 8 8 8-8"></path>
</svg>`;
}
static styles = [
css`
:host {
position: relative;
display: inline-block;
width: 0.9em;
height: 1em;
//vertical-align: middle;
pointer-events: none;
}
svg {
position: absolute;
left: 0;
top: 50%;
width: 0.9em;
transform-origin: 50% 50%;
transition:
transform 120ms ease-in-out,
opacity 120ms,
margin-top 240ms;
opacity: 0;
margin-top: -8em;
}
#up {
transform: rotate(180deg);
margin-top: -1.05em;
}
#down {
margin-top: -0.55em;
}
:host([active]) #up {
margin-top: calc(-0.8em - (0.25em * var(--uui-symbol-sort-hover, 0)));
}
:host([active]) #down {
margin-top: calc(-0.8em + (0.25em * var(--uui-symbol-sort-hover, 0)));
}
:host(:hover) {
--uui-symbol-sort-hover: 1;
}
:host(:not([active])) #up,
:host(:not([active])) #down {
opacity: calc(0.25 * var(--uui-symbol-sort-hover, 0));
}
:host([active]:not([descending])) #down {
opacity: 1;
}
:host([active]:not([descending])) #up {
opacity: calc(0.25 * var(--uui-symbol-sort-hover, 0));
}
:host([active][descending]) #up {
opacity: 1;
}
:host([active][descending]) #down {
opacity: calc(0.25 * var(--uui-symbol-sort-hover, 0));
}
`,
];
}
declare global {
interface HTMLElementTagNameMap {
'uui-symbol-sort': UUISymbolSortElement;
}
}