-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathStringAttributeValueField.tsx
129 lines (119 loc) · 3.24 KB
/
StringAttributeValueField.tsx
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
import AddIcon from "@mui/icons-material/Add";
import DeleteOutlineIcon from "@mui/icons-material/DeleteOutline";
import { Box, IconButton, List, ListItem, TextField } from "@mui/material";
import { styled } from "@mui/material/styles";
import React, { FC, useEffect } from "react";
import { Control, useFieldArray, Controller } from "react-hook-form";
import { Schema } from "./EntryFormSchema";
const StyledList = styled(List)(({}) => ({
padding: "0",
}));
const StyledBox = styled(Box)(({}) => ({
display: "flex",
width: "100%",
gap: "0 12px",
}));
interface CommonProps {
attrId: number;
index?: number;
control: Control<Schema>;
isDisabled?: boolean;
}
export const StringAttributeValueField: FC<
CommonProps & {
handleClickDeleteListItem?: (index: number) => void;
handleClickAddListItem?: (index: number) => void;
multiline?: boolean;
}
> = ({
attrId,
index,
control,
handleClickDeleteListItem,
handleClickAddListItem,
multiline,
isDisabled = false,
}) => {
return (
<StyledBox>
<Controller
name={
index != null
? `attrs.${attrId}.value.asArrayString.${index}.value`
: `attrs.${attrId}.value.asString`
}
control={control}
defaultValue=""
render={({ field, fieldState: { error } }) => (
<TextField
{...field}
variant="standard"
error={error != null}
helperText={error?.message}
fullWidth
multiline={multiline}
minRows={multiline === true ? 5 : 1}
disabled={isDisabled}
/>
)}
/>
{index !== undefined && (
<>
{handleClickDeleteListItem != null && (
<IconButton
id="del_button"
onClick={() => handleClickDeleteListItem(index)}
>
<DeleteOutlineIcon />
</IconButton>
)}
{handleClickAddListItem != null && (
<IconButton
id="add_button"
onClick={() => handleClickAddListItem(index)}
>
<AddIcon />
</IconButton>
)}
</>
)}
</StyledBox>
);
};
export const ArrayStringAttributeValueField: FC<CommonProps> = ({
attrId,
control,
}) => {
const { fields, insert, remove } = useFieldArray({
control,
name: `attrs.${attrId}.value.asArrayString`,
});
useEffect(() => {
if (fields.length === 0) {
handleClickAddListItem(0);
}
}, []);
const handleClickAddListItem = (index: number) => {
// TODO fix the type error; its misrecognizing the type of fields as object-like type
insert(index + 1, { value: "" });
};
const handleClickDeleteListItem = (index: number) => {
remove(index);
fields.length === 1 && handleClickAddListItem(0);
};
return (
<StyledList>
{fields.map((field, index) => (
<ListItem key={field.id} disablePadding={true}>
<StringAttributeValueField
control={control}
attrId={attrId}
index={index}
handleClickDeleteListItem={handleClickDeleteListItem}
handleClickAddListItem={handleClickAddListItem}
/>
</ListItem>
))}
</StyledList>
);
};