-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathTabs.astro
218 lines (186 loc) · 4.69 KB
/
Tabs.astro
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
206
207
208
209
210
211
212
213
214
215
216
217
218
---
import type { XOR } from "~/util/types";
import Icon from "./Icon.astro";
import jsdom from "jsdom";
import { Image } from "astro:assets";
type BaseButtonDefinition = {
name: string;
accent?: string;
};
type ButtonDefinition = XOR<
BaseButtonDefinition & { icon: string },
BaseButtonDefinition & { image: ImageMetadata }
>;
export interface Props {
/** Array of buttons to show in the tab selector. */
buttons: ButtonDefinition[];
/** The name of the active tab. */
active: string;
}
const { buttons, active } = Astro.props;
const DOM = new jsdom.JSDOM();
const body = DOM.window.document.body;
const rendered = await Astro.slots.render("default");
body.innerHTML += rendered;
body.querySelector(`[data-tab="${active}"]`)?.classList.add("active");
---
<div class="tabs">
<div class="buttons">
{
buttons.map((button) => (
<button
value={button.name}
class={active === button.name ? "active" : ""}
style={`--accent-color: ${button.accent ?? "#ffffff"}`}
>
<span>
{button.image && <Image src={button.image} alt={button.name}/>}
{button.icon && <Icon name={button.icon} group="solid" />}
{button.name}
</span>
</button>
))
}
</div>
<div class="windows" set:html={body.innerHTML} />
</div>
<script>
const instances = document.querySelectorAll("div.tabs");
for (const instance of instances) {
const buttons = instance.querySelectorAll<HTMLButtonElement>(
":scope > div.buttons > button"
);
const tabContainer = instance.querySelector<HTMLDivElement>(
":scope > div.windows"
);
if (!tabContainer) {
console.error("Failed to get tabs for tabs component", instance);
break;
}
for (const button of buttons) {
const tab = tabContainer.querySelector(`[data-tab="${button.value}"]`);
if (!tab) {
console.error("Failed to get linked tab for a button", button);
break;
}
button.addEventListener("click", () => {
buttons.forEach((button) => button.classList.remove("active"));
Array.from(tabContainer.children).forEach((tab) =>
tab.classList.remove("active")
);
button.classList.add("active");
tab.classList.add("active");
});
}
}
</script>
<style lang="scss">
.tabs {
position: relative;
width: 100%;
margin: 0.5em auto;
border-radius: 0.5em;
overflow: hidden;
& > div.buttons button,
div[data-client] {
transition: filter ease-in-out 0.5s;
}
& > div.buttons {
display: flex;
width: 100%;
button {
color: white;
background-color: #272727bb;
width: 100%;
border: none;
padding: 0.5em 1em;
border-left: #333333 solid 0.075rem;
border-right: #333333 solid 0.075rem;
position: relative;
z-index: 2;
font-size: 1em;
&:first-of-type() {
border-top-left-radius: 0.5em;
border-left: none;
}
&:last-of-type() {
border-top-right-radius: 0.5em;
border-right: none;
}
&::after {
content: "";
display: block;
width: 100%;
height: 0px;
position: absolute;
bottom: 0px;
left: 0px;
z-index: 0;
transition: height ease-in-out 0.3s;
background-color: var(--accent-color);
}
& > span {
filter: saturate(0);
display: inline-flex;
align-items: center;
gap: 0.5em;
}
&:hover {
cursor: pointer;
& > span {
filter: saturate(0.5);
}
}
&:global(.active) {
& > span {
filter: saturate(1);
}
&::after {
height: 0.1em;
}
}
img,
:global(i) {
width: 1em;
height: 1em;
text-align: center;
}
img {
font-size: 1.5em;
}
:global(i) {
font-size: 1.8em;
}
}
}
:global(div[data-tab]) {
background-color: #0000007d;
position: absolute;
left: -999vw;
top: -999vh;
opacity: 0;
padding: 0.5em;
:global(p) {
margin: 0.25em auto;
}
&:global(.active) {
position: static;
opacity: 1;
}
& > div.placeholder {
text-align: center;
font-size: 1.2em;
:global(i) {
font-size: 2em;
}
& > div {
font-size: 1.5em;
font-weight: 600;
}
& > p {
margin: 0.5em auto;
}
}
}
}
</style>