-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathImport.jsx
516 lines (469 loc) · 16.3 KB
/
Import.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
import { ff } from "@humansignal/core";
import { SampleDatasetSelect } from "@humansignal/core/blocks/SampleDatasetSelect/SampleDatasetSelect";
import { IconError, IconFileUpload, IconInfo, IconTrash, IconUpload } from "@humansignal/icons";
import { Badge } from "@humansignal/shad/components/ui/badge";
import { cn as scn } from "@humansignal/shad/utils";
import { CodeBlock, SimpleCard } from "@humansignal/ui";
import { Button } from "apps/labelstudio/src/components";
import { useAtomValue } from "jotai";
import Input from "libs/datamanager/src/components/Common/Input/Input";
import { useCallback, useEffect, useReducer, useRef, useState } from "react";
import { Modal } from "../../../components/Modal/Modal";
import { useAPI } from "../../../providers/ApiProvider";
import { cn } from "../../../utils/bem";
import { unique } from "../../../utils/helpers";
import { EMPTY_CONFIG } from "../Config/Template";
import { sampleDatasetAtom } from "../utils/atoms";
import "./Import.scss";
import samples from "./samples.json";
import { importFiles } from "./utils";
const importClass = cn("upload_page");
const dropzoneClass = cn("dropzone");
function flatten(nested) {
return [].concat(...nested);
}
// Keep in sync with core.settings.SUPPORTED_EXTENSIONS on the BE.
const supportedExtensions = {
text: ["txt"],
audio: ["wav", "mp3", "flac", "m4a", "ogg"],
video: ["mp4", "webp", "webm"],
image: ["jpg", "jpeg", "png", "gif", "bmp", "svg", "webp"],
html: ["html", "htm", "xml"],
timeSeries: ["csv", "tsv"],
common: ["csv", "tsv", "txt", "json"],
};
const allSupportedExtensions = flatten(Object.values(supportedExtensions));
function getFileExtension(fileName) {
if (!fileName) {
return fileName;
}
return fileName.split(".").pop().toLowerCase();
}
function traverseFileTree(item, path) {
return new Promise((resolve) => {
path = path || "";
if (item.isFile) {
// Avoid hidden files
if (item.name[0] === ".") return resolve([]);
resolve([item]);
} else if (item.isDirectory) {
// Get folder contents
const dirReader = item.createReader();
const dirPath = `${path + item.name}/`;
dirReader.readEntries((entries) => {
Promise.all(entries.map((entry) => traverseFileTree(entry, dirPath)))
.then(flatten)
.then(resolve);
});
}
});
}
function getFiles(files) {
// @todo this can be not a files, but text or any other draggable stuff
return new Promise((resolve) => {
if (!files.length) return resolve([]);
if (!files[0].webkitGetAsEntry) return resolve(files);
// Use DataTransferItemList interface to access the file(s)
const entries = Array.from(files).map((file) => file.webkitGetAsEntry());
Promise.all(entries.map(traverseFileTree))
.then(flatten)
.then((fileEntries) => fileEntries.map((fileEntry) => new Promise((res) => fileEntry.file(res))))
.then((filePromises) => Promise.all(filePromises))
.then(resolve);
});
}
const Footer = () => {
return (
<Modal.Footer className="import-footer">
<IconInfo className={scn(importClass.elem("info-icon"), "mr-1")} width="20" height="20" />
<span>
See the documentation to{" "}
<a target="_blank" href="https://labelstud.io/guide/predictions.html" rel="noreferrer">
import preannotated data
</a>{" "}
or to{" "}
<a target="_blank" href="https://labelstud.io/guide/storage.html" rel="noreferrer">
sync data from a database or cloud storage
</a>
.
</span>
</Modal.Footer>
);
};
const Upload = ({ children, sendFiles }) => {
const [hovered, setHovered] = useState(false);
const onHover = (e) => {
e.preventDefault();
setHovered(true);
};
const onLeave = setHovered.bind(null, false);
const dropzoneRef = useRef();
const onDrop = useCallback(
(e) => {
e.preventDefault();
onLeave();
getFiles(e.dataTransfer.items).then((files) => sendFiles(files));
},
[onLeave, sendFiles],
);
return (
<div
id="holder"
className={dropzoneClass.mod({ hovered })}
ref={dropzoneRef}
onDragStart={onHover}
onDragOver={onHover}
onDragLeave={onLeave}
onDrop={onDrop}
// {...getRootProps}
>
{children}
</div>
);
};
const ErrorMessage = ({ error }) => {
if (!error) return null;
let extra = error.validation_errors ?? error.extra;
// support all possible responses
if (extra && typeof extra === "object" && !Array.isArray(extra)) {
extra = extra.non_field_errors ?? Object.values(extra);
}
if (Array.isArray(extra)) extra = extra.join("; ");
return (
<div className={importClass.elem("error")}>
<IconError style={{ marginRight: 8 }} />
{error.id && `[${error.id}] `}
{error.detail || error.message}
{extra && ` (${extra})`}
</div>
);
};
export const ImportPage = ({
project,
sample,
show = true,
onWaiting,
onFileListUpdate,
onSampleDatasetSelect,
highlightCsvHandling,
dontCommitToProject = false,
csvHandling,
setCsvHandling,
addColumns,
hasLabelConfig,
openLabelingConfig,
}) => {
const [loading, setLoading] = useState(false);
const [error, setError] = useState();
const api = useAPI();
const projectConfigured = project?.label_config !== "<View></View>";
const sampleConfig = useAtomValue(sampleDatasetAtom);
const processFiles = (state, action) => {
if (action.sending) {
return { ...state, uploading: [...action.sending, ...state.uploading] };
}
if (action.sent) {
return { ...state, uploading: state.uploading.filter((f) => !action.sent.includes(f)) };
}
if (action.uploaded) {
return { ...state, uploaded: unique([...state.uploaded, ...action.uploaded], (a, b) => a.id === b.id) };
}
if (action.ids) {
const ids = unique([...state.ids, ...action.ids]);
onFileListUpdate?.(ids);
return { ...state, ids };
}
return state;
};
const [files, dispatch] = useReducer(processFiles, { uploaded: [], uploading: [], ids: [] });
const showList = Boolean(files.uploaded?.length || files.uploading?.length || sample);
const loadFilesList = useCallback(
async (file_upload_ids) => {
const query = {};
if (file_upload_ids) {
// should be stringified array "[1,2]"
query.ids = JSON.stringify(file_upload_ids);
}
const files = await api.callApi("fileUploads", {
params: { pk: project.id, ...query },
});
dispatch({ uploaded: files ?? [] });
if (files?.length) {
dispatch({ ids: files.map((f) => f.id) });
}
return files;
},
[project],
);
const onStart = () => {
setLoading(true);
setError(null);
};
const onError = (err) => {
console.error(err);
// @todo workaround for error about input size in a wrong html format
if (typeof err === "string" && err.includes("RequestDataTooBig")) {
const message = "Imported file is too big";
const extra = err.match(/"exception_value">(.*)<\/pre>/)?.[1];
err = { message, extra };
}
setError(err);
setLoading(false);
onWaiting?.(false);
};
const onFinish = useCallback(
async (res) => {
const { could_be_tasks_list, data_columns, file_upload_ids } = res;
dispatch({ ids: file_upload_ids });
if (could_be_tasks_list && !csvHandling) setCsvHandling("choose");
setLoading(true);
onWaiting?.(false);
addColumns(data_columns);
return loadFilesList(file_upload_ids).then(() => setLoading(false));
},
[addColumns, loadFilesList, setLoading],
);
const importFilesImmediately = useCallback(
async (files, body) => {
importFiles({
files,
body,
project,
onError,
onFinish,
onUploadStart: (files) => dispatch({ sending: files }),
onUploadFinish: (files) => dispatch({ sent: files }),
dontCommitToProject,
});
},
[project, onFinish],
);
const sendFiles = useCallback(
(files) => {
onStart();
onWaiting?.(true);
files = [...files]; // they can be array-like object
const fd = new FormData();
for (const f of files) {
if (!allSupportedExtensions.includes(getFileExtension(f.name))) {
onError(new Error(`The filetype of file "${f.name}" is not supported.`));
return;
}
fd.append(f.name, f);
}
return importFilesImmediately(files, fd);
},
[importFilesImmediately, onStart],
);
const onUpload = useCallback(
(e) => {
sendFiles(e.target.files);
e.target.value = "";
},
[sendFiles],
);
const onLoadURL = useCallback(
(e) => {
e.preventDefault();
onStart();
const url = urlRef.current?.value;
if (!url) {
setLoading(false);
return;
}
urlRef.current.value = "";
onWaiting?.(true);
const body = new URLSearchParams({ url });
importFilesImmediately([{ name: url }], body);
},
[importFilesImmediately],
);
const openConfig = useCallback(
(e) => {
e.preventDefault();
e.stopPropagation();
openLabelingConfig?.();
},
[openLabelingConfig],
);
useEffect(() => {
if (project?.id !== undefined) {
loadFilesList().then((files) => {
if (csvHandling) return;
// empirical guess on start if we have some possible tasks list/time series problem
if (Array.isArray(files) && files.some(({ file }) => /\.[ct]sv$/.test(file))) {
setCsvHandling("choose");
}
});
}
}, [project, loadFilesList]);
const urlRef = useRef();
if (!project) return null;
if (!show) return null;
const csvProps = {
name: "csv",
type: "radio",
onChange: (e) => setCsvHandling(e.target.value),
};
return (
<div className={importClass}>
{highlightCsvHandling && <div className={importClass.elem("csv-splash")} />}
<input id="file-input" type="file" name="file" multiple onChange={onUpload} style={{ display: "none" }} />
<header className="flex gap-4">
<form className={`${importClass.elem("url-form")} inline-flex`} method="POST" onSubmit={onLoadURL}>
<Input placeholder="Dataset URL" name="url" ref={urlRef} style={{ height: 40 }} />
<Button type="submit" look="primary">
Add URL
</Button>
</form>
<span>or</span>
<Button
type="button"
onClick={() => document.getElementById("file-input").click()}
className={importClass.elem("upload-button")}
>
<IconUpload width="16" height="16" className={importClass.elem("upload-icon")} />
Upload {files.uploaded.length ? "More " : ""}Files
</Button>
{ff.isActive(ff.FF_SAMPLE_DATASETS) && (
<SampleDatasetSelect
samples={samples}
sample={sample}
onSampleApplied={onSampleDatasetSelect}
warningMessage={
hasLabelConfig || (project?.label_config && project.label_config !== EMPTY_CONFIG)
? "Selecting a sample dataset will overwrite your current labeling configuration."
: undefined
}
/>
)}
<div
className={importClass.elem("csv-handling").mod({ highlighted: highlightCsvHandling, hidden: !csvHandling })}
>
<span>Treat CSV/TSV as</span>
<label>
<input {...csvProps} value="tasks" checked={csvHandling === "tasks"} /> List of tasks
</label>
<label>
<input {...csvProps} value="ts" checked={csvHandling === "ts"} /> Time Series or Whole Text File
</label>
</div>
<div className={importClass.elem("status")}>
{files.uploaded.length ? `${files.uploaded.length} files uploaded` : ""}
</div>
</header>
<ErrorMessage error={error} />
<main>
<Upload sendFiles={sendFiles} project={project}>
{!showList && (
<div className="flex gap-4 justify-center items-start">
<label htmlFor="file-input">
<div className={dropzoneClass.elem("content")}>
<header>
Drag & drop files here
<br />
or click to browse
</header>
<IconFileUpload height="64" className={dropzoneClass.elem("icon")} />
<dl>
<dt>Text</dt>
<dd>{supportedExtensions.text.join(", ")}</dd>
<dt>Audio</dt>
<dd>{supportedExtensions.audio.join(", ")}</dd>
<dt>Video</dt>
<dd>mpeg4/H.264 webp, webm* {/* Keep in sync with supportedExtensions.video */}</dd>
<dt>Images</dt>
<dd>{supportedExtensions.image.join(", ")}</dd>
<dt>HTML</dt>
<dd>{supportedExtensions.html.join(", ")}</dd>
<dt>Time Series</dt>
<dd>{supportedExtensions.timeSeries.join(", ")}</dd>
<dt>Common Formats</dt>
<dd>{supportedExtensions.common.join(", ")}</dd>
</dl>
<b>
* – Support depends on the browser
<br />* – Direct media uploads have{" "}
<a href="https://labelstud.io/guide/tasks.html#Import-data-from-the-Label-Studio-UI">limitations</a>{" "}
and we strongly recommend using{" "}
<a href="https://labelstud.io/guide/storage.html" target="_blank" rel="noreferrer">
Cloud Storage
</a>{" "}
instead
</b>
</div>
</label>
{projectConfigured && ff.isFF(ff.FF_SAMPLE_DATASETS) ? (
<CodeBlock
title="Expected input preview"
code={sampleConfig?.data ?? ""}
className="w-full max-w-[650px]"
/>
) : ff.isFF(ff.FF_SAMPLE_DATASETS) ? (
<SimpleCard title="Expected input preview" className="w-full max-w-[650px]">
Set up your{" "}
<button
type="button"
look="link"
onClick={openConfig}
className="border-none bg-none p-0 m-0 text-lsPrimaryContent underline"
>
labeling configuration
</button>{" "}
to generate an input preview.
</SimpleCard>
) : null}
</div>
)}
{showList && (
<table>
<tbody>
{sample && (
<tr key={sample.url}>
<td>
<div className="flex items-center gap-2">
{sample.title}
<Badge variant="info" className="h-5 text-xs rounded-sm">
Sample
</Badge>
</div>
</td>
<td>{sample.description}</td>
<td>
<Button
size="icon"
look="destructive"
style={{ height: 26, width: 26, padding: 0 }}
onClick={() => onSampleDatasetSelect(undefined)}
>
<IconTrash style={{ width: 12, height: 12 }} />
</Button>
</td>
</tr>
)}
{files.uploading.map((file, idx) => (
<tr key={`${idx}-${file.name}`}>
<td>{file.name}</td>
<td colSpan={2}>
<span className={importClass.elem("file-status").mod({ uploading: true })} />
</td>
</tr>
))}
{files.uploaded.map((file) => (
<tr key={file.file}>
<td>{file.file}</td>
<td>
<span className={importClass.elem("file-status")} />
</td>
<td>{file.size}</td>
</tr>
))}
</tbody>
</table>
)}
</Upload>
</main>
<Footer />
</div>
);
};