-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathmenu.api.ts
More file actions
450 lines (402 loc) · 11.6 KB
/
menu.api.ts
File metadata and controls
450 lines (402 loc) · 11.6 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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
import type {
DropdownMenuCheckboxGroupPropsWithoutHTML,
DropdownMenuCheckboxItemPropsWithoutHTML,
DropdownMenuContentPropsWithoutHTML,
DropdownMenuContentStaticPropsWithoutHTML,
DropdownMenuGroupHeadingPropsWithoutHTML,
DropdownMenuGroupPropsWithoutHTML,
DropdownMenuItemPropsWithoutHTML,
DropdownMenuRadioGroupPropsWithoutHTML,
DropdownMenuRadioItemPropsWithoutHTML,
DropdownMenuRootPropsWithoutHTML,
DropdownMenuSeparatorPropsWithoutHTML,
DropdownMenuSubContentPropsWithoutHTML,
DropdownMenuSubContentStaticPropsWithoutHTML,
DropdownMenuSubPropsWithoutHTML,
DropdownMenuSubTriggerPropsWithoutHTML,
DropdownMenuTriggerPropsWithoutHTML,
} from "bits-ui";
import {
arrowProps,
checkboxChildDefinition,
checkboxChildrenDefinition,
checkedProp,
childrenSnippet,
dirProp,
dismissibleLayerProps,
escapeLayerProps,
floatingContentChildDefinition,
floatingProps,
focusScopeProps,
forceMountProp,
indeterminateProp,
onCheckedChangeProp,
onIndeterminateChangeProp,
onOpenChangeCompleteProp,
onOpenChangeProp,
openChildDefinition,
portalProps,
preventOverflowTextSelectionProp,
preventScrollProp,
radioGroupItemChildDefinition,
radioGroupItemChildrenDefinition,
transitionStyleDataAttrs,
withChildProps,
} from "./shared.js";
import {
NoopProp,
OnStringValueChangeProp,
OpenClosedProp,
} from "./extended-types/shared/index.js";
import { MenuCheckedStateAttr } from "./extended-types/menu/index.js";
import { RadioGroupStateAttr } from "./extended-types/radio-group/index.js";
import { CheckboxGroupOnValueChangeProp } from "./extended-types/checkbox/index.js";
import type { ComponentAPISchema, PropObj } from "$lib/types/index.js";
import { omit } from "$lib/utils/omit.js";
import {
defineBooleanProp,
defineEnumDataAttr,
defineFunctionProp,
defineSimpleDataAttr,
defineStringProp,
defineSimplePropSchema,
defineNumberProp,
} from "../utils.js";
const sharedItemProps = {
textValue: defineStringProp({
description: "The text value of the checkbox menu item. This is used for typeahead.",
}),
onSelect: defineFunctionProp({
definition: NoopProp,
description: "A callback that is fired when the menu item is selected.",
stringDefinition: "() => void",
}),
closeOnSelect: defineBooleanProp({
default: true,
description: "Whether or not the menu item should close when selected.",
}),
...withChildProps({ elType: "HTMLDivElement" }),
} as const;
const props = {
open: defineBooleanProp({
default: false,
description: "The open state of the menu.",
bindable: true,
}),
onOpenChange: onOpenChangeProp,
onOpenChangeComplete: onOpenChangeCompleteProp,
dir: dirProp,
children: childrenSnippet(),
} satisfies PropObj<DropdownMenuRootPropsWithoutHTML>;
const subProps = {
open: defineBooleanProp({
default: false,
description: "The open state of the submenu.",
bindable: true,
}),
onOpenChange: onOpenChangeProp,
onOpenChangeComplete: onOpenChangeCompleteProp,
children: childrenSnippet(),
} satisfies PropObj<DropdownMenuSubPropsWithoutHTML>;
const contentProps = {
...floatingProps(),
...escapeLayerProps,
...dismissibleLayerProps,
...focusScopeProps,
forceMount: forceMountProp,
preventOverflowTextSelection: preventOverflowTextSelectionProp,
dir: dirProp,
loop: defineBooleanProp({
default: false,
description:
"Whether or not to loop through the menu items in when navigating with the keyboard.",
}),
...withChildProps({
elType: "HTMLDivElement",
child: floatingContentChildDefinition,
}),
} satisfies PropObj<DropdownMenuContentPropsWithoutHTML>;
const contentStaticProps = {
...escapeLayerProps,
...dismissibleLayerProps,
...focusScopeProps,
preventScroll: preventScrollProp,
forceMount: forceMountProp,
preventOverflowTextSelection: preventOverflowTextSelectionProp,
dir: dirProp,
loop: defineBooleanProp({
default: false,
description:
"Whether or not to loop through the menu items in when navigating with the keyboard.",
}),
...withChildProps({
elType: "HTMLDivElement",
child: openChildDefinition,
}),
} satisfies PropObj<DropdownMenuContentStaticPropsWithoutHTML>;
const subContentProps = contentProps satisfies PropObj<
Omit<DropdownMenuSubContentPropsWithoutHTML, "style">
>;
const subContentStaticProps = {
...escapeLayerProps,
...dismissibleLayerProps,
...focusScopeProps,
forceMount: forceMountProp,
preventOverflowTextSelection: preventOverflowTextSelectionProp,
dir: dirProp,
loop: defineBooleanProp({
default: true,
description:
"Whether or not to loop through the menu items when reaching the end of the list when using the keyboard.",
}),
...withChildProps({
elType: "HTMLDivElement",
child: openChildDefinition,
}),
} satisfies PropObj<DropdownMenuSubContentStaticPropsWithoutHTML>;
const checkboxItemProps = {
disabled: defineBooleanProp({
default: false,
description:
"Whether or not the checkbox menu item is disabled. Disabled items cannot be interacted with and are skipped when navigating with the keyboard.",
}),
checked: checkedProp,
onCheckedChange: onCheckedChangeProp,
indeterminate: indeterminateProp,
onIndeterminateChange: onIndeterminateChangeProp,
value: defineStringProp({
description: "The value of the checkbox item when used in a `*Menu.CheckboxGroup`.",
}),
...omit(sharedItemProps, "child", "children"),
...withChildProps({
elType: "HTMLDivElement",
children: checkboxChildrenDefinition,
child: checkboxChildDefinition,
}),
} satisfies PropObj<DropdownMenuCheckboxItemPropsWithoutHTML>;
const checkboxGroupProps = {
value: defineSimplePropSchema({
description:
"The value of the group. This is an array of the values of the checked checkboxes within the group.",
bindable: true,
default: "[]",
type: "string[]",
}),
onValueChange: defineFunctionProp({
definition: CheckboxGroupOnValueChangeProp,
description: "A callback that is fired when the checkbox group's value state changes.",
stringDefinition: "(value: string[]) => void",
}),
...withChildProps({ elType: "HTMLDivElement" }),
} satisfies PropObj<DropdownMenuCheckboxGroupPropsWithoutHTML>;
const radioGroupProps = {
value: defineStringProp({
description: "The value of the currently checked radio menu item.",
bindable: true,
}),
onValueChange: defineFunctionProp({
definition: OnStringValueChangeProp,
description: "A callback that is fired when the radio group's value changes.",
stringDefinition: "(value: string) => void",
}),
...withChildProps({ elType: "HTMLDivElement" }),
} satisfies PropObj<DropdownMenuRadioGroupPropsWithoutHTML>;
const radioItemProps = {
value: defineStringProp({
description:
"The value of the radio item. When checked, the parent `RadioGroup`'s value will be set to this value.",
required: true,
}),
disabled: defineBooleanProp({
description:
"Whether or not the radio menu item is disabled. Disabled items cannot be interacted with and are skipped when navigating with the keyboard.",
default: false,
}),
...omit(sharedItemProps, "child", "children"),
...withChildProps({
elType: "HTMLDivElement",
children: radioGroupItemChildrenDefinition,
child: radioGroupItemChildDefinition,
}),
} satisfies PropObj<DropdownMenuRadioItemPropsWithoutHTML>;
const itemProps = {
disabled: defineBooleanProp({
default: false,
description: "Whether or not the menu item is disabled.",
}),
...sharedItemProps,
} satisfies PropObj<DropdownMenuItemPropsWithoutHTML>;
const subTriggerProps = {
disabled: defineBooleanProp({
default: false,
description: "Whether or not the submenu trigger is disabled.",
}),
openDelay: defineNumberProp({
default: 100,
description:
"The amount of time in ms from when the mouse enters the subtrigger until the submenu opens.",
}),
...omit(sharedItemProps, "closeOnSelect"),
} satisfies PropObj<DropdownMenuSubTriggerPropsWithoutHTML>;
const triggerProps = {
disabled: defineBooleanProp({
default: false,
description: "Whether or not the menu trigger is disabled.",
}),
...withChildProps({ elType: "HTMLButtonElement" }),
} satisfies PropObj<DropdownMenuTriggerPropsWithoutHTML>;
const groupProps = withChildProps({
elType: "HTMLDivElement",
}) satisfies PropObj<DropdownMenuGroupPropsWithoutHTML>;
const groupHeadingProps = withChildProps({
elType: "HTMLDivElement",
}) satisfies PropObj<DropdownMenuGroupHeadingPropsWithoutHTML>;
const separatorProps = withChildProps({
elType: "HTMLDivElement",
}) satisfies PropObj<DropdownMenuSeparatorPropsWithoutHTML>;
const STATE = defineEnumDataAttr({
name: "state",
value: OpenClosedProp,
options: ["open", "closed"],
description: "The open state of the menu or submenu the element controls or belongs to.",
});
type DataAttrs = ComponentAPISchema["dataAttributes"];
const triggerAttrs: DataAttrs = [STATE];
const contentAttrs: DataAttrs = [STATE, ...transitionStyleDataAttrs];
const arrowAttrs: DataAttrs = [STATE];
const sharedItemAttrs: DataAttrs = [
defineSimpleDataAttr({
name: "orientation",
value: "vertical",
description: "The orientation of the menu.",
}),
defineSimpleDataAttr({
name: "highlighted",
description: "Present when the menu item is highlighted.",
}),
defineSimpleDataAttr({
name: "disabled",
description: "Present when the menu item is disabled.",
}),
];
const itemAttrs: DataAttrs = [...sharedItemAttrs];
const checkboxItemAttrs: DataAttrs = [
...sharedItemAttrs,
defineEnumDataAttr({
name: "state",
value: MenuCheckedStateAttr,
options: ["checked", "unchecked", "indeterminate"],
description: "The checkbox menu item's checked state.",
}),
];
const radioItemAttrs: DataAttrs = [
...sharedItemAttrs,
defineEnumDataAttr({
name: "state",
value: RadioGroupStateAttr,
options: ["checked", "unchecked"],
description: "The radio menu item's checked state.",
}),
defineSimpleDataAttr({
name: "value",
description: "The value of the radio item.",
}),
];
const separatorAttrs: DataAttrs = [
defineSimpleDataAttr({
name: "orientation",
value: "vertical",
description: "The orientation of the separator.",
}),
defineSimpleDataAttr({
name: "menu-separator",
description: "Present on the separator element.",
}),
];
const subContentAttrs: DataAttrs = [STATE, ...transitionStyleDataAttrs];
const subTriggerAttrs: DataAttrs = [...sharedItemAttrs, STATE];
export const trigger = {
props: triggerProps,
dataAttributes: triggerAttrs,
};
export const content = {
props: contentProps,
dataAttributes: contentAttrs,
};
export const contentStatic = {
props: contentStaticProps,
dataAttributes: contentAttrs,
};
export const arrow = {
props: arrowProps,
dataAttributes: arrowAttrs,
};
export const item = {
props: itemProps,
dataAttributes: itemAttrs,
};
export const group = {
props: groupProps,
};
export const label = {
props: groupHeadingProps,
};
export const separator = {
props: separatorProps,
dataAttributes: separatorAttrs,
};
export const checkboxItem = {
props: checkboxItemProps,
dataAttributes: checkboxItemAttrs,
};
export const radioGroup = {
props: radioGroupProps,
};
export const radioItem = {
props: radioItemProps,
dataAttributes: radioItemAttrs,
};
export const subTrigger = {
props: subTriggerProps,
dataAttributes: subTriggerAttrs,
};
export const subContent = {
props: subContentProps,
dataAttributes: subContentAttrs,
};
export const subContentStatic = {
props: subContentStaticProps,
dataAttributes: subContentAttrs,
};
export const sub = {
props: subProps,
};
export const root = {
props,
};
const portal = {
props: portalProps,
};
const checkboxGroup = {
props: checkboxGroupProps,
};
export const menu = {
root,
trigger,
content,
contentStatic,
item,
checkboxGroup,
checkboxItem,
radioGroup,
radioItem,
separator,
arrow,
group,
label,
sub,
subTrigger,
subContent,
subContentStatic,
portal,
};