-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathCreateProject.jsx
245 lines (223 loc) · 7.54 KB
/
CreateProject.jsx
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
import { EnterpriseBadge } from "@humansignal/ui";
import React from "react";
import { useHistory } from "react-router";
import { Button, ToggleItems } from "../../components";
import { Caption } from "../../components/Caption/Caption";
import { Input, Select, TextArea } from "../../components/Form";
import { HeidiTips } from "../../components/HeidiTips/HeidiTips";
import { createURL } from "../../components/HeidiTips/utils";
import { Modal } from "../../components/Modal/Modal";
import { Space } from "../../components/Space/Space";
import { useAPI } from "../../providers/ApiProvider";
import { cn } from "../../utils/bem";
import { FF_LSDV_E_297, isFF } from "../../utils/feature-flags";
import { ConfigPage } from "./Config/Config";
import { EMPTY_CONFIG } from "./Config/Template";
import "./CreateProject.scss";
import { ImportPage } from "./Import/Import";
import { useImportPage } from "./Import/useImportPage";
import { useDraftProject } from "./utils/useDraftProject";
const ProjectName = ({ name, setName, onSaveName, onSubmit, error, description, setDescription, show = true }) =>
!show ? null : (
<form
className={cn("project-name")}
onSubmit={(e) => {
e.preventDefault();
onSubmit();
}}
>
<div className="field field--wide">
<label htmlFor="project_name">Project Name</label>
<Input
name="name"
id="project_name"
value={name}
onChange={(e) => setName(e.target.value)}
onBlur={onSaveName}
/>
{error && <span className="error">{error}</span>}
</div>
<div className="field field--wide">
<label htmlFor="project_description">Description</label>
<TextArea
name="description"
id="project_description"
placeholder="Optional description of your project"
rows="4"
style={{ minHeight: 100 }}
value={description}
onChange={(e) => setDescription(e.target.value)}
/>
</div>
{isFF(FF_LSDV_E_297) && (
<div className="field field--wide">
<label>
Workspace
<EnterpriseBadge className="ml-2" />
</label>
<Select placeholder="Select an option" disabled options={[]} />
<Caption>
Simplify project management by organizing projects into workspaces.
<a
href={createURL(
"https://docs.humansignal.com/guide/manage_projects#Create-workspaces-to-organize-projects",
{
experiment: "project_creation_dropdown",
treatment: "simplify_project_management",
},
)}
target="_blank"
rel="noreferrer"
>
Learn more
</a>
</Caption>
<HeidiTips collection="projectCreation" />
</div>
)}
</form>
);
export const CreateProject = ({ onClose, redirect = true }) => {
const [step, _setStep] = React.useState("name"); // name | import | config
const [waiting, setWaitingStatus] = React.useState(false);
const { project, setProject: updateProject } = useDraftProject();
const history = useHistory();
const api = useAPI();
const [name, setName] = React.useState("");
const [error, setError] = React.useState();
const [description, setDescription] = React.useState("");
const [config, setConfig] = React.useState(EMPTY_CONFIG);
const [sample, setSample] = React.useState(null);
const setStep = React.useCallback((step) => {
_setStep(step);
const eventNameMap = {
name: "project_name",
import: "data_import",
config: "labeling_setup",
};
__lsa(`create_project.tab.${eventNameMap[step]}`);
}, []);
React.useEffect(() => {
setError(null);
}, [name]);
const { columns, uploading, uploadDisabled, finishUpload, pageProps, uploadSample } = useImportPage(project, sample);
const rootClass = cn("create-project");
const tabClass = rootClass.elem("tab");
const steps = {
name: <span className={tabClass.mod({ disabled: !!error })}>Project Name</span>,
import: <span className={tabClass.mod({ disabled: uploadDisabled })}>Data Import</span>,
config: "Labeling Setup",
};
// name intentionally skipped from deps:
// this should trigger only once when we got project loaded
React.useEffect(() => project && !name && setName(project.title), [project]);
const projectBody = React.useMemo(
() => ({
title: name,
description,
label_config: sample && sample.label_config ? sample.label_config : project?.label_config ?? EMPTY_CONFIG,
}),
[name, description, project?.label_config, sample],
);
const onCreate = React.useCallback(async () => {
const imported = await finishUpload();
if (!imported) return;
setWaitingStatus(true);
if (sample) {
await uploadSample(sample);
}
const response = await api.callApi("updateProject", {
params: {
pk: project.id,
},
body: projectBody,
});
setWaitingStatus(false);
if (response !== null) {
history.push(`/projects/${response.id}/data`);
}
}, [project, projectBody, finishUpload]);
const onSaveName = async () => {
if (error) return;
const res = await api.callApi("updateProjectRaw", {
params: {
pk: project.id,
},
body: {
title: name,
},
});
if (res.ok) return;
const err = await res.json();
setError(err.validation_errors?.title);
};
const onDelete = React.useCallback(async () => {
setWaitingStatus(true);
if (project)
await api.callApi("deleteProject", {
params: {
pk: project.id,
},
});
setWaitingStatus(false);
redirect && history.replace("/projects");
onClose?.();
}, [project, redirect]);
return (
<Modal onHide={onDelete} closeOnClickOutside={false} allowToInterceptEscape fullscreen visible bare>
<div className={rootClass}>
<Modal.Header>
<h1>Create Project</h1>
<ToggleItems items={steps} active={step} onSelect={setStep} />
<Space>
<Button look="danger" size="compact" onClick={onDelete} waiting={waiting}>
Delete
</Button>
<Button
look="primary"
size="compact"
onClick={onCreate}
waiting={waiting || uploading}
disabled={!project || uploadDisabled || error}
>
Save
</Button>
</Space>
</Modal.Header>
<ProjectName
name={name}
setName={setName}
error={error}
onSaveName={onSaveName}
onSubmit={onCreate}
description={description}
setDescription={setDescription}
show={step === "name"}
/>
<ImportPage
project={project}
show={step === "import"}
sample={sample}
onSampleDatasetSelect={(selectedSample) => {
setSample(selectedSample);
if (selectedSample?.label_config) {
setConfig(selectedSample.label_config);
}
}}
openLabelingConfig={() => setStep("config")}
hasLabelConfig={config && config !== EMPTY_CONFIG}
{...pageProps}
/>
<ConfigPage
project={project}
onUpdate={(config) => {
updateProject({ ...project, label_config: config });
}}
show={step === "config"}
columns={columns}
disableSaveButton={true}
/>
</div>
</Modal>
);
};