@dxc-technology/halstack-react 0.0.0-e1a279c → 0.0.0-e201636
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/BackgroundColorContext.d.ts +10 -0
- package/BackgroundColorContext.js +1 -4
- package/HalstackContext.d.ts +12 -0
- package/HalstackContext.js +295 -0
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +15 -47
- package/accordion/Accordion.stories.tsx +307 -0
- package/accordion/Accordion.test.js +72 -0
- package/accordion/types.d.ts +8 -8
- package/accordion-group/AccordionGroup.d.ts +1 -1
- package/accordion-group/AccordionGroup.js +15 -17
- package/accordion-group/AccordionGroup.stories.tsx +225 -0
- package/accordion-group/AccordionGroup.test.js +151 -0
- package/accordion-group/types.d.ts +8 -8
- package/alert/Alert.js +6 -3
- package/alert/Alert.test.js +92 -0
- package/alert/types.d.ts +1 -1
- package/badge/Badge.d.ts +4 -0
- package/badge/Badge.js +6 -4
- package/badge/types.d.ts +5 -0
- package/{radio → badge}/types.js +0 -0
- package/bleed/Bleed.d.ts +3 -0
- package/bleed/Bleed.js +84 -0
- package/bleed/Bleed.stories.tsx +342 -0
- package/bleed/types.d.ts +37 -0
- package/bleed/types.js +5 -0
- package/box/Box.d.ts +1 -1
- package/box/Box.js +26 -39
- package/box/Box.test.js +18 -0
- package/box/types.d.ts +0 -4
- package/button/Button.d.ts +1 -1
- package/button/Button.js +24 -27
- package/button/Button.stories.tsx +6 -8
- package/button/Button.test.js +35 -0
- package/button/types.d.ts +5 -9
- package/card/Card.js +32 -34
- package/card/Card.stories.tsx +201 -0
- package/card/Card.test.js +50 -0
- package/card/ice-cream.jpg +0 -0
- package/card/types.d.ts +4 -6
- package/checkbox/Checkbox.d.ts +1 -1
- package/checkbox/Checkbox.js +45 -41
- package/checkbox/Checkbox.stories.tsx +124 -128
- package/checkbox/Checkbox.test.js +78 -0
- package/checkbox/types.d.ts +9 -5
- package/chip/Chip.d.ts +4 -0
- package/chip/Chip.js +16 -76
- package/chip/Chip.stories.tsx +6 -8
- package/chip/Chip.test.js +56 -0
- package/chip/types.d.ts +45 -0
- package/chip/types.js +5 -0
- package/common/variables.js +234 -341
- package/date-input/DateInput.js +63 -52
- package/date-input/DateInput.stories.tsx +7 -7
- package/date-input/DateInput.test.js +479 -0
- package/date-input/types.d.ts +16 -9
- package/dialog/Dialog.js +8 -35
- package/dialog/Dialog.test.js +40 -0
- package/dropdown/Dropdown.d.ts +1 -1
- package/dropdown/Dropdown.js +22 -48
- package/dropdown/Dropdown.stories.tsx +249 -0
- package/dropdown/Dropdown.test.js +189 -0
- package/dropdown/types.d.ts +6 -15
- package/file-input/FileInput.d.ts +4 -0
- package/file-input/FileInput.js +172 -111
- package/file-input/FileInput.stories.tsx +507 -0
- package/file-input/FileInput.test.js +457 -0
- package/file-input/FileItem.d.ts +14 -0
- package/file-input/FileItem.js +16 -23
- package/file-input/types.d.ts +112 -0
- package/file-input/types.js +5 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +32 -113
- package/footer/{Footer.stories.jsx → Footer.stories.tsx} +1 -22
- package/footer/Footer.test.js +109 -0
- package/footer/Icons.d.ts +2 -0
- package/footer/Icons.js +3 -3
- package/footer/types.d.ts +22 -18
- package/header/Header.js +29 -50
- package/header/Header.stories.tsx +172 -0
- package/header/Header.test.js +79 -0
- package/header/Icons.d.ts +2 -0
- package/header/types.d.ts +4 -2
- package/heading/Heading.d.ts +4 -0
- package/heading/Heading.js +7 -24
- package/heading/Heading.stories.tsx +54 -0
- package/heading/Heading.test.js +186 -0
- package/heading/types.d.ts +33 -0
- package/heading/types.js +5 -0
- package/inset/Inset.d.ts +3 -0
- package/inset/Inset.js +84 -0
- package/inset/Inset.stories.tsx +229 -0
- package/inset/types.d.ts +37 -0
- package/inset/types.js +5 -0
- package/layout/ApplicationLayout.d.ts +11 -0
- package/layout/ApplicationLayout.js +84 -120
- package/layout/ApplicationLayout.stories.tsx +126 -0
- package/layout/Icons.d.ts +5 -0
- package/layout/Icons.js +13 -2
- package/layout/SidenavContext.d.ts +5 -0
- package/layout/SidenavContext.js +19 -0
- package/layout/types.d.ts +52 -0
- package/layout/types.js +5 -0
- package/link/Link.d.ts +3 -2
- package/link/Link.js +61 -86
- package/link/Link.stories.tsx +131 -15
- package/link/Link.test.js +83 -0
- package/link/types.d.ts +9 -29
- package/list/List.d.ts +4 -0
- package/list/List.js +47 -0
- package/list/List.stories.tsx +95 -0
- package/list/types.d.ts +7 -0
- package/list/types.js +5 -0
- package/main.d.ts +12 -9
- package/main.js +72 -42
- package/number-input/NumberInput.js +14 -24
- package/number-input/NumberInput.stories.tsx +5 -5
- package/number-input/NumberInput.test.js +506 -0
- package/number-input/NumberInputContext.d.ts +4 -0
- package/number-input/NumberInputContext.js +5 -2
- package/number-input/numberInputContextTypes.d.ts +19 -0
- package/number-input/numberInputContextTypes.js +5 -0
- package/number-input/types.d.ts +17 -10
- package/package.json +9 -6
- package/paginator/Paginator.js +19 -46
- package/paginator/Paginator.test.js +266 -0
- package/password-input/PasswordInput.js +23 -19
- package/password-input/PasswordInput.stories.tsx +3 -3
- package/password-input/PasswordInput.test.js +180 -0
- package/password-input/types.d.ts +29 -19
- package/progress-bar/ProgressBar.js +5 -5
- package/progress-bar/ProgressBar.stories.jsx +11 -11
- package/progress-bar/ProgressBar.test.js +65 -0
- package/quick-nav/QuickNav.d.ts +4 -0
- package/quick-nav/QuickNav.js +112 -0
- package/quick-nav/QuickNav.stories.tsx +237 -0
- package/quick-nav/types.d.ts +21 -0
- package/quick-nav/types.js +5 -0
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +141 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +282 -0
- package/radio-group/RadioGroup.stories.tsx +100 -0
- package/radio-group/RadioGroup.test.js +695 -0
- package/radio-group/types.d.ts +114 -0
- package/radio-group/types.js +5 -0
- package/resultsetTable/ResultsetTable.d.ts +4 -0
- package/resultsetTable/ResultsetTable.js +9 -29
- package/resultsetTable/ResultsetTable.stories.tsx +275 -0
- package/resultsetTable/ResultsetTable.test.js +306 -0
- package/resultsetTable/types.d.ts +67 -0
- package/resultsetTable/types.js +5 -0
- package/row/Row.d.ts +3 -0
- package/row/Row.js +127 -0
- package/row/Row.stories.tsx +237 -0
- package/row/types.d.ts +28 -0
- package/row/types.js +5 -0
- package/select/Icons.d.ts +10 -0
- package/select/Icons.js +93 -0
- package/select/Listbox.d.ts +4 -0
- package/select/Listbox.js +152 -0
- package/select/Option.d.ts +4 -0
- package/select/Option.js +110 -0
- package/select/Select.d.ts +4 -0
- package/select/Select.js +122 -342
- package/select/Select.stories.tsx +103 -81
- package/select/Select.test.js +2120 -0
- package/select/types.d.ts +213 -0
- package/select/types.js +5 -0
- package/sidenav/Sidenav.d.ts +1 -1
- package/sidenav/Sidenav.js +22 -11
- package/sidenav/Sidenav.stories.tsx +182 -0
- package/sidenav/Sidenav.test.js +56 -0
- package/slider/Slider.d.ts +1 -1
- package/slider/Slider.js +6 -5
- package/slider/Slider.stories.tsx +8 -8
- package/slider/Slider.test.js +150 -0
- package/slider/types.d.ts +4 -0
- package/spinner/Spinner.js +3 -3
- package/spinner/Spinner.stories.jsx +1 -0
- package/spinner/Spinner.test.js +64 -0
- package/stack/Stack.d.ts +3 -0
- package/stack/Stack.js +97 -0
- package/stack/Stack.stories.tsx +164 -0
- package/stack/types.d.ts +24 -0
- package/stack/types.js +5 -0
- package/switch/Switch.d.ts +1 -1
- package/switch/Switch.js +37 -21
- package/switch/Switch.stories.tsx +15 -15
- package/switch/Switch.test.js +98 -0
- package/switch/types.d.ts +6 -2
- package/table/Table.js +3 -3
- package/table/Table.stories.jsx +2 -1
- package/table/Table.test.js +26 -0
- package/tabs/Tabs.d.ts +1 -1
- package/tabs/Tabs.js +20 -20
- package/tabs/Tabs.stories.tsx +112 -0
- package/tabs/Tabs.test.js +140 -0
- package/tabs/types.d.ts +29 -18
- package/tabs-nav/NavTabs.d.ts +8 -0
- package/tabs-nav/NavTabs.js +125 -0
- package/tabs-nav/NavTabs.stories.tsx +170 -0
- package/tabs-nav/NavTabs.test.js +82 -0
- package/tabs-nav/Tab.d.ts +4 -0
- package/tabs-nav/Tab.js +132 -0
- package/tabs-nav/types.d.ts +53 -0
- package/tabs-nav/types.js +5 -0
- package/tag/Tag.d.ts +1 -1
- package/tag/Tag.js +18 -28
- package/tag/Tag.stories.tsx +26 -29
- package/tag/Tag.test.js +60 -0
- package/tag/types.d.ts +23 -14
- package/text/Text.d.ts +7 -0
- package/text/Text.js +30 -0
- package/text/Text.stories.tsx +19 -0
- package/text-input/Suggestion.d.ts +4 -0
- package/text-input/Suggestion.js +55 -0
- package/text-input/TextInput.d.ts +4 -0
- package/text-input/TextInput.js +91 -146
- package/text-input/TextInput.stories.tsx +474 -0
- package/text-input/TextInput.test.js +1712 -0
- package/text-input/types.d.ts +178 -0
- package/text-input/types.js +5 -0
- package/textarea/Textarea.d.ts +4 -0
- package/textarea/Textarea.js +39 -79
- package/textarea/Textarea.stories.jsx +37 -15
- package/textarea/Textarea.test.js +437 -0
- package/textarea/types.d.ts +137 -0
- package/textarea/types.js +5 -0
- package/toggle-group/ToggleGroup.d.ts +4 -0
- package/toggle-group/ToggleGroup.js +18 -46
- package/toggle-group/ToggleGroup.stories.tsx +27 -32
- package/toggle-group/ToggleGroup.test.js +156 -0
- package/toggle-group/types.d.ts +105 -0
- package/toggle-group/types.js +5 -0
- package/useTheme.d.ts +2 -0
- package/useTheme.js +2 -2
- package/useTranslatedLabels.d.ts +2 -0
- package/useTranslatedLabels.js +20 -0
- package/wizard/Wizard.d.ts +1 -1
- package/wizard/Wizard.js +107 -46
- package/wizard/{Wizard.stories.jsx → Wizard.stories.tsx} +13 -23
- package/wizard/Wizard.test.js +141 -0
- package/wizard/types.d.ts +9 -9
- package/ThemeContext.js +0 -246
- package/V3Select/V3Select.js +0 -455
- package/V3Select/index.d.ts +0 -27
- package/V3Textarea/V3Textarea.js +0 -260
- package/V3Textarea/index.d.ts +0 -27
- package/chip/index.d.ts +0 -22
- package/date/Date.js +0 -373
- package/date/index.d.ts +0 -27
- package/file-input/index.d.ts +0 -81
- package/heading/index.d.ts +0 -17
- package/input-text/Icons.js +0 -22
- package/input-text/InputText.js +0 -611
- package/input-text/index.d.ts +0 -36
- package/radio/Radio.d.ts +0 -4
- package/radio/Radio.js +0 -174
- package/radio/Radio.stories.tsx +0 -192
- package/radio/types.d.ts +0 -54
- package/resultsetTable/index.d.ts +0 -19
- package/select/index.d.ts +0 -131
- package/text-input/index.d.ts +0 -135
- package/textarea/index.d.ts +0 -117
- package/toggle/Toggle.js +0 -186
- package/toggle/index.d.ts +0 -21
- package/toggle-group/index.d.ts +0 -21
- package/upload/Upload.js +0 -201
- package/upload/buttons-upload/ButtonsUpload.js +0 -111
- package/upload/buttons-upload/Icons.js +0 -40
- package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
- package/upload/dragAndDropArea/Icons.js +0 -39
- package/upload/file-upload/FileToUpload.js +0 -115
- package/upload/file-upload/Icons.js +0 -66
- package/upload/files-upload/FilesToUpload.js +0 -109
- package/upload/index.d.ts +0 -15
- package/upload/transaction/Icons.js +0 -160
- package/upload/transaction/Transaction.js +0 -104
- package/upload/transactions/Transactions.js +0 -94
- package/wizard/Icons.js +0 -65
|
@@ -0,0 +1,457 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
6
|
+
|
|
7
|
+
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
8
|
+
|
|
9
|
+
var _react = _interopRequireDefault(require("react"));
|
|
10
|
+
|
|
11
|
+
var _react2 = require("@testing-library/react");
|
|
12
|
+
|
|
13
|
+
var _userEvent = _interopRequireDefault(require("@testing-library/user-event"));
|
|
14
|
+
|
|
15
|
+
var _FileInput = _interopRequireDefault(require("./FileInput"));
|
|
16
|
+
|
|
17
|
+
describe("FileInput component tests", function () {
|
|
18
|
+
var file1 = new File(["file1"], "file1.png", {
|
|
19
|
+
type: "image/png"
|
|
20
|
+
});
|
|
21
|
+
var file2 = new File(["file2"], "file2.txt", {
|
|
22
|
+
type: "text/plain"
|
|
23
|
+
});
|
|
24
|
+
var allFiles = [{
|
|
25
|
+
file: file1
|
|
26
|
+
}, {
|
|
27
|
+
error: "Error message",
|
|
28
|
+
file: file2
|
|
29
|
+
}];
|
|
30
|
+
test("Renders with correct labels and helper text in file mode", function () {
|
|
31
|
+
var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
32
|
+
label: "File input label",
|
|
33
|
+
helperText: "File input helper text",
|
|
34
|
+
buttonLabel: "Choose files"
|
|
35
|
+
})),
|
|
36
|
+
getByText = _render.getByText;
|
|
37
|
+
|
|
38
|
+
expect(getByText("File input label")).toBeTruthy();
|
|
39
|
+
expect(getByText("File input helper text")).toBeTruthy();
|
|
40
|
+
expect(getByText("Choose files")).toBeTruthy();
|
|
41
|
+
});
|
|
42
|
+
test("Renders with correct button label in file mode", function () {
|
|
43
|
+
var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
44
|
+
label: "File input label",
|
|
45
|
+
helperText: "File input helper text"
|
|
46
|
+
})),
|
|
47
|
+
getByText = _render2.getByText;
|
|
48
|
+
|
|
49
|
+
expect(getByText("Select files")).toBeTruthy();
|
|
50
|
+
});
|
|
51
|
+
test("Renders with correct button label in file mode and single file selection", function () {
|
|
52
|
+
var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
53
|
+
label: "File input label",
|
|
54
|
+
helperText: "File input helper text",
|
|
55
|
+
multiple: false
|
|
56
|
+
})),
|
|
57
|
+
getByText = _render3.getByText;
|
|
58
|
+
|
|
59
|
+
expect(getByText("Select file")).toBeTruthy();
|
|
60
|
+
});
|
|
61
|
+
test("Renders with correct labels in filedrop mode", function () {
|
|
62
|
+
var _render4 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
63
|
+
label: "File input label",
|
|
64
|
+
helperText: "File input helper text",
|
|
65
|
+
mode: "filedrop"
|
|
66
|
+
})),
|
|
67
|
+
getByText = _render4.getByText;
|
|
68
|
+
|
|
69
|
+
expect(getByText("Select")).toBeTruthy();
|
|
70
|
+
expect(getByText("or drop files")).toBeTruthy();
|
|
71
|
+
});
|
|
72
|
+
test("Renders with correct labels in filedrop mode and single file selection", function () {
|
|
73
|
+
var _render5 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
74
|
+
label: "File input label",
|
|
75
|
+
helperText: "File input helper text",
|
|
76
|
+
mode: "filedrop",
|
|
77
|
+
multiple: false
|
|
78
|
+
})),
|
|
79
|
+
getByText = _render5.getByText;
|
|
80
|
+
|
|
81
|
+
expect(getByText("Select")).toBeTruthy();
|
|
82
|
+
expect(getByText("or drop a file")).toBeTruthy();
|
|
83
|
+
});
|
|
84
|
+
test("Renders with correct custom labels in filedrop mode", function () {
|
|
85
|
+
var _render6 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
86
|
+
label: "File input label",
|
|
87
|
+
helperText: "File input helper text",
|
|
88
|
+
mode: "filedrop",
|
|
89
|
+
buttonLabel: "Choose",
|
|
90
|
+
dropAreaLabel: "(or drop the files)"
|
|
91
|
+
})),
|
|
92
|
+
getByText = _render6.getByText;
|
|
93
|
+
|
|
94
|
+
expect(getByText("Choose")).toBeTruthy();
|
|
95
|
+
expect(getByText("(or drop the files)")).toBeTruthy();
|
|
96
|
+
});
|
|
97
|
+
test("Renders with correct labels in dropzone mode", function () {
|
|
98
|
+
var _render7 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
99
|
+
label: "File input label",
|
|
100
|
+
helperText: "File input helper text",
|
|
101
|
+
mode: "dropzone"
|
|
102
|
+
})),
|
|
103
|
+
getByText = _render7.getByText;
|
|
104
|
+
|
|
105
|
+
expect(getByText("Select")).toBeTruthy();
|
|
106
|
+
expect(getByText("or drop files")).toBeTruthy();
|
|
107
|
+
});
|
|
108
|
+
test("Renders with correct labels in dropzone mode and single file selection", function () {
|
|
109
|
+
var _render8 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
110
|
+
label: "File input label",
|
|
111
|
+
helperText: "File input helper text",
|
|
112
|
+
mode: "dropzone",
|
|
113
|
+
multiple: false
|
|
114
|
+
})),
|
|
115
|
+
getByText = _render8.getByText;
|
|
116
|
+
|
|
117
|
+
expect(getByText("Select")).toBeTruthy();
|
|
118
|
+
expect(getByText("or drop a file")).toBeTruthy();
|
|
119
|
+
});
|
|
120
|
+
test("Renders with correct custom labels in dropzone mode", function () {
|
|
121
|
+
var _render9 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
122
|
+
label: "File input label",
|
|
123
|
+
helperText: "File input helper text",
|
|
124
|
+
mode: "dropzone",
|
|
125
|
+
buttonLabel: "Choose",
|
|
126
|
+
dropAreaLabel: "(or drop the files)"
|
|
127
|
+
})),
|
|
128
|
+
getByText = _render9.getByText;
|
|
129
|
+
|
|
130
|
+
expect(getByText("Choose")).toBeTruthy();
|
|
131
|
+
expect(getByText("(or drop the files)")).toBeTruthy();
|
|
132
|
+
});
|
|
133
|
+
test("Disabled file input", function () {
|
|
134
|
+
var _render10 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
135
|
+
label: "File input label",
|
|
136
|
+
helperText: "File input helper text",
|
|
137
|
+
disabled: true
|
|
138
|
+
})),
|
|
139
|
+
getByText = _render10.getByText,
|
|
140
|
+
getByRole = _render10.getByRole;
|
|
141
|
+
|
|
142
|
+
expect(getByText("Select files")).toBeTruthy();
|
|
143
|
+
var button = getByRole("button");
|
|
144
|
+
expect(button.disabled).toBeTruthy();
|
|
145
|
+
});
|
|
146
|
+
test("Renders file items passed in value when multiple file input", /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee() {
|
|
147
|
+
var callbackFile, _render11, getByText;
|
|
148
|
+
|
|
149
|
+
return _regenerator["default"].wrap(function _callee$(_context) {
|
|
150
|
+
while (1) {
|
|
151
|
+
switch (_context.prev = _context.next) {
|
|
152
|
+
case 0:
|
|
153
|
+
callbackFile = jest.fn();
|
|
154
|
+
_render11 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
155
|
+
label: "File input label",
|
|
156
|
+
helperText: "File input helper text",
|
|
157
|
+
value: allFiles,
|
|
158
|
+
callbackFile: callbackFile
|
|
159
|
+
})), getByText = _render11.getByText;
|
|
160
|
+
_context.next = 4;
|
|
161
|
+
return (0, _react2.waitFor)(function () {
|
|
162
|
+
expect(getByText("file1.png")).toBeTruthy();
|
|
163
|
+
expect(getByText("file2.txt")).toBeTruthy();
|
|
164
|
+
expect(getByText("Error message")).toBeTruthy();
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
case 4:
|
|
168
|
+
case "end":
|
|
169
|
+
return _context.stop();
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}, _callee);
|
|
173
|
+
})));
|
|
174
|
+
test("Renders file items when single file input", /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee2() {
|
|
175
|
+
var callbackFile, _render12, getByText;
|
|
176
|
+
|
|
177
|
+
return _regenerator["default"].wrap(function _callee2$(_context2) {
|
|
178
|
+
while (1) {
|
|
179
|
+
switch (_context2.prev = _context2.next) {
|
|
180
|
+
case 0:
|
|
181
|
+
callbackFile = jest.fn();
|
|
182
|
+
_render12 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
183
|
+
label: "File input label",
|
|
184
|
+
helperText: "File input helper text",
|
|
185
|
+
multiple: false,
|
|
186
|
+
value: allFiles,
|
|
187
|
+
callbackFile: callbackFile
|
|
188
|
+
})), getByText = _render12.getByText;
|
|
189
|
+
_context2.next = 4;
|
|
190
|
+
return (0, _react2.waitFor)(function () {
|
|
191
|
+
expect(getByText("file1.png")).toBeTruthy();
|
|
192
|
+
expect(getByText("file2.txt")).toBeTruthy();
|
|
193
|
+
expect(getByText("Error message")).toBeTruthy();
|
|
194
|
+
});
|
|
195
|
+
|
|
196
|
+
case 4:
|
|
197
|
+
case "end":
|
|
198
|
+
return _context2.stop();
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}, _callee2);
|
|
202
|
+
})));
|
|
203
|
+
test("Add file item when single file input", /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee3() {
|
|
204
|
+
var newFile, callbackFile, _render13, getByText, getByLabelText;
|
|
205
|
+
|
|
206
|
+
return _regenerator["default"].wrap(function _callee3$(_context3) {
|
|
207
|
+
while (1) {
|
|
208
|
+
switch (_context3.prev = _context3.next) {
|
|
209
|
+
case 0:
|
|
210
|
+
newFile = new File(["newFile"], "newFile.pdf", {
|
|
211
|
+
type: "pdf"
|
|
212
|
+
});
|
|
213
|
+
callbackFile = jest.fn();
|
|
214
|
+
_render13 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
215
|
+
label: "File input label",
|
|
216
|
+
helperText: "File input helper text",
|
|
217
|
+
value: allFiles,
|
|
218
|
+
callbackFile: callbackFile,
|
|
219
|
+
multiple: false
|
|
220
|
+
})), getByText = _render13.getByText, getByLabelText = _render13.getByLabelText;
|
|
221
|
+
_context3.next = 5;
|
|
222
|
+
return (0, _react2.waitFor)(function () {
|
|
223
|
+
expect(getByText("file1.png")).toBeTruthy();
|
|
224
|
+
expect(getByText("file2.txt")).toBeTruthy();
|
|
225
|
+
expect(getByText("Error message")).toBeTruthy();
|
|
226
|
+
var inputFile = getByLabelText("File input label", {
|
|
227
|
+
hidden: true
|
|
228
|
+
});
|
|
229
|
+
|
|
230
|
+
_react2.fireEvent.change(inputFile, {
|
|
231
|
+
target: {
|
|
232
|
+
files: [newFile]
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
expect(callbackFile).toHaveBeenCalledWith([{
|
|
237
|
+
file: newFile,
|
|
238
|
+
preview: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
239
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
240
|
+
width: "24",
|
|
241
|
+
height: "24",
|
|
242
|
+
viewBox: "0 0 24 24",
|
|
243
|
+
fill: "currentColor"
|
|
244
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
245
|
+
fill: "none",
|
|
246
|
+
d: "M0 0h24v24H0V0z"
|
|
247
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
248
|
+
d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"
|
|
249
|
+
}))
|
|
250
|
+
}]);
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
case 5:
|
|
254
|
+
case "end":
|
|
255
|
+
return _context3.stop();
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}, _callee3);
|
|
259
|
+
})));
|
|
260
|
+
test("Renders file items and delete one file", /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee4() {
|
|
261
|
+
var callbackFile, _render14, getByText, getAllByRole;
|
|
262
|
+
|
|
263
|
+
return _regenerator["default"].wrap(function _callee4$(_context4) {
|
|
264
|
+
while (1) {
|
|
265
|
+
switch (_context4.prev = _context4.next) {
|
|
266
|
+
case 0:
|
|
267
|
+
callbackFile = jest.fn();
|
|
268
|
+
_render14 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
269
|
+
label: "File input label",
|
|
270
|
+
helperText: "File input helper text",
|
|
271
|
+
value: allFiles,
|
|
272
|
+
callbackFile: callbackFile
|
|
273
|
+
})), getByText = _render14.getByText, getAllByRole = _render14.getAllByRole;
|
|
274
|
+
_context4.next = 4;
|
|
275
|
+
return (0, _react2.waitFor)(function () {
|
|
276
|
+
expect(getByText("file1.png")).toBeTruthy();
|
|
277
|
+
expect(getByText("file2.txt")).toBeTruthy();
|
|
278
|
+
expect(getByText("Error message")).toBeTruthy();
|
|
279
|
+
var removeBtn = getAllByRole("button")[1];
|
|
280
|
+
|
|
281
|
+
_userEvent["default"].click(removeBtn);
|
|
282
|
+
|
|
283
|
+
expect(callbackFile).toHaveBeenCalledWith([{
|
|
284
|
+
error: "Error message",
|
|
285
|
+
file: file2,
|
|
286
|
+
preview: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
287
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
288
|
+
width: "24",
|
|
289
|
+
height: "24",
|
|
290
|
+
viewBox: "0 0 24 24",
|
|
291
|
+
fill: "currentColor"
|
|
292
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
293
|
+
fill: "none",
|
|
294
|
+
d: "M0 0h24v24H0V0z"
|
|
295
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
296
|
+
d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"
|
|
297
|
+
}))
|
|
298
|
+
}]);
|
|
299
|
+
});
|
|
300
|
+
|
|
301
|
+
case 4:
|
|
302
|
+
case "end":
|
|
303
|
+
return _context4.stop();
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}, _callee4);
|
|
307
|
+
})));
|
|
308
|
+
test("CallbackFile is correctly called", /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee5() {
|
|
309
|
+
var newFile, callbackFile, _render15, getByLabelText;
|
|
310
|
+
|
|
311
|
+
return _regenerator["default"].wrap(function _callee5$(_context5) {
|
|
312
|
+
while (1) {
|
|
313
|
+
switch (_context5.prev = _context5.next) {
|
|
314
|
+
case 0:
|
|
315
|
+
newFile = new File(["newFile"], "newFile.pdf", {
|
|
316
|
+
type: "pdf"
|
|
317
|
+
});
|
|
318
|
+
callbackFile = jest.fn();
|
|
319
|
+
_render15 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
320
|
+
label: "File input label",
|
|
321
|
+
helperText: "File input helper text",
|
|
322
|
+
value: allFiles,
|
|
323
|
+
callbackFile: callbackFile
|
|
324
|
+
})), getByLabelText = _render15.getByLabelText;
|
|
325
|
+
_context5.next = 5;
|
|
326
|
+
return (0, _react2.waitFor)(function () {
|
|
327
|
+
var inputFile = getByLabelText("File input label", {
|
|
328
|
+
hidden: true
|
|
329
|
+
});
|
|
330
|
+
|
|
331
|
+
_react2.fireEvent.change(inputFile, {
|
|
332
|
+
target: {
|
|
333
|
+
files: [newFile]
|
|
334
|
+
}
|
|
335
|
+
});
|
|
336
|
+
|
|
337
|
+
expect(callbackFile).toHaveBeenCalledWith([{
|
|
338
|
+
file: file1,
|
|
339
|
+
preview: "data:image/png;base64,ZmlsZTE="
|
|
340
|
+
}, {
|
|
341
|
+
error: "Error message",
|
|
342
|
+
file: file2,
|
|
343
|
+
preview: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
344
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
345
|
+
width: "24",
|
|
346
|
+
height: "24",
|
|
347
|
+
viewBox: "0 0 24 24",
|
|
348
|
+
fill: "currentColor"
|
|
349
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
350
|
+
fill: "none",
|
|
351
|
+
d: "M0 0h24v24H0V0z"
|
|
352
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
353
|
+
d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"
|
|
354
|
+
}))
|
|
355
|
+
}, {
|
|
356
|
+
error: undefined,
|
|
357
|
+
file: newFile,
|
|
358
|
+
preview: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
359
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
360
|
+
width: "24",
|
|
361
|
+
height: "24",
|
|
362
|
+
viewBox: "0 0 24 24",
|
|
363
|
+
fill: "currentColor"
|
|
364
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
365
|
+
fill: "none",
|
|
366
|
+
d: "M0 0h24v24H0V0z"
|
|
367
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
368
|
+
d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"
|
|
369
|
+
}))
|
|
370
|
+
}]);
|
|
371
|
+
});
|
|
372
|
+
|
|
373
|
+
case 5:
|
|
374
|
+
case "end":
|
|
375
|
+
return _context5.stop();
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}, _callee5);
|
|
379
|
+
})));
|
|
380
|
+
test("Callback called correctly when a file size does not comply minSize or maxSize", /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee6() {
|
|
381
|
+
var newFile, callbackFile, _render16, getByText, getByLabelText;
|
|
382
|
+
|
|
383
|
+
return _regenerator["default"].wrap(function _callee6$(_context6) {
|
|
384
|
+
while (1) {
|
|
385
|
+
switch (_context6.prev = _context6.next) {
|
|
386
|
+
case 0:
|
|
387
|
+
newFile = new File(["newFile"], "newFile.pdf", {
|
|
388
|
+
type: "pdf"
|
|
389
|
+
});
|
|
390
|
+
callbackFile = jest.fn();
|
|
391
|
+
_render16 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_FileInput["default"], {
|
|
392
|
+
label: "File input label",
|
|
393
|
+
helperText: "File input helper text",
|
|
394
|
+
minSize: 1000,
|
|
395
|
+
maxSize: 20000,
|
|
396
|
+
value: allFiles,
|
|
397
|
+
callbackFile: callbackFile
|
|
398
|
+
})), getByText = _render16.getByText, getByLabelText = _render16.getByLabelText;
|
|
399
|
+
_context6.next = 5;
|
|
400
|
+
return (0, _react2.waitFor)(function () {
|
|
401
|
+
expect(getByText("file1.png")).toBeTruthy();
|
|
402
|
+
expect(getByText("file2.txt")).toBeTruthy();
|
|
403
|
+
expect(getByText("Error message")).toBeTruthy();
|
|
404
|
+
var inputFile = getByLabelText("File input label", {
|
|
405
|
+
hidden: true
|
|
406
|
+
});
|
|
407
|
+
|
|
408
|
+
_react2.fireEvent.change(inputFile, {
|
|
409
|
+
target: {
|
|
410
|
+
files: [newFile]
|
|
411
|
+
}
|
|
412
|
+
});
|
|
413
|
+
|
|
414
|
+
expect(callbackFile).toHaveBeenCalledWith([{
|
|
415
|
+
file: file1,
|
|
416
|
+
preview: "data:image/png;base64,ZmlsZTE="
|
|
417
|
+
}, {
|
|
418
|
+
error: "Error message",
|
|
419
|
+
file: file2,
|
|
420
|
+
preview: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
421
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
422
|
+
width: "24",
|
|
423
|
+
height: "24",
|
|
424
|
+
viewBox: "0 0 24 24",
|
|
425
|
+
fill: "currentColor"
|
|
426
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
427
|
+
fill: "none",
|
|
428
|
+
d: "M0 0h24v24H0V0z"
|
|
429
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
430
|
+
d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"
|
|
431
|
+
}))
|
|
432
|
+
}, {
|
|
433
|
+
error: "File size must be greater than min size.",
|
|
434
|
+
file: newFile,
|
|
435
|
+
preview: /*#__PURE__*/_react["default"].createElement("svg", {
|
|
436
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
437
|
+
width: "24",
|
|
438
|
+
height: "24",
|
|
439
|
+
viewBox: "0 0 24 24",
|
|
440
|
+
fill: "currentColor"
|
|
441
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
442
|
+
fill: "none",
|
|
443
|
+
d: "M0 0h24v24H0V0z"
|
|
444
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
445
|
+
d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"
|
|
446
|
+
}))
|
|
447
|
+
}]);
|
|
448
|
+
});
|
|
449
|
+
|
|
450
|
+
case 5:
|
|
451
|
+
case "end":
|
|
452
|
+
return _context6.stop();
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
}, _callee6);
|
|
456
|
+
})));
|
|
457
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const FileItem: ({ mode, multiple, name, error, showPreview, preview, type, numFiles, onDelete, tabIndex, }: {
|
|
3
|
+
mode: any;
|
|
4
|
+
multiple: any;
|
|
5
|
+
name?: string;
|
|
6
|
+
error?: string;
|
|
7
|
+
showPreview: any;
|
|
8
|
+
preview: any;
|
|
9
|
+
type: any;
|
|
10
|
+
numFiles: any;
|
|
11
|
+
onDelete: any;
|
|
12
|
+
tabIndex: any;
|
|
13
|
+
}) => JSX.Element;
|
|
14
|
+
export default FileItem;
|
package/file-input/FileItem.js
CHANGED
|
@@ -13,11 +13,9 @@ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/hel
|
|
|
13
13
|
|
|
14
14
|
var _react = _interopRequireDefault(require("react"));
|
|
15
15
|
|
|
16
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
17
|
-
|
|
18
16
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
19
17
|
|
|
20
|
-
var _useTheme = _interopRequireDefault(require("../useTheme
|
|
18
|
+
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
21
19
|
|
|
22
20
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10;
|
|
23
21
|
|
|
@@ -59,7 +57,8 @@ var FileItem = function FileItem(_ref) {
|
|
|
59
57
|
preview = _ref.preview,
|
|
60
58
|
type = _ref.type,
|
|
61
59
|
numFiles = _ref.numFiles,
|
|
62
|
-
onDelete = _ref.onDelete
|
|
60
|
+
onDelete = _ref.onDelete,
|
|
61
|
+
tabIndex = _ref.tabIndex;
|
|
63
62
|
var colorsTheme = (0, _useTheme["default"])();
|
|
64
63
|
var isImage = type.includes("image");
|
|
65
64
|
|
|
@@ -104,12 +103,13 @@ var FileItem = function FileItem(_ref) {
|
|
|
104
103
|
onClick: function onClick() {
|
|
105
104
|
return onDelete(name);
|
|
106
105
|
},
|
|
107
|
-
"aria-label": "Remove ".concat(name)
|
|
106
|
+
"aria-label": "Remove ".concat(name),
|
|
107
|
+
tabIndex: tabIndex
|
|
108
108
|
}, deleteIcon)), error && (multiple || numFiles > 1) && /*#__PURE__*/_react["default"].createElement(ErrorMessage, null, error))));
|
|
109
109
|
};
|
|
110
110
|
|
|
111
111
|
var Container = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: row;\n padding: ", ";\n background-color: ", ";\n border-radius: ", ";\n width: ", ";\n min-height: ", ";\n border-color: ", ";\n border-width: ", ";\n border-style: ", ";\n display: flex;\n justify-content: center;\n"])), function (props) {
|
|
112
|
-
return props.showPreview ? "8px" : "8px 8px 8px 16px";
|
|
112
|
+
return props.showPreview ? "calc(8px - ".concat(props.theme.fileItemBorderThickness, ") 8px") : "calc(8px - ".concat(props.theme.fileItemBorderThickness, ") 8px calc(8px - ").concat(props.theme.fileItemBorderThickness, ") 16px");
|
|
113
113
|
}, function (props) {
|
|
114
114
|
return props.error && props.theme.errorFileItemBackgroundColor;
|
|
115
115
|
}, function (props) {
|
|
@@ -133,9 +133,9 @@ var FileItemContainer = _styledComponents["default"].div(_templateObject3 || (_t
|
|
|
133
133
|
var ImagePreview = _styledComponents["default"].img(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n width: 48px;\n height: 48px;\n object-fit: contain;\n margin-right: 12px;\n border-radius: 2px;\n"])));
|
|
134
134
|
|
|
135
135
|
var IconPreviewContainer = _styledComponents["default"].div(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: center;\n margin-right: 12px;\n background-color: ", ";\n width: 48px;\n height: 48px;\n border-radius: 2px;\n color: ", ";\n"])), function (props) {
|
|
136
|
-
return props.error ? props.theme.
|
|
136
|
+
return props.error ? props.theme.errorFilePreviewBackgroundColor : props.theme.filePreviewBackgroundColor;
|
|
137
137
|
}, function (props) {
|
|
138
|
-
return props.error ? props.theme.
|
|
138
|
+
return props.error ? props.theme.errorFilePreviewIconColor : props.theme.filePreviewIconColor;
|
|
139
139
|
});
|
|
140
140
|
|
|
141
141
|
var IconPreview = _styledComponents["default"].div(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])([""])));
|
|
@@ -156,14 +156,18 @@ var FileName = _styledComponents["default"].span(_templateObject7 || (_templateO
|
|
|
156
156
|
|
|
157
157
|
var ErrorIcon = _styledComponents["default"].span(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n padding: 3px;\n height: 18px;\n width: 18px;\n color: #d0011b;\n"])));
|
|
158
158
|
|
|
159
|
-
var DeleteIcon = _styledComponents["default"].button(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n height: 24px;\n width: 24px;\n font-size: 1rem;\n font-family: ", ";\n border: 1px solid transparent;\n border-radius:
|
|
159
|
+
var DeleteIcon = _styledComponents["default"].button(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n height: 24px;\n width: 24px;\n font-size: 1rem;\n font-family: ", ";\n border: 1px solid transparent;\n border-radius: 2px;\n margin-left: 4px;\n background-color: transparent;\n box-shadow: 0 0 0 2px transparent;\n padding: 3px;\n cursor: pointer;\n color: ", ";\n svg {\n line-height: 18px;\n }\n &:hover {\n background-color: ", ";\n }\n &:focus {\n outline: none;\n box-shadow: 0 0 0 2px ", ";\n }\n &:focus-visible {\n outline: none;\n box-shadow: 0 0 0 2px ", ";\n }\n &:active {\n background-color: ", ";\n }\n"])), function (props) {
|
|
160
160
|
return props.theme.fontFamily;
|
|
161
161
|
}, function (props) {
|
|
162
|
-
return props.
|
|
162
|
+
return props.theme.deleteFileItemColor;
|
|
163
|
+
}, function (props) {
|
|
164
|
+
return props.theme.hoverDeleteFileItemBackgroundColor;
|
|
163
165
|
}, function (props) {
|
|
164
|
-
return props.
|
|
166
|
+
return props.theme.focusDeleteFileItemBorderColor;
|
|
165
167
|
}, function (props) {
|
|
166
|
-
return props.
|
|
168
|
+
return props.theme.focusDeleteFileItemBorderColor;
|
|
169
|
+
}, function (props) {
|
|
170
|
+
return props.theme.activeDeleteFileItemBackgroundColor;
|
|
167
171
|
});
|
|
168
172
|
|
|
169
173
|
var ErrorMessage = _styledComponents["default"].span(_templateObject10 || (_templateObject10 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: ", ";\n"])), function (props) {
|
|
@@ -178,16 +182,5 @@ var ErrorMessage = _styledComponents["default"].span(_templateObject10 || (_temp
|
|
|
178
182
|
return props.theme.errorMessageLineHeight;
|
|
179
183
|
});
|
|
180
184
|
|
|
181
|
-
FileItem.propTypes = {
|
|
182
|
-
mode: _propTypes["default"].string,
|
|
183
|
-
multiple: _propTypes["default"].bool,
|
|
184
|
-
name: _propTypes["default"].string,
|
|
185
|
-
type: _propTypes["default"].string,
|
|
186
|
-
showPreview: _propTypes["default"]["boolean"],
|
|
187
|
-
numFiles: _propTypes["default"].number,
|
|
188
|
-
preview: _propTypes["default"].string,
|
|
189
|
-
error: _propTypes["default"].string,
|
|
190
|
-
onDelete: _propTypes["default"].func
|
|
191
|
-
};
|
|
192
185
|
var _default = FileItem;
|
|
193
186
|
exports["default"] = _default;
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
2
|
+
declare type Margin = {
|
|
3
|
+
top?: Space;
|
|
4
|
+
bottom?: Space;
|
|
5
|
+
left?: Space;
|
|
6
|
+
right?: Space;
|
|
7
|
+
};
|
|
8
|
+
declare type FileData = {
|
|
9
|
+
/**
|
|
10
|
+
* Selected file.
|
|
11
|
+
*/
|
|
12
|
+
file: File;
|
|
13
|
+
/**
|
|
14
|
+
* Error of the file. If it is defined, it will be shown and the file item will be mark as invalid.
|
|
15
|
+
*/
|
|
16
|
+
error?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Preview of the file.
|
|
19
|
+
*/
|
|
20
|
+
preview?: string;
|
|
21
|
+
};
|
|
22
|
+
declare type CommonProps = {
|
|
23
|
+
/**
|
|
24
|
+
* Name attribute.
|
|
25
|
+
*/
|
|
26
|
+
name?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Text to be placed above the component.
|
|
29
|
+
*/
|
|
30
|
+
label?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Text to be placed inside the button.
|
|
33
|
+
*/
|
|
34
|
+
buttonLabel?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Helper text to be placed above the component.
|
|
37
|
+
*/
|
|
38
|
+
helperText?: string;
|
|
39
|
+
/**
|
|
40
|
+
* The file types that the component accepts. Its value must be one of all the possible values of the HTML file input's accept attribute.
|
|
41
|
+
*/
|
|
42
|
+
accept?: string;
|
|
43
|
+
/**
|
|
44
|
+
* An array of files representing the selected files.
|
|
45
|
+
*/
|
|
46
|
+
value: FileData[];
|
|
47
|
+
/**
|
|
48
|
+
* The minimum file size (in bytes) allowed. If the size of the file does not comply the minSize, the file will have an error.
|
|
49
|
+
*/
|
|
50
|
+
minSize?: number;
|
|
51
|
+
/**
|
|
52
|
+
* The maximum file size (in bytes) allowed. If the size of the file does not comply the maxSize, the file will have an error.
|
|
53
|
+
*/
|
|
54
|
+
maxSize?: number;
|
|
55
|
+
/**
|
|
56
|
+
* If true, if the file is an image, a preview of it will be shown. If not, an icon refering to the file type will be shown.
|
|
57
|
+
*/
|
|
58
|
+
showPreview?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* If true, the component allows multiple file items and will show all of them. If false, only one file will be shown, and if there is already one
|
|
61
|
+
* file selected and a new one is chosen, it will be replaced by the new selected one.
|
|
62
|
+
*/
|
|
63
|
+
multiple?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* If true, the component will be disabled.
|
|
66
|
+
*/
|
|
67
|
+
disabled?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* This function will be called when the user selects or drops a file. The list of files will be sent as a parameter.
|
|
70
|
+
* In this function, the files can be updated or returned as they come. These files must be passed to the value in order to be shown.
|
|
71
|
+
*/
|
|
72
|
+
callbackFile: (files: FileData[]) => void;
|
|
73
|
+
/**
|
|
74
|
+
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
75
|
+
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
|
76
|
+
*/
|
|
77
|
+
margin?: Space | Margin;
|
|
78
|
+
/**
|
|
79
|
+
* Value of the tabindex attribute.
|
|
80
|
+
*/
|
|
81
|
+
tabIndex?: number;
|
|
82
|
+
};
|
|
83
|
+
declare type DropModeProps = CommonProps & {
|
|
84
|
+
/**
|
|
85
|
+
* Uses one of the available file input modes:
|
|
86
|
+
* 'file': Files are selected by clicking the button and selecting it through the file explorer.
|
|
87
|
+
* 'filedrop': Files can be selected by clicking the button and selecting it through the file explorer or by dropping them inside the drag and drop area.
|
|
88
|
+
* 'dropzone': Files can be selected by clicking the button and selecting it through the file explorer or by dropping them inside the drag and drop area.
|
|
89
|
+
* The drag and drop area of this mode is bigger than the one of the filedrop mode.
|
|
90
|
+
*/
|
|
91
|
+
mode: "filedrop" | "dropzone";
|
|
92
|
+
/**
|
|
93
|
+
* Text to be placed inside the drag and drop zone alongside the button.
|
|
94
|
+
*/
|
|
95
|
+
dropAreaLabel?: string;
|
|
96
|
+
};
|
|
97
|
+
declare type FileModeProps = CommonProps & {
|
|
98
|
+
/**
|
|
99
|
+
* Uses one of the available file input modes:
|
|
100
|
+
* 'file': Files are selected by clicking the button and selecting it through the file explorer.
|
|
101
|
+
* 'filedrop': Files can be selected by clicking the button and selecting it through the file explorer or by dropping them inside the drag and drop area.
|
|
102
|
+
* 'dropzone': Files can be selected by clicking the button and selecting it through the file explorer or by dropping them inside the drag and drop area.
|
|
103
|
+
* The drag and drop area of this mode is bigger than the one of the filedrop mode.
|
|
104
|
+
*/
|
|
105
|
+
mode?: "file";
|
|
106
|
+
/**
|
|
107
|
+
* Text to be placed inside the drag and drop zone alongside the button.
|
|
108
|
+
*/
|
|
109
|
+
dropAreaLabel?: never;
|
|
110
|
+
};
|
|
111
|
+
declare type Props = DropModeProps | FileModeProps;
|
|
112
|
+
export default Props;
|