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
|
import type { ReactNode } from 'react';
import { useEffect } from 'react';
import { Box, Checkbox, Field, Flex, Typography } from '@strapi/design-system';
import { useIntl } from 'react-intl';
type CheckboxListInputProps = {
name: string;
value?: unknown;
onChange: (
eventOrPath: { target: { name: string; value: string[] | null } },
value?: unknown
) => void;
attribute?: {
enum?: string[];
options?: {
enum?: string[];
};
} | null;
label?: ReactNode;
hint?: ReactNode;
required?: boolean;
disabled?: boolean;
error?: string;
labelAction?: ReactNode;
};
const getEnumValues = (attribute: CheckboxListInputProps['attribute']): string[] => {
if (!attribute) {
return [];
}
if (Array.isArray(attribute.options?.enum)) {
return attribute.options.enum;
}
if (Array.isArray(attribute.enum)) {
return attribute.enum;
}
return [];
};
const normalizeValue = (value: unknown): string[] => {
if (Array.isArray(value)) {
return value.filter((item): item is string => typeof item === 'string');
}
if (typeof value === 'string' && value.length > 0) {
return [value];
}
return [];
};
const CheckboxListInput = ({
name,
value,
onChange,
attribute,
label,
hint,
required = false,
disabled = false,
error,
labelAction,
}: CheckboxListInputProps) => {
const { formatMessage } = useIntl();
const enumValues = getEnumValues(attribute);
const selectedValues = normalizeValue(value);
useEffect(() => {
if (!required) {
return;
}
if (Array.isArray(value) && value.length === 0) {
onChange({
target: {
name,
value: null,
},
});
}
}, [name, onChange, required, value]);
const handleToggle = (option: string, isChecked: boolean) => {
const nextValues = isChecked
? Array.from(new Set([...selectedValues, option]))
: selectedValues.filter((item) => item !== option);
onChange({
target: {
name,
value: required && nextValues.length === 0 ? null : nextValues,
},
});
};
return (
<Field.Root name={name} hint={hint} error={error} required={required}>
<Field.Label action={labelAction}>{label ?? name}</Field.Label>
{enumValues.length > 0 ? (
<Flex direction="column" gap={2} paddingTop={1} alignItems="flex-start">
{enumValues.map((option) => (
<Checkbox
key={option}
checked={selectedValues.includes(option)}
disabled={disabled}
onCheckedChange={(checked: boolean | 'indeterminate') =>
handleToggle(option, Boolean(checked))
}
>
{option}
</Checkbox>
))}
</Flex>
) : (
<Box paddingTop={1}>
<Typography variant="pi" textColor="neutral500">
{formatMessage({
id: 'checkbox-list.field.empty',
defaultMessage: 'No values configured yet.',
})}
</Typography>
</Box>
)}
<Field.Error />
<Field.Hint />
</Field.Root>
);
};
export default CheckboxListInput;
|