@pareto-engineering/design-system 4.0.0-alpha.63 → 4.0.0-alpha.65
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/dist/cjs/f/FormInput/FormInput.js +13 -43
- package/dist/cjs/f/common/Label/Label.js +3 -18
- package/dist/cjs/f/common/Label/styles.scss +0 -5
- package/dist/cjs/f/common/index.js +1 -21
- package/dist/cjs/f/fields/Checkbox/Checkbox.js +10 -20
- package/dist/cjs/f/fields/Checkbox/styles.scss +7 -5
- package/dist/cjs/f/fields/ChoicesInput/ChoicesInput.js +8 -21
- package/dist/cjs/f/fields/ChoicesInput/styles.scss +44 -41
- package/dist/cjs/f/fields/EditorInput/EditorInput.js +8 -33
- package/dist/cjs/f/fields/EditorInput/styles.scss +92 -90
- package/dist/cjs/f/fields/LinkInput/LinkInput.js +10 -20
- package/dist/cjs/f/fields/LinkInput/styles.scss +52 -51
- package/dist/cjs/f/fields/QueryChoices/QueryChoices.js +2 -26
- package/dist/cjs/f/fields/QueryCombobox/QueryCombobox.js +0 -24
- package/dist/cjs/f/fields/QueryCombobox/common/Combobox/Combobox.js +10 -17
- package/dist/cjs/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +13 -19
- package/dist/cjs/f/fields/QueryCombobox/styles.scss +11 -4
- package/dist/cjs/f/fields/QuerySelect/QuerySelect.js +2 -10
- package/dist/cjs/f/fields/RatingsInput/RatingsInput.js +11 -33
- package/dist/cjs/f/fields/RatingsInput/styles.scss +5 -1
- package/dist/cjs/f/fields/SelectInput/SelectInput.js +9 -33
- package/dist/cjs/f/fields/SelectInput/styles.scss +5 -2
- package/dist/cjs/f/fields/TextInput/TextInput.js +15 -37
- package/dist/cjs/f/fields/TextInput/styles.scss +37 -30
- package/dist/cjs/f/fields/TextareaInput/TextareaInput.js +11 -35
- package/dist/cjs/f/fields/TextareaInput/styles.scss +30 -27
- package/dist/cjs/f/fields/index.js +1 -26
- package/dist/es/f/FormInput/FormInput.js +3 -33
- package/dist/es/f/common/Description/Description.js +1 -1
- package/dist/es/f/common/Label/Label.js +4 -20
- package/dist/es/f/common/Label/styles.scss +0 -5
- package/dist/es/f/common/index.js +1 -3
- package/dist/es/f/fields/Checkbox/Checkbox.js +11 -20
- package/dist/es/f/fields/Checkbox/styles.scss +7 -5
- package/dist/es/f/fields/ChoicesInput/ChoicesInput.js +9 -22
- package/dist/es/f/fields/ChoicesInput/styles.scss +44 -41
- package/dist/es/f/fields/EditorInput/EditorInput.js +9 -34
- package/dist/es/f/fields/EditorInput/styles.scss +92 -90
- package/dist/es/f/fields/LinkInput/LinkInput.js +11 -19
- package/dist/es/f/fields/LinkInput/styles.scss +52 -51
- package/dist/es/f/fields/QueryChoices/QueryChoices.js +2 -26
- package/dist/es/f/fields/QueryCombobox/QueryCombobox.js +1 -25
- package/dist/es/f/fields/QueryCombobox/common/Combobox/Combobox.js +11 -18
- package/dist/es/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +14 -20
- package/dist/es/f/fields/QueryCombobox/styles.scss +11 -4
- package/dist/es/f/fields/QuerySelect/QuerySelect.js +2 -10
- package/dist/es/f/fields/RatingsInput/RatingsInput.js +12 -35
- package/dist/es/f/fields/RatingsInput/styles.scss +5 -1
- package/dist/es/f/fields/SelectInput/SelectInput.js +10 -34
- package/dist/es/f/fields/SelectInput/styles.scss +5 -2
- package/dist/es/f/fields/TextInput/TextInput.js +16 -36
- package/dist/es/f/fields/TextInput/styles.scss +37 -30
- package/dist/es/f/fields/TextareaInput/TextareaInput.js +11 -35
- package/dist/es/f/fields/TextareaInput/styles.scss +30 -27
- package/dist/es/f/fields/index.js +1 -2
- package/package.json +3 -3
- package/src/stories/f/Checkbox.stories.jsx +13 -21
- package/src/stories/f/ChoicesInput.stories.jsx +12 -27
- package/src/stories/f/EditorInput.stories.jsx +7 -14
- package/src/stories/f/LinkInput.stories.jsx +15 -22
- package/src/stories/f/QueryChoices.stories.jsx +12 -19
- package/src/stories/f/QueryCombobox.stories.jsx +16 -24
- package/src/stories/f/QuerySelect.stories.jsx +12 -19
- package/src/stories/f/RatingsInput.stories.jsx +7 -14
- package/src/stories/f/SelectInput.stories.jsx +12 -19
- package/src/stories/f/TextInput.stories.jsx +16 -23
- package/src/stories/f/TextareaInput.stories.jsx +7 -14
- package/src/ui/f/FormInput/FormInput.jsx +12 -57
- package/src/ui/f/common/Description/Description.jsx +2 -2
- package/src/ui/f/common/Label/Label.jsx +2 -20
- package/src/ui/f/common/Label/styles.scss +0 -5
- package/src/ui/f/common/index.js +0 -2
- package/src/ui/f/fields/Checkbox/Checkbox.jsx +22 -33
- package/src/ui/f/fields/Checkbox/styles.scss +7 -5
- package/src/ui/f/fields/ChoicesInput/ChoicesInput.jsx +43 -57
- package/src/ui/f/fields/ChoicesInput/styles.scss +44 -41
- package/src/ui/f/fields/EditorInput/EditorInput.jsx +13 -40
- package/src/ui/f/fields/EditorInput/styles.scss +92 -90
- package/src/ui/f/fields/LinkInput/LinkInput.jsx +35 -44
- package/src/ui/f/fields/LinkInput/styles.scss +52 -51
- package/src/ui/f/fields/QueryChoices/QueryChoices.jsx +0 -28
- package/src/ui/f/fields/QueryCombobox/QueryCombobox.jsx +2 -30
- package/src/ui/f/fields/QueryCombobox/common/Combobox/Combobox.jsx +32 -41
- package/src/ui/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.jsx +55 -62
- package/src/ui/f/fields/QueryCombobox/styles.scss +11 -4
- package/src/ui/f/fields/QuerySelect/QuerySelect.jsx +0 -8
- package/src/ui/f/fields/RatingsInput/RatingsInput.jsx +16 -46
- package/src/ui/f/fields/RatingsInput/styles.scss +5 -1
- package/src/ui/f/fields/SelectInput/SelectInput.jsx +28 -58
- package/src/ui/f/fields/SelectInput/styles.scss +5 -2
- package/src/ui/f/fields/TextInput/TextInput.jsx +24 -49
- package/src/ui/f/fields/TextInput/styles.scss +37 -30
- package/src/ui/f/fields/TextareaInput/TextareaInput.jsx +28 -57
- package/src/ui/f/fields/TextareaInput/styles.scss +30 -27
- package/src/ui/f/fields/index.js +0 -1
- package/tests/__snapshots__/Storyshots.test.js.snap +609 -8434
- package/dist/cjs/f/common/InputWrapper/InputWrapper.js +0 -73
- package/dist/cjs/f/common/InputWrapper/index.js +0 -13
- package/dist/cjs/f/common/InputWrapper/styles.scss +0 -13
- package/dist/cjs/f/common/V2/Description/Description.js +0 -76
- package/dist/cjs/f/common/V2/Description/index.js +0 -13
- package/dist/cjs/f/common/V2/Description/styles.scss +0 -10
- package/dist/cjs/f/common/V2/Label/Label.js +0 -84
- package/dist/cjs/f/common/V2/Label/index.js +0 -13
- package/dist/cjs/f/common/V2/Label/styles.scss +0 -9
- package/dist/cjs/f/common/V2/index.js +0 -19
- package/dist/cjs/f/fields/V2/Checkbox/Checkbox.js +0 -122
- package/dist/cjs/f/fields/V2/Checkbox/index.js +0 -13
- package/dist/cjs/f/fields/V2/Checkbox/styles.scss +0 -16
- package/dist/cjs/f/fields/V2/ChoicesInput/ChoicesInput.js +0 -154
- package/dist/cjs/f/fields/V2/ChoicesInput/common/Choice/Choice.js +0 -104
- package/dist/cjs/f/fields/V2/ChoicesInput/common/Choice/index.js +0 -13
- package/dist/cjs/f/fields/V2/ChoicesInput/common/index.js +0 -12
- package/dist/cjs/f/fields/V2/ChoicesInput/index.js +0 -13
- package/dist/cjs/f/fields/V2/ChoicesInput/styles.scss +0 -79
- package/dist/cjs/f/fields/V2/EditorInput/EditorInput.js +0 -197
- package/dist/cjs/f/fields/V2/EditorInput/common/Toolbar.js +0 -257
- package/dist/cjs/f/fields/V2/EditorInput/common/TreeViewPlugin.js +0 -18
- package/dist/cjs/f/fields/V2/EditorInput/common/index.js +0 -20
- package/dist/cjs/f/fields/V2/EditorInput/index.js +0 -13
- package/dist/cjs/f/fields/V2/EditorInput/styles.scss +0 -149
- package/dist/cjs/f/fields/V2/LinkInput/LinkInput.js +0 -156
- package/dist/cjs/f/fields/V2/LinkInput/index.js +0 -13
- package/dist/cjs/f/fields/V2/LinkInput/styles.scss +0 -90
- package/dist/cjs/f/fields/V2/QueryChoices/QueryChoices.js +0 -137
- package/dist/cjs/f/fields/V2/QueryChoices/index.js +0 -13
- package/dist/cjs/f/fields/V2/QueryCombobox/QueryCombobox.js +0 -229
- package/dist/cjs/f/fields/V2/QueryCombobox/common/Combobox/Combobox.js +0 -236
- package/dist/cjs/f/fields/V2/QueryCombobox/common/Combobox/index.js +0 -13
- package/dist/cjs/f/fields/V2/QueryCombobox/common/Menu/Menu.js +0 -83
- package/dist/cjs/f/fields/V2/QueryCombobox/common/Menu/index.js +0 -13
- package/dist/cjs/f/fields/V2/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +0 -300
- package/dist/cjs/f/fields/V2/QueryCombobox/common/MultipleCombobox/index.js +0 -13
- package/dist/cjs/f/fields/V2/QueryCombobox/common/index.js +0 -26
- package/dist/cjs/f/fields/V2/QueryCombobox/index.js +0 -13
- package/dist/cjs/f/fields/V2/QueryCombobox/styles.scss +0 -127
- package/dist/cjs/f/fields/V2/QuerySelect/QuerySelect.js +0 -198
- package/dist/cjs/f/fields/V2/QuerySelect/index.js +0 -13
- package/dist/cjs/f/fields/V2/RatingsInput/RatingsInput.js +0 -130
- package/dist/cjs/f/fields/V2/RatingsInput/common/Rating/Rating.js +0 -117
- package/dist/cjs/f/fields/V2/RatingsInput/common/Rating/index.js +0 -13
- package/dist/cjs/f/fields/V2/RatingsInput/common/index.js +0 -12
- package/dist/cjs/f/fields/V2/RatingsInput/index.js +0 -13
- package/dist/cjs/f/fields/V2/RatingsInput/styles.scss +0 -48
- package/dist/cjs/f/fields/V2/SelectInput/SelectInput.js +0 -154
- package/dist/cjs/f/fields/V2/SelectInput/index.js +0 -13
- package/dist/cjs/f/fields/V2/SelectInput/styles.scss +0 -87
- package/dist/cjs/f/fields/V2/TextInput/TextInput.js +0 -155
- package/dist/cjs/f/fields/V2/TextInput/index.js +0 -13
- package/dist/cjs/f/fields/V2/TextInput/styles.scss +0 -78
- package/dist/cjs/f/fields/V2/TextareaInput/TextareaInput.js +0 -152
- package/dist/cjs/f/fields/V2/TextareaInput/index.js +0 -13
- package/dist/cjs/f/fields/V2/TextareaInput/styles.scss +0 -53
- package/dist/cjs/f/fields/V2/index.js +0 -82
- package/dist/es/f/common/InputWrapper/InputWrapper.js +0 -61
- package/dist/es/f/common/InputWrapper/index.js +0 -2
- package/dist/es/f/common/InputWrapper/styles.scss +0 -13
- package/dist/es/f/common/V2/Description/Description.js +0 -68
- package/dist/es/f/common/V2/Description/index.js +0 -2
- package/dist/es/f/common/V2/Description/styles.scss +0 -10
- package/dist/es/f/common/V2/Label/Label.js +0 -76
- package/dist/es/f/common/V2/Label/index.js +0 -2
- package/dist/es/f/common/V2/Label/styles.scss +0 -9
- package/dist/es/f/common/V2/index.js +0 -2
- package/dist/es/f/fields/V2/Checkbox/Checkbox.js +0 -114
- package/dist/es/f/fields/V2/Checkbox/index.js +0 -2
- package/dist/es/f/fields/V2/Checkbox/styles.scss +0 -16
- package/dist/es/f/fields/V2/ChoicesInput/ChoicesInput.js +0 -148
- package/dist/es/f/fields/V2/ChoicesInput/common/Choice/Choice.js +0 -97
- package/dist/es/f/fields/V2/ChoicesInput/common/Choice/index.js +0 -2
- package/dist/es/f/fields/V2/ChoicesInput/common/index.js +0 -1
- package/dist/es/f/fields/V2/ChoicesInput/index.js +0 -2
- package/dist/es/f/fields/V2/ChoicesInput/styles.scss +0 -79
- package/dist/es/f/fields/V2/EditorInput/EditorInput.js +0 -192
- package/dist/es/f/fields/V2/EditorInput/common/Toolbar.js +0 -246
- package/dist/es/f/fields/V2/EditorInput/common/TreeViewPlugin.js +0 -11
- package/dist/es/f/fields/V2/EditorInput/common/index.js +0 -2
- package/dist/es/f/fields/V2/EditorInput/index.js +0 -2
- package/dist/es/f/fields/V2/EditorInput/styles.scss +0 -149
- package/dist/es/f/fields/V2/LinkInput/LinkInput.js +0 -148
- package/dist/es/f/fields/V2/LinkInput/index.js +0 -2
- package/dist/es/f/fields/V2/LinkInput/styles.scss +0 -90
- package/dist/es/f/fields/V2/QueryChoices/QueryChoices.js +0 -126
- package/dist/es/f/fields/V2/QueryChoices/index.js +0 -2
- package/dist/es/f/fields/V2/QueryCombobox/QueryCombobox.js +0 -221
- package/dist/es/f/fields/V2/QueryCombobox/common/Combobox/Combobox.js +0 -229
- package/dist/es/f/fields/V2/QueryCombobox/common/Combobox/index.js +0 -2
- package/dist/es/f/fields/V2/QueryCombobox/common/Menu/Menu.js +0 -73
- package/dist/es/f/fields/V2/QueryCombobox/common/Menu/index.js +0 -2
- package/dist/es/f/fields/V2/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +0 -293
- package/dist/es/f/fields/V2/QueryCombobox/common/MultipleCombobox/index.js +0 -2
- package/dist/es/f/fields/V2/QueryCombobox/common/index.js +0 -3
- package/dist/es/f/fields/V2/QueryCombobox/index.js +0 -2
- package/dist/es/f/fields/V2/QueryCombobox/styles.scss +0 -127
- package/dist/es/f/fields/V2/QuerySelect/QuerySelect.js +0 -186
- package/dist/es/f/fields/V2/QuerySelect/index.js +0 -2
- package/dist/es/f/fields/V2/RatingsInput/RatingsInput.js +0 -124
- package/dist/es/f/fields/V2/RatingsInput/common/Rating/Rating.js +0 -109
- package/dist/es/f/fields/V2/RatingsInput/common/Rating/index.js +0 -2
- package/dist/es/f/fields/V2/RatingsInput/common/index.js +0 -1
- package/dist/es/f/fields/V2/RatingsInput/index.js +0 -2
- package/dist/es/f/fields/V2/RatingsInput/styles.scss +0 -48
- package/dist/es/f/fields/V2/SelectInput/SelectInput.js +0 -146
- package/dist/es/f/fields/V2/SelectInput/index.js +0 -2
- package/dist/es/f/fields/V2/SelectInput/styles.scss +0 -87
- package/dist/es/f/fields/V2/TextInput/TextInput.js +0 -147
- package/dist/es/f/fields/V2/TextInput/index.js +0 -2
- package/dist/es/f/fields/V2/TextInput/styles.scss +0 -78
- package/dist/es/f/fields/V2/TextareaInput/TextareaInput.js +0 -146
- package/dist/es/f/fields/V2/TextareaInput/index.js +0 -2
- package/dist/es/f/fields/V2/TextareaInput/styles.scss +0 -53
- package/dist/es/f/fields/V2/index.js +0 -11
- package/src/stories/f/v2/Checkbox.stories.jsx +0 -102
- package/src/stories/f/v2/ChoicesInput.stories.jsx +0 -139
- package/src/stories/f/v2/EditorInput.stories.jsx +0 -81
- package/src/stories/f/v2/LinkInput.stories.jsx +0 -93
- package/src/stories/f/v2/QueryChoices.stories.jsx +0 -144
- package/src/stories/f/v2/QueryCombobox.stories.jsx +0 -301
- package/src/stories/f/v2/QuerySelect.stories.jsx +0 -150
- package/src/stories/f/v2/RatingsInput.stories.jsx +0 -77
- package/src/stories/f/v2/SelectInput.stories.jsx +0 -95
- package/src/stories/f/v2/TextInput.stories.jsx +0 -120
- package/src/stories/f/v2/TextareaInput.stories.jsx +0 -107
- package/src/stories/f/v2/__generated__/FormInputAllTaskStatusesQuery.graphql.js +0 -122
- package/src/stories/f/v2/__generated__/FormInputAllTeamsQuery.graphql.js +0 -139
- package/src/stories/f/v2/__generated__/QueryChoicesAllTaskStatusesQuery.graphql.js +0 -122
- package/src/stories/f/v2/__generated__/QueryComboboxAllTeamsQuery.graphql.js +0 -139
- package/src/stories/f/v2/__generated__/QuerySelectAllTaskStatusesQuery.graphql.js +0 -122
- package/src/ui/f/common/InputWrapper/InputWrapper.jsx +0 -83
- package/src/ui/f/common/InputWrapper/index.js +0 -2
- package/src/ui/f/common/InputWrapper/styles.scss +0 -13
- package/src/ui/f/common/V2/Description/Description.jsx +0 -94
- package/src/ui/f/common/V2/Description/index.js +0 -2
- package/src/ui/f/common/V2/Description/styles.scss +0 -10
- package/src/ui/f/common/V2/Label/Label.jsx +0 -102
- package/src/ui/f/common/V2/Label/index.js +0 -2
- package/src/ui/f/common/V2/Label/styles.scss +0 -9
- package/src/ui/f/common/V2/index.js +0 -2
- package/src/ui/f/fields/V2/Checkbox/Checkbox.jsx +0 -146
- package/src/ui/f/fields/V2/Checkbox/index.js +0 -2
- package/src/ui/f/fields/V2/Checkbox/styles.scss +0 -16
- package/src/ui/f/fields/V2/ChoicesInput/ChoicesInput.jsx +0 -183
- package/src/ui/f/fields/V2/ChoicesInput/common/Choice/Choice.jsx +0 -125
- package/src/ui/f/fields/V2/ChoicesInput/common/Choice/index.js +0 -2
- package/src/ui/f/fields/V2/ChoicesInput/common/index.js +0 -1
- package/src/ui/f/fields/V2/ChoicesInput/index.js +0 -2
- package/src/ui/f/fields/V2/ChoicesInput/styles.scss +0 -79
- package/src/ui/f/fields/V2/EditorInput/EditorInput.jsx +0 -244
- package/src/ui/f/fields/V2/EditorInput/common/Toolbar.jsx +0 -356
- package/src/ui/f/fields/V2/EditorInput/common/TreeViewPlugin.jsx +0 -16
- package/src/ui/f/fields/V2/EditorInput/common/index.jsx +0 -2
- package/src/ui/f/fields/V2/EditorInput/index.js +0 -2
- package/src/ui/f/fields/V2/EditorInput/styles.scss +0 -149
- package/src/ui/f/fields/V2/LinkInput/LinkInput.jsx +0 -187
- package/src/ui/f/fields/V2/LinkInput/index.js +0 -2
- package/src/ui/f/fields/V2/LinkInput/styles.scss +0 -90
- package/src/ui/f/fields/V2/QueryChoices/QueryChoices.jsx +0 -153
- package/src/ui/f/fields/V2/QueryChoices/index.js +0 -2
- package/src/ui/f/fields/V2/QueryCombobox/QueryCombobox.jsx +0 -254
- package/src/ui/f/fields/V2/QueryCombobox/common/Combobox/Combobox.jsx +0 -276
- package/src/ui/f/fields/V2/QueryCombobox/common/Combobox/index.js +0 -2
- package/src/ui/f/fields/V2/QueryCombobox/common/Menu/Menu.jsx +0 -103
- package/src/ui/f/fields/V2/QueryCombobox/common/Menu/index.js +0 -2
- package/src/ui/f/fields/V2/QueryCombobox/common/MultipleCombobox/MultipleCombobox.jsx +0 -362
- package/src/ui/f/fields/V2/QueryCombobox/common/MultipleCombobox/index.js +0 -2
- package/src/ui/f/fields/V2/QueryCombobox/common/index.js +0 -3
- package/src/ui/f/fields/V2/QueryCombobox/index.js +0 -2
- package/src/ui/f/fields/V2/QueryCombobox/styles.scss +0 -127
- package/src/ui/f/fields/V2/QuerySelect/QuerySelect.jsx +0 -220
- package/src/ui/f/fields/V2/QuerySelect/index.js +0 -2
- package/src/ui/f/fields/V2/RatingsInput/RatingsInput.jsx +0 -152
- package/src/ui/f/fields/V2/RatingsInput/common/Rating/Rating.jsx +0 -142
- package/src/ui/f/fields/V2/RatingsInput/common/Rating/index.js +0 -2
- package/src/ui/f/fields/V2/RatingsInput/common/index.js +0 -1
- package/src/ui/f/fields/V2/RatingsInput/index.js +0 -2
- package/src/ui/f/fields/V2/RatingsInput/styles.scss +0 -48
- package/src/ui/f/fields/V2/SelectInput/SelectInput.jsx +0 -187
- package/src/ui/f/fields/V2/SelectInput/index.js +0 -2
- package/src/ui/f/fields/V2/SelectInput/styles.scss +0 -87
- package/src/ui/f/fields/V2/TextInput/TextInput.jsx +0 -192
- package/src/ui/f/fields/V2/TextInput/index.js +0 -2
- package/src/ui/f/fields/V2/TextInput/styles.scss +0 -78
- package/src/ui/f/fields/V2/TextareaInput/TextareaInput.jsx +0 -180
- package/src/ui/f/fields/V2/TextareaInput/index.js +0 -2
- package/src/ui/f/fields/V2/TextareaInput/styles.scss +0 -53
- package/src/ui/f/fields/V2/index.js +0 -11
|
@@ -1,300 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var React = _react;
|
|
9
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
|
-
var _exports = _interopRequireDefault(require("@pareto-engineering/bem/exports"));
|
|
11
|
-
var _downshift = require("downshift");
|
|
12
|
-
var _b = require("../../../../../../b");
|
|
13
|
-
var _a = require("../../../../../../a");
|
|
14
|
-
var _ = require("../../../../..");
|
|
15
|
-
var _common = require("../../../../../common");
|
|
16
|
-
var _Menu = require("../Menu");
|
|
17
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
18
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
19
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
20
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } /* @pareto-engineering/generator-front 1.0.12 */ // Local Definitions
|
|
21
|
-
const baseClassName = _exports.default.base;
|
|
22
|
-
const componentClassName = 'multiple-combobox';
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* @param {Array[Object]} first - first array to check if it has an item not in the second array.
|
|
26
|
-
* @param {Array[Object]} second - second array to check against the first array.
|
|
27
|
-
*
|
|
28
|
-
* @returns {Boolean} - true if the first array has an item not in the second array.
|
|
29
|
-
*/
|
|
30
|
-
const testIfArraysAreUnique = (first, second) => first.filter(objInFirstArray => !second.some(objInSecondArray => objInFirstArray.value === objInSecondArray.value)).length > 0;
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* This is the component description.
|
|
34
|
-
*/
|
|
35
|
-
const MultipleCombobox = _ref => {
|
|
36
|
-
let {
|
|
37
|
-
id,
|
|
38
|
-
className: userClassName,
|
|
39
|
-
style,
|
|
40
|
-
label,
|
|
41
|
-
labelColor,
|
|
42
|
-
name,
|
|
43
|
-
optional,
|
|
44
|
-
options: items,
|
|
45
|
-
getOptions,
|
|
46
|
-
setValue,
|
|
47
|
-
description,
|
|
48
|
-
value,
|
|
49
|
-
color,
|
|
50
|
-
isFetching,
|
|
51
|
-
minLength,
|
|
52
|
-
transformSearch,
|
|
53
|
-
disabled,
|
|
54
|
-
placeholder,
|
|
55
|
-
setOptions,
|
|
56
|
-
promptCreateNewOption
|
|
57
|
-
// ...otherProps
|
|
58
|
-
} = _ref;
|
|
59
|
-
const [searchInputValue, setSearchInputValue] = (0, _react.useState)('');
|
|
60
|
-
const {
|
|
61
|
-
getSelectedItemProps,
|
|
62
|
-
getDropdownProps,
|
|
63
|
-
addSelectedItem,
|
|
64
|
-
removeSelectedItem,
|
|
65
|
-
setSelectedItems,
|
|
66
|
-
selectedItems
|
|
67
|
-
} = (0, _downshift.useMultipleSelection)({
|
|
68
|
-
initialSelectedItems: value || []
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
/**
|
|
72
|
-
* @returns {Boolean} - Unique items from the options array so that the combobox
|
|
73
|
-
* shows only the options that are not yet selected.
|
|
74
|
-
*/
|
|
75
|
-
const getFilteredItems = () => items.filter(item => selectedItems.findIndex(e => e.label === item.label) < 0);
|
|
76
|
-
const {
|
|
77
|
-
isOpen,
|
|
78
|
-
getLabelProps,
|
|
79
|
-
getMenuProps,
|
|
80
|
-
getInputProps,
|
|
81
|
-
getComboboxProps,
|
|
82
|
-
highlightedIndex,
|
|
83
|
-
getItemProps,
|
|
84
|
-
inputValue,
|
|
85
|
-
setInputValue
|
|
86
|
-
} = (0, _downshift.useCombobox)({
|
|
87
|
-
searchInputValue,
|
|
88
|
-
defaultHighlightedIndex: 0,
|
|
89
|
-
// after selection, highlight the first item.
|
|
90
|
-
selectedItem: null,
|
|
91
|
-
items: getFilteredItems(),
|
|
92
|
-
circularNavigation: true,
|
|
93
|
-
stateReducer: (state, actionAndChanges) => {
|
|
94
|
-
const {
|
|
95
|
-
changes,
|
|
96
|
-
type
|
|
97
|
-
} = actionAndChanges;
|
|
98
|
-
switch (type) {
|
|
99
|
-
case _downshift.useCombobox.stateChangeTypes.InputKeyDownEnter:
|
|
100
|
-
case _downshift.useCombobox.stateChangeTypes.ItemClick:
|
|
101
|
-
return {
|
|
102
|
-
...changes,
|
|
103
|
-
isOpen: true // keep the menu open after selection.
|
|
104
|
-
};
|
|
105
|
-
|
|
106
|
-
default:
|
|
107
|
-
break;
|
|
108
|
-
}
|
|
109
|
-
return changes;
|
|
110
|
-
},
|
|
111
|
-
onStateChange: _ref2 => {
|
|
112
|
-
let {
|
|
113
|
-
inputValue: newSearchInputValue,
|
|
114
|
-
type,
|
|
115
|
-
selectedItem
|
|
116
|
-
} = _ref2;
|
|
117
|
-
switch (type) {
|
|
118
|
-
case _downshift.useCombobox.stateChangeTypes.InputChange:
|
|
119
|
-
{
|
|
120
|
-
const transformedInput = transformSearch(newSearchInputValue);
|
|
121
|
-
if (transformedInput.length > minLength) {
|
|
122
|
-
getOptions(transformedInput);
|
|
123
|
-
}
|
|
124
|
-
setSearchInputValue(newSearchInputValue);
|
|
125
|
-
break;
|
|
126
|
-
}
|
|
127
|
-
case _downshift.useCombobox.stateChangeTypes.InputKeyDownEnter:
|
|
128
|
-
case _downshift.useCombobox.stateChangeTypes.ItemClick:
|
|
129
|
-
case _downshift.useCombobox.stateChangeTypes.InputBlur:
|
|
130
|
-
if (selectedItem) {
|
|
131
|
-
setSearchInputValue('');
|
|
132
|
-
addSelectedItem(selectedItem);
|
|
133
|
-
}
|
|
134
|
-
break;
|
|
135
|
-
default:
|
|
136
|
-
break;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
});
|
|
140
|
-
(0, _react.useEffect)(() => {
|
|
141
|
-
if (selectedItems?.length > 0) {
|
|
142
|
-
setValue(selectedItems);
|
|
143
|
-
}
|
|
144
|
-
}, [selectedItems]);
|
|
145
|
-
(0, _react.useEffect)(() => {
|
|
146
|
-
if (promptCreateNewOption) {
|
|
147
|
-
(0, _common.lookUpInputValueFromFetchedOptions)({
|
|
148
|
-
items,
|
|
149
|
-
inputValue,
|
|
150
|
-
setOptions,
|
|
151
|
-
minLength
|
|
152
|
-
});
|
|
153
|
-
}
|
|
154
|
-
}, [inputValue, items, promptCreateNewOption]);
|
|
155
|
-
(0, _react.useEffect)(() => {
|
|
156
|
-
if (value?.length > 0 && (testIfArraysAreUnique(value, selectedItems) || testIfArraysAreUnique(selectedItems, value))) {
|
|
157
|
-
setSelectedItems(value);
|
|
158
|
-
}
|
|
159
|
-
}, [value]);
|
|
160
|
-
const parentRef = (0, _react.useRef)(null);
|
|
161
|
-
const resetInputValue = () => setInputValue('');
|
|
162
|
-
return /*#__PURE__*/React.createElement("div", _extends({
|
|
163
|
-
id: id,
|
|
164
|
-
className: [baseClassName, componentClassName, userClassName].filter(e => e).join(' '),
|
|
165
|
-
style: style,
|
|
166
|
-
ref: parentRef
|
|
167
|
-
}, getComboboxProps()), /*#__PURE__*/React.createElement(_.FormLabelV2, _extends({
|
|
168
|
-
className: [baseClassName, componentClassName].filter(e => e).join(' ')
|
|
169
|
-
}, getLabelProps(), {
|
|
170
|
-
name: name,
|
|
171
|
-
optional: optional,
|
|
172
|
-
color: labelColor
|
|
173
|
-
}), label), selectedItems?.length > 0 && /*#__PURE__*/React.createElement("div", {
|
|
174
|
-
className: "selected-items"
|
|
175
|
-
}, selectedItems.map((selectedItem, index) => /*#__PURE__*/React.createElement("div", _extends({
|
|
176
|
-
key: selectedItem.label
|
|
177
|
-
}, getSelectedItemProps({
|
|
178
|
-
selectedItem,
|
|
179
|
-
index
|
|
180
|
-
}), {
|
|
181
|
-
className: "item"
|
|
182
|
-
}), /*#__PURE__*/React.createElement(_b.Button, {
|
|
183
|
-
onClick: e => {
|
|
184
|
-
e.stopPropagation();
|
|
185
|
-
removeSelectedItem(selectedItem);
|
|
186
|
-
},
|
|
187
|
-
isCompact: true,
|
|
188
|
-
color: color
|
|
189
|
-
}, /*#__PURE__*/React.createElement("span", null, selectedItem.label), /*#__PURE__*/React.createElement("span", {
|
|
190
|
-
className: "icon close"
|
|
191
|
-
}, "Y"))))), /*#__PURE__*/React.createElement("input", _extends({}, getInputProps(getDropdownProps({
|
|
192
|
-
preventKeyAction: isOpen
|
|
193
|
-
})), {
|
|
194
|
-
className: "input",
|
|
195
|
-
disabled: disabled,
|
|
196
|
-
placeholder: placeholder
|
|
197
|
-
})), isFetching && /*#__PURE__*/React.createElement(_a.LoadingCircle, {
|
|
198
|
-
className: "x-main"
|
|
199
|
-
}), inputValue.length > minLength && !isFetching && /*#__PURE__*/React.createElement(_b.Button, {
|
|
200
|
-
isSimple: true,
|
|
201
|
-
isCompact: true,
|
|
202
|
-
color: "interactive",
|
|
203
|
-
onClick: resetInputValue
|
|
204
|
-
}, /*#__PURE__*/React.createElement("span", {
|
|
205
|
-
className: "icon"
|
|
206
|
-
}, "Y")), /*#__PURE__*/React.createElement(_.FormDescriptionV2, {
|
|
207
|
-
className: "s-1",
|
|
208
|
-
description: description,
|
|
209
|
-
name: name
|
|
210
|
-
}), /*#__PURE__*/React.createElement(_a.Popover, {
|
|
211
|
-
isOpen: isOpen,
|
|
212
|
-
parentRef: parentRef
|
|
213
|
-
}, /*#__PURE__*/React.createElement(_Menu.Menu, _extends({
|
|
214
|
-
className: `y-${color}`,
|
|
215
|
-
isOpen: isOpen,
|
|
216
|
-
getItemProps: getItemProps,
|
|
217
|
-
highlightedIndex: highlightedIndex,
|
|
218
|
-
items: getFilteredItems()
|
|
219
|
-
}, getMenuProps()))));
|
|
220
|
-
};
|
|
221
|
-
MultipleCombobox.propTypes = {
|
|
222
|
-
/**
|
|
223
|
-
* The HTML id for this element
|
|
224
|
-
*/
|
|
225
|
-
id: _propTypes.default.string,
|
|
226
|
-
/**
|
|
227
|
-
* The HTML class names for this element
|
|
228
|
-
*/
|
|
229
|
-
className: _propTypes.default.string,
|
|
230
|
-
/**
|
|
231
|
-
* The React-written, css properties for this element.
|
|
232
|
-
*/
|
|
233
|
-
style: _propTypes.default.objectOf(_propTypes.default.string),
|
|
234
|
-
/**
|
|
235
|
-
* The label of the custom select input
|
|
236
|
-
*/
|
|
237
|
-
label: _propTypes.default.string,
|
|
238
|
-
/**
|
|
239
|
-
* The custom select input options from the backend
|
|
240
|
-
*/
|
|
241
|
-
options: _propTypes.default.arrayOf(_propTypes.default.shape({
|
|
242
|
-
value: _propTypes.default.string,
|
|
243
|
-
label: _propTypes.default.string
|
|
244
|
-
})),
|
|
245
|
-
/**
|
|
246
|
-
* The name of the custom select input
|
|
247
|
-
*/
|
|
248
|
-
name: _propTypes.default.string,
|
|
249
|
-
/**
|
|
250
|
-
* The function to fetch the options from the backend
|
|
251
|
-
*/
|
|
252
|
-
getOptions: _propTypes.default.func,
|
|
253
|
-
/**
|
|
254
|
-
* The function to set the value of the custom select input
|
|
255
|
-
*/
|
|
256
|
-
setValue: _propTypes.default.func.isRequired,
|
|
257
|
-
/**
|
|
258
|
-
* The custom select input description
|
|
259
|
-
*/
|
|
260
|
-
description: _propTypes.default.string,
|
|
261
|
-
/**
|
|
262
|
-
* The value of the custom select input
|
|
263
|
-
*/
|
|
264
|
-
value: _propTypes.default.arrayOf(_propTypes.default.shape({
|
|
265
|
-
value: _propTypes.default.string,
|
|
266
|
-
label: _propTypes.default.string
|
|
267
|
-
})),
|
|
268
|
-
/**
|
|
269
|
-
* The base color of the custom select input
|
|
270
|
-
*/
|
|
271
|
-
color: _propTypes.default.string,
|
|
272
|
-
/**
|
|
273
|
-
* Whether the query getting the combobox options is inFlight
|
|
274
|
-
*/
|
|
275
|
-
isFetching: _propTypes.default.bool.isRequired,
|
|
276
|
-
/**
|
|
277
|
-
* The minimum length of the search input to start fetching the options
|
|
278
|
-
*/
|
|
279
|
-
minLength: _propTypes.default.number,
|
|
280
|
-
/**
|
|
281
|
-
* The function to transform the search input
|
|
282
|
-
*/
|
|
283
|
-
transformSearch: _propTypes.default.func,
|
|
284
|
-
/**
|
|
285
|
-
* Whether the input filed shpuld be disabled
|
|
286
|
-
*/
|
|
287
|
-
disabled: _propTypes.default.bool,
|
|
288
|
-
/**
|
|
289
|
-
* Whether the input is optional or not
|
|
290
|
-
*/
|
|
291
|
-
optional: _propTypes.default.bool,
|
|
292
|
-
/**
|
|
293
|
-
* The placeholder text for the input
|
|
294
|
-
*/
|
|
295
|
-
placeholder: _propTypes.default.string
|
|
296
|
-
};
|
|
297
|
-
MultipleCombobox.defaultProps = {
|
|
298
|
-
// someProp: false
|
|
299
|
-
};
|
|
300
|
-
var _default = exports.default = MultipleCombobox;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "MultipleCombobox", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _MultipleCombobox.default;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _MultipleCombobox = _interopRequireDefault(require("./MultipleCombobox"));
|
|
13
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "Combobox", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _Combobox.Combobox;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "Menu", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function () {
|
|
15
|
-
return _Menu.Menu;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
Object.defineProperty(exports, "MultipleCombobox", {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function () {
|
|
21
|
-
return _MultipleCombobox.MultipleCombobox;
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
var _Menu = require("./Menu");
|
|
25
|
-
var _Combobox = require("./Combobox");
|
|
26
|
-
var _MultipleCombobox = require("./MultipleCombobox");
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "QueryCombobox", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _QueryCombobox.default;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _QueryCombobox = _interopRequireDefault(require("./QueryCombobox"));
|
|
13
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
/* @pareto-engineering/generator-front 1.0.12 */
|
|
2
|
-
/* stylelint-disable max-nesting-depth -- needed here */
|
|
3
|
-
/* stylelint-disable selector-max-compound-selectors -- needed here */
|
|
4
|
-
|
|
5
|
-
@use "@pareto-engineering/bem";
|
|
6
|
-
@use "@pareto-engineering/styles/src/mixins";
|
|
7
|
-
@use "@pareto-engineering/styles/src/globals" as *;
|
|
8
|
-
|
|
9
|
-
$default-input-padding: .55em .75em;
|
|
10
|
-
$default-gap: var(--gap);
|
|
11
|
-
$default-loading-circle-displacement: .5em;
|
|
12
|
-
$default-input-border-radius: var(--theme-default-input-border-radius);
|
|
13
|
-
$default-border: var(--theme-default-input-border);
|
|
14
|
-
$hover-border: var(--theme-hover-input-border);
|
|
15
|
-
$focus-border: var(--theme-focus-input-border);
|
|
16
|
-
$default-background: var(--background-inputs);
|
|
17
|
-
$on-default-background: var(--paragraph);
|
|
18
|
-
$disabled-background: var(--background-inputs-30);
|
|
19
|
-
$on-disabled-background: var(--on-background-inputs-30);
|
|
20
|
-
|
|
21
|
-
.#{bem.$base}.combobox,
|
|
22
|
-
.#{bem.$base}.multiple-combobox {
|
|
23
|
-
display: flex;
|
|
24
|
-
flex-direction: column;
|
|
25
|
-
outline: none;
|
|
26
|
-
position: relative;
|
|
27
|
-
|
|
28
|
-
> .#{bem.$base}.form-label {
|
|
29
|
-
margin-bottom: var(--gap);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
.#{bem.$base}.popover {
|
|
34
|
-
border: $default-border;
|
|
35
|
-
border-radius: $default-input-border-radius;
|
|
36
|
-
width: 100%;
|
|
37
|
-
|
|
38
|
-
>.menu {
|
|
39
|
-
list-style: none;
|
|
40
|
-
margin: 0;
|
|
41
|
-
outline: 0;
|
|
42
|
-
padding: 0;
|
|
43
|
-
|
|
44
|
-
>.item {
|
|
45
|
-
border-radius: $default-input-border-radius;
|
|
46
|
-
padding: $default-input-padding;
|
|
47
|
-
|
|
48
|
-
> p {
|
|
49
|
-
margin: 0;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
&.#{bem.$modifier-active} {
|
|
53
|
-
background-color: var(--y);
|
|
54
|
-
|
|
55
|
-
> p {
|
|
56
|
-
color: var(--on-y);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
>.#{bem.$base}.loading-circle,
|
|
64
|
-
>.#{bem.$base}.button {
|
|
65
|
-
position: absolute;
|
|
66
|
-
right: $default-loading-circle-displacement;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
>.#{bem.$base}.loading-circle {
|
|
70
|
-
top: calc($default-loading-circle-displacement * 1.5);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
>.#{bem.$base}.button {
|
|
74
|
-
top: $default-loading-circle-displacement;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
> .input {
|
|
78
|
-
background: $default-background;
|
|
79
|
-
border: $default-border;
|
|
80
|
-
border-radius: calc(var(--theme-default-border-radius) / 2);
|
|
81
|
-
color: $on-default-background;
|
|
82
|
-
outline: none;
|
|
83
|
-
padding: $default-input-padding;
|
|
84
|
-
|
|
85
|
-
&::placeholder {
|
|
86
|
-
color: var(--metadata);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&:disabled {
|
|
90
|
-
background-color: $disabled-background;
|
|
91
|
-
color: $on-disabled-background;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
&:not(:disabled) {
|
|
95
|
-
&:hover,
|
|
96
|
-
&:active {
|
|
97
|
-
border: $hover-border;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
&:focus {
|
|
101
|
-
border: $focus-border;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
.#{bem.$base}.multiple-combobox {
|
|
109
|
-
>.selected-items {
|
|
110
|
-
display: flex;
|
|
111
|
-
flex-wrap: wrap;
|
|
112
|
-
gap: calc($default-gap / 2);
|
|
113
|
-
margin-bottom: calc($default-gap / 2);
|
|
114
|
-
|
|
115
|
-
>.item {
|
|
116
|
-
>.#{bem.$base}.button {
|
|
117
|
-
align-items: center;
|
|
118
|
-
display: flex;
|
|
119
|
-
gap: calc($default-gap / 2);
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.close {
|
|
123
|
-
font-size: calc(var(--s-3) * 1em);
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var React = _react;
|
|
9
|
-
var _reactRelay = require("react-relay");
|
|
10
|
-
var _formik = require("formik");
|
|
11
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
12
|
-
var _ = require("../../..");
|
|
13
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
16
|
-
/* @pareto-engineering/generator-front 1.0.12 */
|
|
17
|
-
|
|
18
|
-
// Local Definitions
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* This is the component description.
|
|
22
|
-
*/
|
|
23
|
-
const QuerySelect = _ref => {
|
|
24
|
-
let {
|
|
25
|
-
id,
|
|
26
|
-
className: userClassName,
|
|
27
|
-
style,
|
|
28
|
-
name,
|
|
29
|
-
label,
|
|
30
|
-
labelColor,
|
|
31
|
-
optional,
|
|
32
|
-
query,
|
|
33
|
-
variables,
|
|
34
|
-
optionsKeyMap,
|
|
35
|
-
description,
|
|
36
|
-
disabled,
|
|
37
|
-
color,
|
|
38
|
-
loadingOption,
|
|
39
|
-
defaultOption,
|
|
40
|
-
validate
|
|
41
|
-
// ...otherProps
|
|
42
|
-
} = _ref;
|
|
43
|
-
const [,, helpers] = (0, _formik.useField)({
|
|
44
|
-
name,
|
|
45
|
-
validate
|
|
46
|
-
});
|
|
47
|
-
const {
|
|
48
|
-
setError
|
|
49
|
-
} = helpers;
|
|
50
|
-
const environment = (0, _reactRelay.useRelayEnvironment)();
|
|
51
|
-
const [isFetching, setIsFetching] = (0, _react.useState)(false);
|
|
52
|
-
const [options, setOptions] = (0, _react.useState)([]);
|
|
53
|
-
const {
|
|
54
|
-
graphql,
|
|
55
|
-
accessor
|
|
56
|
-
} = query;
|
|
57
|
-
const getOptions = () => {
|
|
58
|
-
if (isFetching) return;
|
|
59
|
-
(0, _reactRelay.fetchQuery)(environment, graphql, variables).subscribe({
|
|
60
|
-
start: () => {
|
|
61
|
-
setIsFetching(true);
|
|
62
|
-
setOptions([loadingOption]);
|
|
63
|
-
},
|
|
64
|
-
complete: () => {
|
|
65
|
-
setIsFetching(false);
|
|
66
|
-
},
|
|
67
|
-
error: fetchError => {
|
|
68
|
-
setIsFetching(false);
|
|
69
|
-
if (setError) setError(fetchError.message);
|
|
70
|
-
},
|
|
71
|
-
next: data => {
|
|
72
|
-
setOptions([defaultOption, ...data[accessor].edges.map(_ref2 => {
|
|
73
|
-
let {
|
|
74
|
-
node
|
|
75
|
-
} = _ref2;
|
|
76
|
-
return {
|
|
77
|
-
value: node[optionsKeyMap.value],
|
|
78
|
-
label: optionsKeyMap.getLabel(node)
|
|
79
|
-
};
|
|
80
|
-
})]);
|
|
81
|
-
}
|
|
82
|
-
});
|
|
83
|
-
};
|
|
84
|
-
(0, _react.useEffect)(() => {
|
|
85
|
-
getOptions();
|
|
86
|
-
}, [variables]);
|
|
87
|
-
return /*#__PURE__*/React.createElement(_.SelectInput, {
|
|
88
|
-
id: id,
|
|
89
|
-
className: userClassName,
|
|
90
|
-
style: style,
|
|
91
|
-
name: name,
|
|
92
|
-
label: label,
|
|
93
|
-
optional: optional,
|
|
94
|
-
color: color,
|
|
95
|
-
labelColor: labelColor,
|
|
96
|
-
description: description,
|
|
97
|
-
disabled: isFetching || disabled,
|
|
98
|
-
options: options,
|
|
99
|
-
isLoading: isFetching
|
|
100
|
-
});
|
|
101
|
-
};
|
|
102
|
-
QuerySelect.propTypes = {
|
|
103
|
-
/**
|
|
104
|
-
* The HTML id for this element
|
|
105
|
-
*/
|
|
106
|
-
id: _propTypes.default.string,
|
|
107
|
-
/**
|
|
108
|
-
* The HTML class names for this element
|
|
109
|
-
*/
|
|
110
|
-
className: _propTypes.default.string,
|
|
111
|
-
/**
|
|
112
|
-
* The React-written, css properties for this element.
|
|
113
|
-
*/
|
|
114
|
-
style: _propTypes.default.objectOf(_propTypes.default.string),
|
|
115
|
-
/**
|
|
116
|
-
* The name of the custom select input
|
|
117
|
-
*/
|
|
118
|
-
name: _propTypes.default.string,
|
|
119
|
-
/**
|
|
120
|
-
* The label of the custom select input
|
|
121
|
-
*/
|
|
122
|
-
label: _propTypes.default.string,
|
|
123
|
-
/**
|
|
124
|
-
* The custom select input description
|
|
125
|
-
*/
|
|
126
|
-
description: _propTypes.default.string,
|
|
127
|
-
/**
|
|
128
|
-
* Whether the input should be disabled
|
|
129
|
-
*/
|
|
130
|
-
disabled: _propTypes.default.bool,
|
|
131
|
-
/**
|
|
132
|
-
* The base color of the custom select input
|
|
133
|
-
*/
|
|
134
|
-
color: _propTypes.default.string,
|
|
135
|
-
/**
|
|
136
|
-
* The label color of the custom select input
|
|
137
|
-
*/
|
|
138
|
-
labelColor: _propTypes.default.string,
|
|
139
|
-
/**
|
|
140
|
-
* The graphql query to fetch the options and the accessor to destructure the results from
|
|
141
|
-
*/
|
|
142
|
-
query: _propTypes.default.shape({
|
|
143
|
-
accessor: _propTypes.default.string,
|
|
144
|
-
graphql: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.object]).isRequired
|
|
145
|
-
}),
|
|
146
|
-
/**
|
|
147
|
-
* The variables that might be required to be used in the query to fetch
|
|
148
|
-
* select options.
|
|
149
|
-
*/
|
|
150
|
-
variables: _propTypes.default.objectOf(_propTypes.default.string),
|
|
151
|
-
/**
|
|
152
|
-
* The select option keys to be used to map the data to the select options.
|
|
153
|
-
* i.e `{ value: 'id', label: 'name' }`
|
|
154
|
-
*/
|
|
155
|
-
optionsKeyMap: _propTypes.default.shape({
|
|
156
|
-
value: _propTypes.default.string.isRequired,
|
|
157
|
-
getLabel: _propTypes.default.func.isRequired
|
|
158
|
-
}).isRequired,
|
|
159
|
-
/**
|
|
160
|
-
* The default select option for the query select
|
|
161
|
-
*/
|
|
162
|
-
defaultOption: _propTypes.default.shape({
|
|
163
|
-
value: _propTypes.default.string.isRequired,
|
|
164
|
-
label: _propTypes.default.string.isRequired,
|
|
165
|
-
disabled: _propTypes.default.bool.isRequired
|
|
166
|
-
}),
|
|
167
|
-
/**
|
|
168
|
-
* The option to dipslayed when the select options are being fetched
|
|
169
|
-
*/
|
|
170
|
-
loadingOption: _propTypes.default.shape({
|
|
171
|
-
value: _propTypes.default.string.isRequired,
|
|
172
|
-
label: _propTypes.default.string.isRequired,
|
|
173
|
-
disabled: _propTypes.default.bool.isRequired
|
|
174
|
-
}),
|
|
175
|
-
/**
|
|
176
|
-
* The query select field validator function
|
|
177
|
-
*/
|
|
178
|
-
validate: _propTypes.default.func,
|
|
179
|
-
/*
|
|
180
|
-
* Whether the input is optional or not
|
|
181
|
-
*/
|
|
182
|
-
optional: _propTypes.default.bool
|
|
183
|
-
};
|
|
184
|
-
QuerySelect.defaultProps = {
|
|
185
|
-
disabled: false,
|
|
186
|
-
color: 'paragraph',
|
|
187
|
-
defaultOption: {
|
|
188
|
-
value: '',
|
|
189
|
-
label: 'Select an option',
|
|
190
|
-
disabled: true
|
|
191
|
-
},
|
|
192
|
-
loadingOption: {
|
|
193
|
-
value: '',
|
|
194
|
-
label: 'Fetching Options',
|
|
195
|
-
disabled: true
|
|
196
|
-
}
|
|
197
|
-
};
|
|
198
|
-
var _default = exports.default = QuerySelect;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "QuerySelect", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _QuerySelect.default;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _QuerySelect = _interopRequireDefault(require("./QuerySelect"));
|
|
13
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|