@aerogel/core 0.1.1-next.a8a712e051e6729532e787aab3e4573464412909 → 0.1.1-next.ad50ec0af53abadac36a5f25261330a0b5d77f4b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aerogel-core.d.ts +248 -93
- package/dist/aerogel-core.js +1430 -1233
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +1 -1
- package/src/components/contracts/Select.ts +80 -2
- package/src/components/headless/HeadlessSelect.vue +6 -91
- package/src/components/index.ts +1 -0
- package/src/components/ui/Combobox.vue +37 -0
- package/src/components/ui/ComboboxLabel.vue +29 -0
- package/src/components/ui/ComboboxOption.vue +32 -0
- package/src/components/ui/ComboboxOptions.vue +48 -0
- package/src/components/ui/ComboboxTrigger.vue +33 -0
- package/src/components/ui/index.ts +5 -0
- package/src/components/vue/ProvideRef.vue +12 -0
- package/src/components/vue/index.ts +1 -0
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { computed, inject, provide, readonly } from 'vue';
|
|
2
|
+
import { evaluate, toString, uuid } from '@noeldemartin/utils';
|
|
1
3
|
import type { AcceptableValue, AsTag, SelectContentProps } from 'reka-ui';
|
|
2
|
-
import type { Component, ComputedRef, HTMLAttributes } from 'vue';
|
|
4
|
+
import type { Component, ComputedRef, EmitFn, HTMLAttributes } from 'vue';
|
|
3
5
|
import type { Nullable } from '@noeldemartin/utils';
|
|
4
6
|
|
|
5
|
-
import
|
|
7
|
+
import { translateWithDefault } from '@aerogel/core/lang';
|
|
8
|
+
import type { FormController, FormFieldValue } from '@aerogel/core/forms';
|
|
6
9
|
|
|
7
10
|
import type { InputEmits, InputExpose, InputProps } from './Input';
|
|
8
11
|
|
|
@@ -43,3 +46,78 @@ export interface SelectExpose<T extends Nullable<FormFieldValue> = Nullable<Form
|
|
|
43
46
|
export function hasSelectOptionLabel(option: unknown): option is HasSelectOptionLabel {
|
|
44
47
|
return typeof option === 'object' && option !== null && 'label' in option;
|
|
45
48
|
}
|
|
49
|
+
|
|
50
|
+
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
51
|
+
export function useSelect<T extends Nullable<FormFieldValue>>(props: SelectProps<T>, emit: EmitFn<SelectEmits<T>>) {
|
|
52
|
+
const form = inject<FormController | null>('form', null);
|
|
53
|
+
const computedValue = computed(() => {
|
|
54
|
+
if (form && props.name) {
|
|
55
|
+
return form.getFieldValue(props.name) as T;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return props.modelValue as T;
|
|
59
|
+
});
|
|
60
|
+
const acceptableValue = computed(() => computedValue.value as AcceptableValue);
|
|
61
|
+
const errors = computed(() => {
|
|
62
|
+
if (!form || !props.name) {
|
|
63
|
+
return null;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return form.errors[props.name] ?? null;
|
|
67
|
+
});
|
|
68
|
+
const computedOptions = computed(() => {
|
|
69
|
+
if (!props.options) {
|
|
70
|
+
return null;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
return props.options.map((option) => ({
|
|
74
|
+
key: uuid(),
|
|
75
|
+
label: props.renderOption
|
|
76
|
+
? props.renderOption(option)
|
|
77
|
+
: hasSelectOptionLabel(option)
|
|
78
|
+
? evaluate(option.label as string)
|
|
79
|
+
: toString(option),
|
|
80
|
+
value: option as AcceptableValue,
|
|
81
|
+
}));
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
const expose = {
|
|
85
|
+
labelClass: props.labelClass,
|
|
86
|
+
optionsClass: props.optionsClass,
|
|
87
|
+
align: props.align,
|
|
88
|
+
side: props.side,
|
|
89
|
+
value: computedValue,
|
|
90
|
+
id: `select-${uuid()}`,
|
|
91
|
+
name: computed(() => props.name),
|
|
92
|
+
label: computed(() => props.label),
|
|
93
|
+
description: computed(() => props.description),
|
|
94
|
+
placeholder: computed(() => props.placeholder ?? translateWithDefault('ui.select', 'Select an option')),
|
|
95
|
+
options: computedOptions,
|
|
96
|
+
selectedOption: computed(() => computedOptions.value?.find((option) => option.value === props.modelValue)),
|
|
97
|
+
errors: readonly(errors),
|
|
98
|
+
required: computed(() => {
|
|
99
|
+
if (!props.name || !form) {
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return form.getFieldRules(props.name).includes('required');
|
|
104
|
+
}),
|
|
105
|
+
update(value) {
|
|
106
|
+
if (form && props.name) {
|
|
107
|
+
form.setFieldValue(props.name, value as FormFieldValue);
|
|
108
|
+
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
emit('update:modelValue', value);
|
|
113
|
+
},
|
|
114
|
+
} satisfies SelectExpose<T>;
|
|
115
|
+
|
|
116
|
+
function update(value: AcceptableValue) {
|
|
117
|
+
expose.update(value as T);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
provide('select', expose);
|
|
121
|
+
|
|
122
|
+
return { expose, update, acceptableValue };
|
|
123
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<SelectRoot
|
|
3
3
|
v-slot="{ open }"
|
|
4
4
|
:model-value="acceptableValue"
|
|
5
|
-
:by="compareOptions
|
|
5
|
+
:by="compareOptions"
|
|
6
6
|
@update:model-value="update($event)"
|
|
7
7
|
>
|
|
8
8
|
<component :is="as" v-bind="$attrs">
|
|
@@ -15,16 +15,11 @@
|
|
|
15
15
|
</template>
|
|
16
16
|
|
|
17
17
|
<script setup lang="ts" generic="T extends Nullable<FormFieldValue>">
|
|
18
|
-
import { computed, inject, provide, readonly } from 'vue';
|
|
19
|
-
import { value as evaluate, toString, uuid } from '@noeldemartin/utils';
|
|
20
18
|
import { SelectRoot } from 'reka-ui';
|
|
21
|
-
import type {
|
|
22
|
-
import type { Closure, Nullable } from '@noeldemartin/utils';
|
|
19
|
+
import type { Nullable } from '@noeldemartin/utils';
|
|
23
20
|
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import type FormController from '@aerogel/core/forms/FormController';
|
|
27
|
-
import type { SelectEmits, SelectExpose, SelectProps } from '@aerogel/core/components/contracts/Select';
|
|
21
|
+
import { useSelect } from '@aerogel/core/components/contracts/Select';
|
|
22
|
+
import type { SelectEmits, SelectProps } from '@aerogel/core/components/contracts/Select';
|
|
28
23
|
import type { FormFieldValue } from '@aerogel/core/forms/FormController';
|
|
29
24
|
|
|
30
25
|
import HeadlessSelectTrigger from './HeadlessSelectTrigger.vue';
|
|
@@ -32,89 +27,9 @@ import HeadlessSelectOptions from './HeadlessSelectOptions.vue';
|
|
|
32
27
|
|
|
33
28
|
defineOptions({ inheritAttrs: false });
|
|
34
29
|
|
|
35
|
-
const {
|
|
36
|
-
name,
|
|
37
|
-
as = 'div',
|
|
38
|
-
label,
|
|
39
|
-
options,
|
|
40
|
-
labelClass,
|
|
41
|
-
optionsClass,
|
|
42
|
-
renderOption,
|
|
43
|
-
compareOptions = (a, b) => a === b,
|
|
44
|
-
description,
|
|
45
|
-
placeholder,
|
|
46
|
-
modelValue,
|
|
47
|
-
align,
|
|
48
|
-
side,
|
|
49
|
-
} = defineProps<SelectProps<T>>();
|
|
50
30
|
const emit = defineEmits<SelectEmits<T>>();
|
|
51
|
-
const
|
|
52
|
-
const
|
|
53
|
-
if (form && name) {
|
|
54
|
-
return form.getFieldValue(name) as T;
|
|
55
|
-
}
|
|
31
|
+
const { as = 'div', compareOptions = (a, b) => a === b, ...props } = defineProps<SelectProps<T>>();
|
|
32
|
+
const { expose, acceptableValue, update } = useSelect({ as, compareOptions, ...props }, emit);
|
|
56
33
|
|
|
57
|
-
return modelValue as T;
|
|
58
|
-
});
|
|
59
|
-
const acceptableValue = computed(() => computedValue.value as AcceptableValue);
|
|
60
|
-
const errors = computed(() => {
|
|
61
|
-
if (!form || !name) {
|
|
62
|
-
return null;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
return form.errors[name] ?? null;
|
|
66
|
-
});
|
|
67
|
-
const computedOptions = computed(() => {
|
|
68
|
-
if (!options) {
|
|
69
|
-
return null;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
return options.map((option) => ({
|
|
73
|
-
key: uuid(),
|
|
74
|
-
label: renderOption
|
|
75
|
-
? renderOption(option)
|
|
76
|
-
: hasSelectOptionLabel(option)
|
|
77
|
-
? evaluate(option.label as string)
|
|
78
|
-
: toString(option),
|
|
79
|
-
value: option as AcceptableValue,
|
|
80
|
-
}));
|
|
81
|
-
});
|
|
82
|
-
const expose = {
|
|
83
|
-
labelClass,
|
|
84
|
-
optionsClass,
|
|
85
|
-
align,
|
|
86
|
-
side,
|
|
87
|
-
value: computedValue,
|
|
88
|
-
id: `select-${uuid()}`,
|
|
89
|
-
name: computed(() => name),
|
|
90
|
-
label: computed(() => label),
|
|
91
|
-
description: computed(() => description),
|
|
92
|
-
placeholder: computed(() => placeholder ?? translateWithDefault('ui.select', 'Select an option')),
|
|
93
|
-
options: computedOptions,
|
|
94
|
-
selectedOption: computed(() => computedOptions.value?.find((option) => option.value === modelValue)),
|
|
95
|
-
errors: readonly(errors),
|
|
96
|
-
required: computed(() => {
|
|
97
|
-
if (!name || !form) {
|
|
98
|
-
return;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
return form.getFieldRules(name).includes('required');
|
|
102
|
-
}),
|
|
103
|
-
update(value) {
|
|
104
|
-
if (form && name) {
|
|
105
|
-
form.setFieldValue(name, value as FormFieldValue);
|
|
106
|
-
|
|
107
|
-
return;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
emit('update:modelValue', value);
|
|
111
|
-
},
|
|
112
|
-
} satisfies SelectExpose<T>;
|
|
113
|
-
|
|
114
|
-
function update(value: AcceptableValue) {
|
|
115
|
-
expose.update(value as T);
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
provide('select', expose);
|
|
119
34
|
defineExpose(expose);
|
|
120
35
|
</script>
|
package/src/components/index.ts
CHANGED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<ComboboxRoot
|
|
3
|
+
open-on-focus
|
|
4
|
+
ignore-filter
|
|
5
|
+
:model-value="acceptableValue"
|
|
6
|
+
:by="compareOptions"
|
|
7
|
+
@update:model-value="update($event)"
|
|
8
|
+
>
|
|
9
|
+
<ProvideRef v-model="input" name="combobox-input">
|
|
10
|
+
<ComboboxLabel />
|
|
11
|
+
<ComboboxTrigger />
|
|
12
|
+
<ComboboxOptions />
|
|
13
|
+
</ProvideRef>
|
|
14
|
+
</ComboboxRoot>
|
|
15
|
+
</template>
|
|
16
|
+
|
|
17
|
+
<script setup lang="ts" generic="T extends Nullable<FormFieldValue>">
|
|
18
|
+
import { ComboboxRoot } from 'reka-ui';
|
|
19
|
+
import { ref } from 'vue';
|
|
20
|
+
import type { Nullable } from '@noeldemartin/utils';
|
|
21
|
+
|
|
22
|
+
import ProvideRef from '@aerogel/core/components/vue/ProvideRef.vue';
|
|
23
|
+
import { useSelect } from '@aerogel/core/components/contracts/Select';
|
|
24
|
+
import type { SelectEmits, SelectProps } from '@aerogel/core/components/contracts/Select';
|
|
25
|
+
import type { FormFieldValue } from '@aerogel/core/forms';
|
|
26
|
+
|
|
27
|
+
import ComboboxOptions from './ComboboxOptions.vue';
|
|
28
|
+
import ComboboxTrigger from './ComboboxTrigger.vue';
|
|
29
|
+
import ComboboxLabel from './ComboboxLabel.vue';
|
|
30
|
+
|
|
31
|
+
const emit = defineEmits<SelectEmits<T>>();
|
|
32
|
+
const { as = 'div', compareOptions = (a, b) => a === b, ...props } = defineProps<SelectProps<T>>();
|
|
33
|
+
const { expose, acceptableValue, update } = useSelect({ as, compareOptions, ...props }, emit);
|
|
34
|
+
const input = ref(acceptableValue.value ?? '');
|
|
35
|
+
|
|
36
|
+
defineExpose(expose);
|
|
37
|
+
</script>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<Label
|
|
3
|
+
v-if="show"
|
|
4
|
+
:for="select.id"
|
|
5
|
+
:class="renderedClasses"
|
|
6
|
+
v-bind="$props"
|
|
7
|
+
>
|
|
8
|
+
<slot>
|
|
9
|
+
{{ select.label }}
|
|
10
|
+
</slot>
|
|
11
|
+
</Label>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script setup lang="ts">
|
|
15
|
+
import { computed, useSlots } from 'vue';
|
|
16
|
+
import { Label } from 'reka-ui';
|
|
17
|
+
import type { LabelProps } from 'reka-ui';
|
|
18
|
+
|
|
19
|
+
import { classes } from '@aerogel/core/utils';
|
|
20
|
+
import { injectReactiveOrFail } from '@aerogel/core/utils/vue';
|
|
21
|
+
import type { SelectExpose } from '@aerogel/core/components/contracts/Select';
|
|
22
|
+
|
|
23
|
+
defineProps<Omit<LabelProps, 'for'>>();
|
|
24
|
+
|
|
25
|
+
const select = injectReactiveOrFail<SelectExpose>('select', '<ComboboxLabel> must be a child of a <Combobox>');
|
|
26
|
+
const slots = useSlots();
|
|
27
|
+
const show = computed(() => !!(select.label || slots.default));
|
|
28
|
+
const renderedClasses = computed(() => classes('block text-sm leading-6 font-medium text-gray-900', select.labelClass));
|
|
29
|
+
</script>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<ComboboxItem v-bind="$props" class="group p-1 outline-none">
|
|
3
|
+
<div
|
|
4
|
+
class="relative flex max-w-[calc(100vw-2rem)] cursor-pointer items-center gap-2 truncate rounded-md px-2 py-1 text-sm select-none *:truncate group-data-[highlighted]:bg-gray-100 group-data-[state=checked]:font-semibold group-data-[state=unchecked]:opacity-50"
|
|
5
|
+
>
|
|
6
|
+
<slot>
|
|
7
|
+
{{ renderedLabel }}
|
|
8
|
+
</slot>
|
|
9
|
+
</div>
|
|
10
|
+
</ComboboxItem>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup lang="ts">
|
|
14
|
+
import { computed } from 'vue';
|
|
15
|
+
import { ComboboxItem, type ComboboxItemProps } from 'reka-ui';
|
|
16
|
+
import { toString } from '@noeldemartin/utils';
|
|
17
|
+
|
|
18
|
+
import { injectReactiveOrFail } from '@aerogel/core/utils';
|
|
19
|
+
import type { SelectExpose } from '@aerogel/core/components/contracts/Select';
|
|
20
|
+
|
|
21
|
+
const { value } = defineProps<ComboboxItemProps>();
|
|
22
|
+
const select = injectReactiveOrFail<SelectExpose>('select', '<ComboboxOption> must be a child of a <Combobox>');
|
|
23
|
+
const renderedLabel = computed(() => {
|
|
24
|
+
const itemOption = select.options?.find((option) => option.value === value);
|
|
25
|
+
|
|
26
|
+
if (itemOption) {
|
|
27
|
+
return itemOption.label;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return toString(value);
|
|
31
|
+
});
|
|
32
|
+
</script>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<ComboboxPortal>
|
|
3
|
+
<ComboboxContent
|
|
4
|
+
position="popper"
|
|
5
|
+
:align="select.align"
|
|
6
|
+
:side="select.side"
|
|
7
|
+
:side-offset="4"
|
|
8
|
+
:class="renderedClasses"
|
|
9
|
+
>
|
|
10
|
+
<ComboboxViewport>
|
|
11
|
+
<ComboboxEmpty class="group p-1 outline-none">
|
|
12
|
+
<div
|
|
13
|
+
class="relative flex max-w-[calc(100vw-2rem)] items-center gap-2 truncate rounded-md px-2 py-1 text-sm select-none *:truncate"
|
|
14
|
+
>
|
|
15
|
+
{{ $td('ui.comboboxEmpty', 'No options found') }}
|
|
16
|
+
</div>
|
|
17
|
+
</ComboboxEmpty>
|
|
18
|
+
|
|
19
|
+
<ComboboxGroup>
|
|
20
|
+
<ComboboxOption v-if="input" :value="input">
|
|
21
|
+
{{ input }}
|
|
22
|
+
</ComboboxOption>
|
|
23
|
+
<ComboboxOption v-for="option in filteredOptions" :key="option.key" :value="option.value" />
|
|
24
|
+
</ComboboxGroup>
|
|
25
|
+
</ComboboxViewport>
|
|
26
|
+
</ComboboxContent>
|
|
27
|
+
</ComboboxPortal>
|
|
28
|
+
</template>
|
|
29
|
+
|
|
30
|
+
<script setup lang="ts">
|
|
31
|
+
import { ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxPortal, ComboboxViewport, useFilter } from 'reka-ui';
|
|
32
|
+
import { computed } from 'vue';
|
|
33
|
+
import type { Ref } from 'vue';
|
|
34
|
+
|
|
35
|
+
import { classes, injectOrFail, injectReactiveOrFail } from '@aerogel/core/utils';
|
|
36
|
+
import type { SelectExpose } from '@aerogel/core/components/contracts/Select';
|
|
37
|
+
|
|
38
|
+
import ComboboxOption from './ComboboxOption.vue';
|
|
39
|
+
|
|
40
|
+
const { contains } = useFilter({ sensitivity: 'base' });
|
|
41
|
+
const select = injectReactiveOrFail<SelectExpose>('select', '<ComboboxOptions> must be a child of a <Combobox>');
|
|
42
|
+
const input = injectOrFail<Ref<string>>('combobox-input');
|
|
43
|
+
const filteredOptions = computed(() => select.options?.filter((option) => contains(option.label, input.value)) ?? []);
|
|
44
|
+
const renderedClasses = classes(
|
|
45
|
+
'max-h-(--reka-combobox-content-available-height) min-w-(--reka-combobox-trigger-width)',
|
|
46
|
+
'z-50 overflow-auto rounded-lg bg-white text-base shadow-lg ring-1 ring-black/5 focus:outline-hidden',
|
|
47
|
+
);
|
|
48
|
+
</script>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<ComboboxAnchor>
|
|
3
|
+
<ComboboxInput
|
|
4
|
+
:id="select.id"
|
|
5
|
+
v-model="input"
|
|
6
|
+
:placeholder="select.placeholder"
|
|
7
|
+
:class="renderedRootClasses"
|
|
8
|
+
/>
|
|
9
|
+
</ComboboxAnchor>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script setup lang="ts">
|
|
13
|
+
import { ComboboxAnchor, ComboboxInput } from 'reka-ui';
|
|
14
|
+
import { computed } from 'vue';
|
|
15
|
+
import type { Ref } from 'vue';
|
|
16
|
+
|
|
17
|
+
import { classes, injectOrFail, injectReactiveOrFail } from '@aerogel/core/utils';
|
|
18
|
+
import type { SelectExpose } from '@aerogel/core/components/contracts/Select';
|
|
19
|
+
|
|
20
|
+
const select = injectReactiveOrFail<SelectExpose>('select', '<ComboboxTrigger> must be a child of a <Combobox>');
|
|
21
|
+
const input = injectOrFail<Ref<string>>('combobox-input');
|
|
22
|
+
const renderedRootClasses = computed(() =>
|
|
23
|
+
classes(
|
|
24
|
+
// eslint-disable-next-line vue/max-len
|
|
25
|
+
'block w-full rounded-md border-0 py-1.5 ring-1 ring-inset focus:ring-2 focus:ring-inset sm:text-sm sm:leading-6',
|
|
26
|
+
{
|
|
27
|
+
'mt-1': select.label,
|
|
28
|
+
'focus:ring-primary-600': !select.errors,
|
|
29
|
+
'text-gray-900 shadow-2xs ring-gray-900/10 placeholder:text-gray-400': !select.errors,
|
|
30
|
+
'pr-10 text-red-900 ring-red-900/10 placeholder:text-red-300 focus:ring-red-500': select.errors,
|
|
31
|
+
},
|
|
32
|
+
));
|
|
33
|
+
</script>
|
|
@@ -2,6 +2,11 @@ export { default as AdvancedOptions } from './AdvancedOptions.vue';
|
|
|
2
2
|
export { default as AlertModal } from './AlertModal.vue';
|
|
3
3
|
export { default as Button } from './Button.vue';
|
|
4
4
|
export { default as Checkbox } from './Checkbox.vue';
|
|
5
|
+
export { default as Combobox } from './Combobox.vue';
|
|
6
|
+
export { default as ComboboxLabel } from './ComboboxLabel.vue';
|
|
7
|
+
export { default as ComboboxOption } from './ComboboxOption.vue';
|
|
8
|
+
export { default as ComboboxOptions } from './ComboboxOptions.vue';
|
|
9
|
+
export { default as ComboboxTrigger } from './ComboboxTrigger.vue';
|
|
5
10
|
export { default as ConfirmModal } from './ConfirmModal.vue';
|
|
6
11
|
export { default as Details } from './Details.vue';
|
|
7
12
|
export { default as DropdownMenu } from './DropdownMenu.vue';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ProvideRef } from './ProvideRef.vue';
|