-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompany-input-v2.js
More file actions
170 lines (158 loc) · 4.91 KB
/
company-input-v2.js
File metadata and controls
170 lines (158 loc) · 4.91 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
/**
* Copyright 2017 OpenStack Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* */
import React from "react";
import PropTypes from "prop-types";
import { TextField, Autocomplete, Typography } from "@mui/material";
import { queryRegistrationCompanies } from "../../utils/query-actions";
const CompanyInputV2 = ({ summitId, isRequired, sx, onChange, id, name, label, value, error, helperText, onBlur, placeholder, options2Show, disableShrink, ...rest }) => {
const [inputValue, setInputValue] = React.useState("");
const [options, setOptions] = React.useState([]);
React.useEffect(() => {
if (inputValue === "") {
setOptions(value ? [value] : []);
return undefined;
}
queryRegistrationCompanies(summitId, inputValue, (results) => {
let newOptions = [];
if (value) {
newOptions = [value];
}
if (results) {
newOptions = [...newOptions, ...results];
}
setOptions(newOptions);
}, options2Show);
return undefined;
}, [value, inputValue]);
return (
<Autocomplete
sx={sx}
id={id}
name={name}
options={options}
autoComplete
freeSolo
includeInputInList
filterSelectedOptions
value={value}
onBlur={() => { if (onBlur) onBlur(name) }}
getOptionLabel={(option) => {
// Value selected with enter, right from the input
if (typeof option === "string") {
return option;
}
// Add "xxx" option created dynamically
if (option.inputValue) {
return option.inputValue;
}
// Regular option
return option.name;
}}
onChange={(_, newValue) => {
let tmpValue = newValue?.inputValue || newValue;
// empty option
if (newValue === null) {
tmpValue = { id: null, name: '' };
}
// if the company name is a string
else if (typeof newValue === 'string') {
tmpValue = { id: 0, name: newValue };
}
// if new option is selected ...
else if (newValue && typeof newValue === 'object' && newValue.inputValue) {
tmpValue = {
id: 0,
name: newValue.inputValue
};
}
setOptions(tmpValue ? [tmpValue, ...options] : options);
let ev = {
target: {
id: name,
value: tmpValue,
type: 'companyinput'
}
};
onChange(ev);
}}
onInputChange={(_, newInputValue) => {
setInputValue(newInputValue);
}}
filterOptions={(options, params) => {
const { inputValue } = params;
const filtered = [...options];
// Suggest the creation of a new value
const isExisting = options.some(
(option) => inputValue === option.title
);
if (inputValue !== "" && !isExisting) {
filtered.push({
inputValue,
name: `Select "${inputValue}"`
});
}
return filtered;
}}
renderInput={(params) => (
<TextField
/* eslint-disable-next-line react/jsx-props-no-spreading */
{...params}
label={label}
placeholder={placeholder}
fullWidth
required={isRequired}
helperText={helperText}
error={error}
margin="normal"
InputLabelProps={{ shrink: disableShrink }}
/>
)}
renderOption={(props, option) => {
const { key, ...optionProps } = props;
return (
// eslint-disable-next-line react/jsx-props-no-spreading
<li key={key} {...optionProps}>
<Typography
variant="body2"
sx={{ fontSize: "1em", color: "text.secondary" }}
>
{option.name}
</Typography>
</li>
);
}}
{...rest}
/>
);
};
CompanyInputV2.defaultProps = {
name: "GENERAL",
label: "Company",
options2Show: 20,
disableShrink: false
};
CompanyInputV2.propTypes = {
summitId: PropTypes.number.isRequired,
value: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
onChange: PropTypes.func.isRequired,
isRequired: PropTypes.bool,
name: PropTypes.string,
error: PropTypes.bool,
helperText: PropTypes.string,
onBlur: PropTypes.func,
options2Show: PropTypes.number,
placeholder: PropTypes.string,
label: PropTypes.string,
disableShrink: PropTypes.bool
};
export default CompanyInputV2;