@transferwise/components 0.0.0-experimental-e0e44ba → 0.0.0-experimental-9cff936
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dateInput/DateInput.js +3 -0
- package/build/dateInput/DateInput.js.map +1 -1
- package/build/dateInput/DateInput.mjs +3 -0
- package/build/dateInput/DateInput.mjs.map +1 -1
- package/build/main.css +210 -210
- package/build/styles/main.css +210 -210
- package/build/styles/uploadInput/UploadInput.css +81 -13
- package/build/styles/uploadInput/uploadButton/UploadButton.css +31 -78
- package/build/styles/uploadInput/uploadItem/UploadItem.css +109 -130
- package/build/types/dateInput/DateInput.d.ts.map +1 -1
- package/build/types/uploadInput/UploadInput.d.ts.map +1 -1
- package/build/types/uploadInput/uploadButton/UploadButton.d.ts +1 -6
- package/build/types/uploadInput/uploadButton/UploadButton.d.ts.map +1 -1
- package/build/uploadInput/UploadInput.js +16 -26
- package/build/uploadInput/UploadInput.js.map +1 -1
- package/build/uploadInput/UploadInput.mjs +16 -26
- package/build/uploadInput/UploadInput.mjs.map +1 -1
- package/build/uploadInput/uploadButton/UploadButton.js +31 -24
- package/build/uploadInput/uploadButton/UploadButton.js.map +1 -1
- package/build/uploadInput/uploadButton/UploadButton.mjs +31 -24
- package/build/uploadInput/uploadButton/UploadButton.mjs.map +1 -1
- package/build/uploadInput/uploadItem/UploadItem.js +37 -30
- package/build/uploadInput/uploadItem/UploadItem.js.map +1 -1
- package/build/uploadInput/uploadItem/UploadItem.mjs +38 -31
- package/build/uploadInput/uploadItem/UploadItem.mjs.map +1 -1
- package/build/uploadInput/uploadItem/UploadItemLink.js +1 -2
- package/build/uploadInput/uploadItem/UploadItemLink.js.map +1 -1
- package/build/uploadInput/uploadItem/UploadItemLink.mjs +1 -2
- package/build/uploadInput/uploadItem/UploadItemLink.mjs.map +1 -1
- package/package.json +3 -3
- package/src/actionOption/ActionOption.story.tsx +15 -11
- package/src/checkboxOption/CheckboxOption.story.tsx +4 -2
- package/src/dateInput/DateInput.tsx +3 -0
- package/src/main.css +210 -210
- package/src/navigationOption/NavigationOption.story.js +4 -2
- package/src/radioOption/RadioOption.story.tsx +4 -2
- package/src/switchOption/SwitchOption.story.tsx +4 -2
- package/src/uploadInput/UploadInput.css +81 -13
- package/src/uploadInput/UploadInput.less +79 -17
- package/src/uploadInput/UploadInput.tests.story.tsx +3 -8
- package/src/uploadInput/UploadInput.tsx +28 -38
- package/src/uploadInput/uploadButton/UploadButton.css +31 -78
- package/src/uploadInput/uploadButton/UploadButton.less +35 -78
- package/src/uploadInput/uploadButton/UploadButton.tsx +25 -36
- package/src/uploadInput/uploadItem/UploadItem.css +109 -130
- package/src/uploadInput/uploadItem/UploadItem.less +118 -129
- package/src/uploadInput/uploadItem/UploadItem.tsx +27 -27
- package/src/uploadInput/uploadItem/UploadItemLink.tsx +3 -3
|
@@ -3,28 +3,90 @@
|
|
|
3
3
|
@import (reference) './uploadItem/UploadItem.less';
|
|
4
4
|
|
|
5
5
|
.np-upload-input {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
&.form-control {
|
|
7
|
+
height: auto;
|
|
8
|
+
padding: initial;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
& > div {
|
|
12
|
+
&:first-child,
|
|
13
|
+
&:first-child .np-upload-item--single-file,
|
|
14
|
+
&:first-child .np-upload-item--link {
|
|
15
|
+
border-top-left-radius: var(--radius-small);
|
|
16
|
+
border-top-right-radius: var(--radius-small);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&:last-child {
|
|
20
|
+
border-bottom-left-radius: var(--radius-small);
|
|
21
|
+
border-bottom-right-radius: var(--radius-small);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
8
25
|
|
|
9
|
-
|
|
10
|
-
|
|
26
|
+
.np-theme-personal {
|
|
27
|
+
.np-upload-input {
|
|
28
|
+
&.disabled .btn {
|
|
29
|
+
cursor: inherit;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.np-upload-icon {
|
|
33
|
+
color: var(--color-interactive-primary);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.media-body {
|
|
37
|
+
padding-right: var(--size-32);
|
|
38
|
+
color: var(--color-content-link);
|
|
39
|
+
white-space: break-spaces;
|
|
40
|
+
|
|
41
|
+
@media (--screen-400-zoom) {
|
|
42
|
+
padding-right: var(--size-64);
|
|
43
|
+
}
|
|
11
44
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
45
|
+
.np-text-body-large-bold {
|
|
46
|
+
text-decoration: underline;
|
|
47
|
+
.link-underline();
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.np-text-body-default,
|
|
51
|
+
.np-upload-description,
|
|
52
|
+
.text-positive {
|
|
53
|
+
color: var(--color-content-secondary) !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.text-negative {
|
|
57
|
+
color: var(--color-sentiment-negative) !important;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&-errors {
|
|
62
|
+
list-style: none;
|
|
63
|
+
padding-left: 0;
|
|
64
|
+
|
|
65
|
+
li {
|
|
66
|
+
position: relative;
|
|
67
|
+
padding-left: var(--size-16);
|
|
68
|
+
|
|
69
|
+
@media (--screen-400-zoom) {
|
|
70
|
+
padding-left: var(--size-32);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&:before {
|
|
74
|
+
content: '•';
|
|
75
|
+
position: absolute;
|
|
76
|
+
display: block;
|
|
77
|
+
left: 0;
|
|
78
|
+
}
|
|
17
79
|
}
|
|
18
80
|
}
|
|
19
81
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
82
|
+
.status-circle {
|
|
83
|
+
width: var(--size-x-small);
|
|
84
|
+
height: var(--size-x-small);
|
|
85
|
+
|
|
86
|
+
@media (--screen-400-zoom) {
|
|
87
|
+
width: var(--size-large);
|
|
88
|
+
height: var(--size-large);
|
|
89
|
+
}
|
|
28
90
|
}
|
|
29
91
|
}
|
|
30
92
|
}
|
|
@@ -26,23 +26,18 @@ const files = [
|
|
|
26
26
|
url: 'https://wise.com/public-resources/assets/logos/wise/brand_logo_inverse.svg',
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
id:
|
|
30
|
-
filename: 'purchase-receipt-2.pdf',
|
|
31
|
-
url: 'https://wise.com/public-resources/assets/logos/wise/brand_logo_inverse.svg',
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
id: 4,
|
|
29
|
+
id: 2,
|
|
35
30
|
filename: 'receipt failed.png',
|
|
36
31
|
status: Status.FAILED,
|
|
37
32
|
},
|
|
38
33
|
{
|
|
39
|
-
id:
|
|
34
|
+
id: 3,
|
|
40
35
|
filename: 'receipt failed With error string.png',
|
|
41
36
|
status: Status.FAILED,
|
|
42
37
|
error: 'Something went wrong',
|
|
43
38
|
},
|
|
44
39
|
{
|
|
45
|
-
id:
|
|
40
|
+
id: 4,
|
|
46
41
|
filename: 'receipt failed With error object.png',
|
|
47
42
|
status: Status.FAILED,
|
|
48
43
|
error: { message: 'Something went wrong' },
|
|
@@ -307,45 +307,35 @@ const UploadInput = ({
|
|
|
307
307
|
className={clsx('np-upload-input', className, { disabled })}
|
|
308
308
|
{...inputAttributes}
|
|
309
309
|
>
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
(
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
? () => removeFile(file)
|
|
328
|
-
: () => setMarkedFileForDelete(file)
|
|
329
|
-
}
|
|
330
|
-
onDownload={onDownload}
|
|
331
|
-
/>
|
|
332
|
-
))}
|
|
333
|
-
</div>
|
|
310
|
+
{uploadedFiles.map((file) => (
|
|
311
|
+
<UploadItem
|
|
312
|
+
key={file.id}
|
|
313
|
+
file={file}
|
|
314
|
+
singleFileUpload={!multiple}
|
|
315
|
+
canDelete={
|
|
316
|
+
(!!onDeleteFile || file.status === Status.FAILED) &&
|
|
317
|
+
(!file.status || !PROGRESS_STATUSES.has(file.status))
|
|
318
|
+
}
|
|
319
|
+
onDelete={
|
|
320
|
+
file.status === Status.FAILED
|
|
321
|
+
? () => removeFile(file)
|
|
322
|
+
: () => setMarkedFileForDelete(file)
|
|
323
|
+
}
|
|
324
|
+
onDownload={onDownload}
|
|
325
|
+
/>
|
|
326
|
+
))}
|
|
334
327
|
{(multiple || (!multiple && !uploadedFiles.length)) && (
|
|
335
|
-
<
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
onChange={addFiles}
|
|
347
|
-
/>
|
|
348
|
-
</div>
|
|
328
|
+
<UploadButton
|
|
329
|
+
id={id}
|
|
330
|
+
uploadButtonTitle={uploadButtonTitle}
|
|
331
|
+
disabled={areMaximumFilesUploadedAlready() || disabled}
|
|
332
|
+
multiple={multiple}
|
|
333
|
+
fileTypes={fileTypes}
|
|
334
|
+
sizeLimit={sizeLimit}
|
|
335
|
+
description={description}
|
|
336
|
+
maxFiles={maxFiles}
|
|
337
|
+
onChange={addFiles}
|
|
338
|
+
/>
|
|
349
339
|
)}
|
|
350
340
|
</div>
|
|
351
341
|
<Modal
|
|
@@ -1,91 +1,44 @@
|
|
|
1
|
-
.np-upload-
|
|
2
|
-
|
|
3
|
-
padding: 16px;
|
|
4
|
-
padding: var(--size-16);
|
|
5
|
-
display: flex;
|
|
6
|
-
align-items: center;
|
|
7
|
-
margin: 0;
|
|
8
|
-
border-bottom-left-radius: 10px;
|
|
9
|
-
border-bottom-left-radius: var(--radius-small);
|
|
10
|
-
border-bottom-right-radius: 10px;
|
|
11
|
-
border-bottom-right-radius: var(--radius-small);
|
|
12
|
-
border: var(--outerBorder);
|
|
13
|
-
cursor: pointer;
|
|
14
|
-
}
|
|
15
|
-
.np-upload-input__upload-button .np-upload-input__title {
|
|
16
|
-
color: var(--color-content-link);
|
|
17
|
-
-webkit-text-decoration: underline;
|
|
18
|
-
text-decoration: underline;
|
|
19
|
-
text-underline-offset: 0.3em;
|
|
20
|
-
}
|
|
21
|
-
.np-upload-input__upload-button .np-upload-input__title + .np-upload-input__text {
|
|
22
|
-
margin-top: 4px;
|
|
23
|
-
margin-top: var(--size-4);
|
|
24
|
-
line-height: 22px;
|
|
1
|
+
.np-upload-button-container {
|
|
2
|
+
border-style: solid;
|
|
25
3
|
}
|
|
26
|
-
.np-upload-
|
|
27
|
-
|
|
28
|
-
padding-right: var(--size-16);
|
|
29
|
-
color: var(--color-interactive-primary);
|
|
4
|
+
.np-upload-button-container .droppable-card-content {
|
|
5
|
+
display: flex;
|
|
30
6
|
}
|
|
31
|
-
.np-upload-
|
|
32
|
-
|
|
33
|
-
|
|
7
|
+
.np-upload-button-container.droppable-dropping {
|
|
8
|
+
border-color: #c9cbce !important;
|
|
9
|
+
border-color: var(--color-interactive-secondary) !important;
|
|
34
10
|
}
|
|
35
|
-
.np-upload-
|
|
36
|
-
|
|
37
|
-
outline: var(--ring-outline-color) solid 3px;
|
|
38
|
-
outline-offset: -3px;
|
|
11
|
+
.np-upload-button-container.droppable-dropping:before {
|
|
12
|
+
z-index: 2;
|
|
39
13
|
}
|
|
40
|
-
.np-upload-
|
|
41
|
-
position: absolute;
|
|
14
|
+
.np-upload-button-container input[type="file"] {
|
|
42
15
|
opacity: 0;
|
|
43
16
|
z-index: -1;
|
|
17
|
+
position: absolute;
|
|
44
18
|
}
|
|
45
|
-
.np-upload-
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
.np-upload-input__upload-button .np-upload-input__drop-file-overlay {
|
|
49
|
-
display: flex;
|
|
50
|
-
flex: 1;
|
|
51
|
-
padding: 13px 0 !important;
|
|
52
|
-
background-color: transparent;
|
|
53
|
-
transition: transform 0.3s ease;
|
|
54
|
-
position: relative;
|
|
55
|
-
}
|
|
56
|
-
.np-upload-input__upload-button--with-entries {
|
|
57
|
-
border-top-width: 0;
|
|
19
|
+
.np-upload-button-container .np-upload-button {
|
|
20
|
+
border: none;
|
|
58
21
|
}
|
|
59
|
-
.np-upload-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
content: " ";
|
|
66
|
-
left: 16px;
|
|
67
|
-
left: var(--size-16);
|
|
68
|
-
width: calc(100% - 2 * 16px);
|
|
69
|
-
width: calc(100% - 2 * var(--size-16));
|
|
70
|
-
top: 0;
|
|
22
|
+
.np-upload-button {
|
|
23
|
+
width: 100%;
|
|
24
|
+
border-top: 1px solid transparent;
|
|
25
|
+
padding: 16px;
|
|
26
|
+
padding: var(--padding-small);
|
|
27
|
+
border-radius: 0;
|
|
71
28
|
}
|
|
72
|
-
.np-upload-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
border-radius: var(--radius-small);
|
|
29
|
+
label.np-upload-button:not(.disabled):hover,
|
|
30
|
+
label.np-upload-button:not(.disabled):active {
|
|
31
|
+
background-color: var(--color-background-screen-hover);
|
|
76
32
|
}
|
|
77
|
-
.np-upload-
|
|
78
|
-
.np-upload-
|
|
79
|
-
|
|
80
|
-
background: rgba(134,167,189,0.10196);
|
|
81
|
-
background: var(--color-background-neutral);
|
|
33
|
+
.disabled label.np-upload-button:not(.disabled):hover,
|
|
34
|
+
.disabled label.np-upload-button:not(.disabled):active {
|
|
35
|
+
background-color: transparent;
|
|
82
36
|
}
|
|
83
|
-
.np-upload-
|
|
84
|
-
|
|
85
|
-
.np-upload-input__upload-button--enabled:active:before {
|
|
86
|
-
width: 100%;
|
|
87
|
-
left: 0;
|
|
37
|
+
.np-upload-button .media {
|
|
38
|
+
align-items: flex-start;
|
|
88
39
|
}
|
|
89
|
-
|
|
90
|
-
|
|
40
|
+
@media (max-width: 320px) {
|
|
41
|
+
.np-upload-icon {
|
|
42
|
+
padding-left: 0;
|
|
43
|
+
}
|
|
91
44
|
}
|
|
@@ -1,98 +1,55 @@
|
|
|
1
|
-
.np-upload-
|
|
2
|
-
|
|
3
|
-
padding: var(--size-16);
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: center;
|
|
6
|
-
margin: 0;
|
|
7
|
-
border-bottom-left-radius: var(--radius-small);
|
|
8
|
-
border-bottom-right-radius: var(--radius-small);
|
|
9
|
-
border: var(--outerBorder);
|
|
10
|
-
cursor: pointer;
|
|
1
|
+
.np-upload-button-container {
|
|
2
|
+
border-style: solid;
|
|
11
3
|
|
|
12
|
-
.
|
|
13
|
-
|
|
14
|
-
text-decoration: underline;
|
|
15
|
-
text-underline-offset: 0.3em;
|
|
16
|
-
|
|
17
|
-
& + .np-upload-input__text {
|
|
18
|
-
margin-top: var(--size-4);
|
|
19
|
-
line-height: 22px;
|
|
20
|
-
}
|
|
4
|
+
.droppable-card-content {
|
|
5
|
+
display: flex;
|
|
21
6
|
}
|
|
22
7
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
color: var(--color-interactive-primary);
|
|
26
|
-
}
|
|
8
|
+
&.droppable-dropping {
|
|
9
|
+
border-color: var(--color-interactive-secondary) !important;
|
|
27
10
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
.np-upload-input__item-content {
|
|
31
|
-
display: none;
|
|
11
|
+
&:before {
|
|
12
|
+
z-index: 2;
|
|
32
13
|
}
|
|
33
14
|
}
|
|
34
15
|
|
|
35
|
-
|
|
36
|
-
&:focus-visible {
|
|
37
|
-
outline: var(--ring-outline-color) solid 3px;
|
|
38
|
-
outline-offset: -3px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
&-input {
|
|
42
|
-
position: absolute;
|
|
16
|
+
input[type="file"] {
|
|
43
17
|
opacity: 0;
|
|
44
18
|
z-index: -1;
|
|
45
|
-
|
|
46
|
-
&:focus {
|
|
47
|
-
outline: none;
|
|
48
|
-
}
|
|
19
|
+
position: absolute;
|
|
49
20
|
}
|
|
50
21
|
|
|
51
|
-
.np-upload-
|
|
52
|
-
|
|
53
|
-
flex: 1;
|
|
54
|
-
padding: 13px 0 !important;
|
|
55
|
-
background-color: transparent;
|
|
56
|
-
transition: transform 0.3s ease;
|
|
57
|
-
position: relative;
|
|
22
|
+
.np-upload-button {
|
|
23
|
+
border: none;
|
|
58
24
|
}
|
|
59
25
|
}
|
|
60
26
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
border-top
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
27
|
+
.np-upload-button {
|
|
28
|
+
width: 100%;
|
|
29
|
+
border-top: 1px solid transparent;
|
|
30
|
+
padding: var(--padding-small);
|
|
31
|
+
border-radius: 0;
|
|
32
|
+
|
|
33
|
+
label& {
|
|
34
|
+
&:not(.disabled) {
|
|
35
|
+
&:hover,
|
|
36
|
+
&:active {
|
|
37
|
+
background-color: var(--color-background-screen-hover);
|
|
38
|
+
|
|
39
|
+
.disabled & {
|
|
40
|
+
background-color: transparent;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
74
44
|
}
|
|
75
|
-
}
|
|
76
45
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
border-top: var(--outerBorder);
|
|
80
|
-
border-radius: var(--radius-small);
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.np-upload-input__upload-button--enabled {
|
|
84
|
-
&.is-dropping,
|
|
85
|
-
&:hover,
|
|
86
|
-
&:active {
|
|
87
|
-
background: var(--color-background-neutral);
|
|
88
|
-
|
|
89
|
-
&:before {
|
|
90
|
-
width: 100%;
|
|
91
|
-
left: 0;
|
|
92
|
-
}
|
|
46
|
+
.media {
|
|
47
|
+
align-items: flex-start;
|
|
93
48
|
}
|
|
94
49
|
}
|
|
95
50
|
|
|
96
|
-
.np-upload-
|
|
97
|
-
|
|
51
|
+
.np-upload-icon{
|
|
52
|
+
@media (max-width: 320px) {
|
|
53
|
+
padding-left: 0;
|
|
54
|
+
}
|
|
98
55
|
}
|
|
@@ -17,12 +17,6 @@ export type UploadButtonProps = {
|
|
|
17
17
|
*/
|
|
18
18
|
disabled?: boolean;
|
|
19
19
|
|
|
20
|
-
/**
|
|
21
|
-
* Should be true, if the UploadInput has at least 1
|
|
22
|
-
* file (valid or invalid) listed.
|
|
23
|
-
*/
|
|
24
|
-
withEntries?: boolean;
|
|
25
|
-
|
|
26
20
|
/**
|
|
27
21
|
* Allow multiple file uploads
|
|
28
22
|
*/
|
|
@@ -78,7 +72,6 @@ const onDragOver = (event: DragEvent): void => {
|
|
|
78
72
|
const DEFAULT_FILE_INPUT_ID = 'np-upload-button';
|
|
79
73
|
const UploadButton = ({
|
|
80
74
|
disabled,
|
|
81
|
-
withEntries,
|
|
82
75
|
multiple,
|
|
83
76
|
description,
|
|
84
77
|
fileTypes = imageFileTypes,
|
|
@@ -176,7 +169,7 @@ const UploadButton = ({
|
|
|
176
169
|
|
|
177
170
|
function renderDescription() {
|
|
178
171
|
return (
|
|
179
|
-
<Body className=
|
|
172
|
+
<Body className={clsx({ 'text-primary': !disabled })}>
|
|
180
173
|
{getDescription()}
|
|
181
174
|
{maxFiles && (
|
|
182
175
|
<>
|
|
@@ -196,53 +189,49 @@ const UploadButton = ({
|
|
|
196
189
|
}
|
|
197
190
|
|
|
198
191
|
return (
|
|
199
|
-
<
|
|
200
|
-
className={clsx(
|
|
201
|
-
'
|
|
202
|
-
|
|
203
|
-
`np-upload-input__upload-button--${withEntries ? 'with' : 'without'}-entries`,
|
|
204
|
-
{
|
|
205
|
-
'is-dropping': isDropping,
|
|
206
|
-
},
|
|
207
|
-
)}
|
|
208
|
-
htmlFor={id}
|
|
192
|
+
<div
|
|
193
|
+
className={clsx('np-upload-button-container', 'droppable', {
|
|
194
|
+
'droppable-dropping': isDropping,
|
|
195
|
+
})}
|
|
209
196
|
{...(!disabled && { onDragEnter, onDragLeave, onDrop, onDragOver })}
|
|
210
197
|
>
|
|
211
|
-
<span className="np-upload-input__icon">
|
|
212
|
-
<UploadIcon size={24} className="text-link" />
|
|
213
|
-
</span>
|
|
214
|
-
<div className="np-upload-input__item-content" data-testid={TEST_IDS.mediaBody}>
|
|
215
|
-
<Body type={Typography.BODY_LARGE_BOLD} className="np-upload-input__title">
|
|
216
|
-
{renderButtonTitle()}
|
|
217
|
-
</Body>
|
|
218
|
-
{renderDescription()}
|
|
219
|
-
</div>
|
|
220
198
|
<input
|
|
221
199
|
ref={inputReference}
|
|
222
|
-
className="np-upload-input__upload-button-input sr-only"
|
|
223
|
-
type="file"
|
|
224
200
|
id={id}
|
|
201
|
+
type="file"
|
|
225
202
|
{...getAcceptedTypes()}
|
|
226
203
|
{...(multiple && { multiple: true })}
|
|
204
|
+
className="tw-droppable-input"
|
|
227
205
|
disabled={disabled}
|
|
228
206
|
name="file-upload"
|
|
229
207
|
data-testid={TEST_IDS.uploadInput}
|
|
230
208
|
onChange={filesSelected}
|
|
231
209
|
/>
|
|
210
|
+
{/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
|
|
211
|
+
<label htmlFor={id} className={clsx('btn', 'np-upload-button')}>
|
|
212
|
+
<div className="media">
|
|
213
|
+
<div className="np-upload-icon media-middle media-left">
|
|
214
|
+
<UploadIcon size={24} className="text-link" />
|
|
215
|
+
</div>
|
|
216
|
+
<div className="media-body text-xs-left" data-testid={TEST_IDS.mediaBody}>
|
|
217
|
+
<Body type={Typography.BODY_LARGE_BOLD} className="d-block">
|
|
218
|
+
{renderButtonTitle()}
|
|
219
|
+
</Body>
|
|
220
|
+
{renderDescription()}
|
|
221
|
+
</div>
|
|
222
|
+
</div>
|
|
223
|
+
</label>
|
|
224
|
+
|
|
225
|
+
{/* Drop area overlay */}
|
|
232
226
|
{isDropping && (
|
|
233
227
|
<div
|
|
234
|
-
className={clsx(
|
|
235
|
-
'np-upload-input__drop-file-overlay',
|
|
236
|
-
'droppable-card',
|
|
237
|
-
'droppable-dropping-card',
|
|
238
|
-
'droppable-card-content',
|
|
239
|
-
)}
|
|
228
|
+
className={clsx('droppable-card', 'droppable-dropping-card', 'droppable-card-content')}
|
|
240
229
|
>
|
|
241
230
|
<PlusIcon className="m-x-1" size={24} />
|
|
242
231
|
<div>{formatMessage(MESSAGES.dropFile)}</div>
|
|
243
232
|
</div>
|
|
244
233
|
)}
|
|
245
|
-
</
|
|
234
|
+
</div>
|
|
246
235
|
);
|
|
247
236
|
};
|
|
248
237
|
|