dtable-ui-component 6.0.29 → 6.0.31
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/lib/BodyPortal/index.js +29 -0
- package/lib/CheckboxEditor/index.js +24 -116
- package/lib/CheckboxEditor/mb-editor.js +99 -0
- package/lib/CheckboxEditor/pc-editor.js +118 -0
- package/lib/CollaboratorEditor/index.js +23 -11
- package/lib/CollaboratorEditor/mb-editor/index.css +41 -0
- package/lib/CollaboratorEditor/mb-editor/index.js +88 -0
- package/lib/DTableCommonAddTool/index.js +1 -3
- package/lib/DTableFiltersPopover/widgets/department-select-filter/department-multiple-select-filter.js +6 -6
- package/lib/DTableFiltersPopover/widgets/department-select-filter/department-single-select-filter.js +6 -6
- package/lib/DateEditor/index.js +69 -95
- package/lib/DateEditor/mb-editor/custom-rc-calendar.css +118 -0
- package/lib/DateEditor/mb-editor/index.css +39 -0
- package/lib/DateEditor/mb-editor/index.js +215 -0
- package/lib/DateEditor/{pc-date-editor-popover.js → pc-editor.js} +9 -9
- package/lib/{Department-editor/department-multiple-select → DepartmentMultipleSelectEditor}/index.js +6 -6
- package/lib/DepartmentSingleSelectEditor/index.js +34 -0
- package/lib/DepartmentSingleSelectEditor/mb-editor/index.css +4 -0
- package/lib/DepartmentSingleSelectEditor/mb-editor/index.js +227 -0
- package/lib/{Department-editor → DepartmentSingleSelectEditor/pc-editor}/department-single-select.js +7 -7
- package/lib/{Department-editor → DepartmentSingleSelectEditor/pc-editor}/index.css +10 -3
- package/lib/{Department-editor → DepartmentSingleSelectEditor/pc-editor}/index.js +8 -25
- package/lib/DigitalSignEditor/index.js +24 -171
- package/lib/DigitalSignEditor/mb-editor/index.css +35 -0
- package/lib/DigitalSignEditor/mb-editor/index.js +144 -0
- package/lib/DigitalSignEditor/pc-editor/index.js +181 -0
- package/lib/FileEditor/files-previewer/index.js +26 -268
- package/lib/FileEditor/files-previewer/mb-previewer/file-previewer/index.js +122 -0
- package/lib/FileEditor/files-previewer/mb-previewer/index.css +39 -0
- package/lib/FileEditor/files-previewer/mb-previewer/index.js +64 -0
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/dropdown-menu.js +1 -1
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/file-name-editor/index.js +1 -1
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/index.css +0 -2
- package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/index.js +2 -2
- package/lib/FileEditor/files-previewer/pc-previewer/index.js +276 -0
- package/lib/FileEditor/index.css +0 -5
- package/lib/FileEditor/index.js +26 -265
- package/lib/FileEditor/mb-editor/index.css +10 -0
- package/lib/FileEditor/mb-editor/index.js +136 -0
- package/lib/FileEditor/pc-editor/addition-previewer/index.css +1 -0
- package/lib/FileEditor/{addition-previewer → pc-editor/addition-previewer}/index.js +1 -1
- package/lib/FileEditor/pc-editor/addition-previewer/local-file-addition/index.css +1 -0
- package/lib/FileEditor/{addition-previewer → pc-editor/addition-previewer}/local-file-addition/index.js +4 -4
- package/lib/FileEditor/pc-editor/index.css +5 -0
- package/lib/FileEditor/pc-editor/index.js +274 -0
- package/lib/FormulaFormatter/index.css +5 -5
- package/lib/GeolocationEditor/index.js +92 -230
- package/lib/GeolocationEditor/map-editor-utils.js +10 -4
- package/lib/GeolocationEditor/mb-editor/country-editor.js +79 -0
- package/lib/GeolocationEditor/mb-editor/index.css +11 -0
- package/lib/GeolocationEditor/mb-editor/index.js +125 -0
- package/lib/GeolocationEditor/mb-editor/location-editor.js +101 -0
- package/lib/GeolocationEditor/mb-editor/map-editor/index.css +11 -0
- package/lib/GeolocationEditor/mb-editor/map-editor/index.js +474 -0
- package/lib/GeolocationEditor/mb-editor/map-selection-editor/index.css +158 -0
- package/lib/GeolocationEditor/mb-editor/map-selection-editor/index.js +530 -0
- package/lib/GeolocationEditor/mb-editor/province-city-editor.js +77 -0
- package/lib/GeolocationEditor/mb-editor/province-editor.js +76 -0
- package/lib/GeolocationEditor/{country-editor.js → pc-editor/country-editor.js} +5 -49
- package/lib/GeolocationEditor/{index.css → pc-editor/index.css} +3 -4
- package/lib/GeolocationEditor/pc-editor/index.js +247 -0
- package/lib/GeolocationEditor/{location-editor.js → pc-editor/location-editor.js} +8 -41
- package/lib/GeolocationEditor/{map-editor → pc-editor/map-editor}/index.js +6 -6
- package/lib/GeolocationEditor/{map-editor → pc-editor/map-editor}/large-editor/index.js +7 -7
- package/lib/GeolocationEditor/{map-selection-editor → pc-editor/map-selection-editor}/index.js +7 -7
- package/lib/GeolocationEditor/{map-selection-editor → pc-editor/map-selection-editor}/large-editor/index.js +7 -7
- package/lib/GeolocationEditor/{province-city-editor.js → pc-editor/province-city-editor.js} +7 -38
- package/lib/GeolocationEditor/{province-editor.js → pc-editor/province-editor.js} +7 -31
- package/lib/GeolocationEditor/{selector-header-item.js → pc-editor/selector-header-item.js} +1 -1
- package/lib/ImageEditor/images-previewer/image-preview/index.js +3 -3
- package/lib/ImageEditor/images-previewer/index.js +9 -4
- package/lib/ImageEditor/index.css +17 -16
- package/lib/ImageEditor/index.js +26 -185
- package/lib/ImageEditor/mb-editor/index.css +29 -0
- package/lib/ImageEditor/mb-editor/index.js +136 -0
- package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/image-link/index.js +1 -1
- package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/index.js +1 -1
- package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/local-image-addition/index.js +4 -4
- package/lib/ImageEditor/pc-editor/images-previewer/index.js +140 -0
- package/lib/ImageEditor/pc-editor/index.css +24 -0
- package/lib/ImageEditor/pc-editor/index.js +194 -0
- package/lib/ImageThumbnail/index.js +2 -1
- package/lib/LinkEditor/index.js +5 -5
- package/lib/LinkEditor/{mb-link-editor-popover → mb-popover}/index.css +1 -1
- package/lib/MobileFullScreenPage/body/index.css +9 -0
- package/lib/MobileFullScreenPage/body/index.js +23 -0
- package/lib/MobileFullScreenPage/header/index.css +39 -0
- package/lib/MobileFullScreenPage/header/index.js +38 -0
- package/lib/MobileFullScreenPage/index.css +13 -0
- package/lib/MobileFullScreenPage/index.js +73 -0
- package/lib/MobileModal/index.js +41 -0
- package/lib/MobileOperationSheet/index.css +27 -0
- package/lib/MobileOperationSheet/index.js +92 -0
- package/lib/MobileSelector/empty/index.css +3 -0
- package/lib/MobileSelector/empty/index.js +23 -0
- package/lib/MobileSelector/index.css +32 -0
- package/lib/MobileSelector/index.js +57 -0
- package/lib/MobileSelector/option/index.css +28 -0
- package/lib/MobileSelector/option/index.js +36 -0
- package/lib/MobileSelector/options/index.css +8 -0
- package/lib/MobileSelector/options/index.js +18 -0
- package/lib/MobileSelector/search/index.css +7 -0
- package/lib/MobileSelector/search/index.js +26 -0
- package/lib/MobileUpload/index.css +1 -0
- package/lib/MobileUpload/index.js +160 -0
- package/lib/MultipleSelectEditor/index.js +9 -14
- package/lib/RowExpand/index.js +24 -0
- package/lib/RowExpandDialog/column-content/index.js +2 -2
- package/lib/RowExpandDialog/index.js +2 -0
- package/lib/RowExpandEditor/add-btn/index.js +24 -0
- package/lib/RowExpandEditor/add-btn/mb-add-btn/index.css +3 -0
- package/lib/RowExpandEditor/add-btn/mb-add-btn/index.js +19 -0
- package/lib/RowExpandEditor/{RowExpandAddBtn → add-btn/pc-add-btn}/index.js +6 -4
- package/lib/RowExpandEditor/checkbox-editor/index.js +25 -0
- package/lib/RowExpandEditor/checkbox-editor/mb-editor/index.css +6 -0
- package/lib/RowExpandEditor/checkbox-editor/mb-editor/index.js +36 -0
- package/lib/RowExpandEditor/{RowExpandCheckboxEditor/index.js → checkbox-editor/pc-editor.js} +9 -13
- package/lib/RowExpandEditor/collaborator-editor/index.js +24 -0
- package/lib/RowExpandEditor/collaborator-editor/mb-editor/index.css +9 -0
- package/lib/RowExpandEditor/collaborator-editor/mb-editor/index.js +163 -0
- package/lib/RowExpandEditor/{RowExpandCollaboratorEditor → collaborator-editor/pc-editor}/index.css +1 -1
- package/lib/RowExpandEditor/{RowExpandCollaboratorEditor → collaborator-editor/pc-editor}/index.js +6 -7
- package/lib/RowExpandEditor/constants.js +34 -34
- package/lib/RowExpandEditor/date-editor/index.js +24 -0
- package/lib/RowExpandEditor/date-editor/mb-editor.js +82 -0
- package/lib/RowExpandEditor/{RowExpandDateEditor/index.js → date-editor/pc-editor.js} +2 -2
- package/lib/RowExpandEditor/department-editor/index.js +24 -0
- package/lib/RowExpandEditor/department-editor/mb-editor.js +65 -0
- package/lib/RowExpandEditor/{RowExpandDepartmentEditor/index.js → department-editor/pc-editor.js} +44 -49
- package/lib/RowExpandEditor/digital-sign-editor/index.js +24 -0
- package/lib/RowExpandEditor/digital-sign-editor/mb-editor/index.css +1 -0
- package/lib/RowExpandEditor/digital-sign-editor/mb-editor/index.js +130 -0
- package/lib/RowExpandEditor/{RowExpandDigitalSignEditor → digital-sign-editor/pc-editor}/index.css +1 -1
- package/lib/RowExpandEditor/{RowExpandDigitalSignEditor → digital-sign-editor/pc-editor}/index.js +11 -11
- package/lib/RowExpandEditor/duration-editor/index.js +24 -0
- package/lib/RowExpandEditor/duration-editor/mb-editor.js +71 -0
- package/lib/RowExpandEditor/{RowExpandDurationEditor/index.js → duration-editor/pc-editor.js} +2 -2
- package/lib/RowExpandEditor/email-editor/index.js +24 -0
- package/lib/RowExpandEditor/email-editor/mb-editor/index.css +1 -0
- package/lib/RowExpandEditor/email-editor/mb-editor/index.js +84 -0
- package/lib/RowExpandEditor/email-editor/pc-editor/index.css +1 -0
- package/lib/RowExpandEditor/{RowExpandEmailEditor → email-editor/pc-editor}/index.js +3 -3
- package/lib/RowExpandEditor/file-editor/index.js +24 -0
- package/lib/RowExpandEditor/file-editor/mb-editor/index.js +114 -0
- package/lib/RowExpandEditor/file-editor/pc-editor/index.css +1 -0
- package/lib/RowExpandEditor/{RowExpandFileEditor → file-editor/pc-editor}/index.js +9 -9
- package/lib/RowExpandEditor/geolocation-editor/index.js +24 -0
- package/lib/RowExpandEditor/geolocation-editor/mb-editor/index.js +100 -0
- package/lib/RowExpandEditor/{RowExpandGeolocationEditor → geolocation-editor/pc-editor}/index.js +17 -13
- package/lib/RowExpandEditor/image-editor/index.js +24 -0
- package/lib/RowExpandEditor/image-editor/mb-editor/index.css +30 -0
- package/lib/RowExpandEditor/image-editor/mb-editor/index.js +109 -0
- package/lib/RowExpandEditor/{RowExpandImageEditor → image-editor/pc-editor}/index.js +9 -9
- package/lib/RowExpandEditor/long-text-editor/index.js +24 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/editor/index.css +10 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/editor/index.js +80 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/index.css +3 -0
- package/lib/RowExpandEditor/long-text-editor/mb-editor/index.js +91 -0
- package/lib/RowExpandEditor/{RowExpandLongTextEditor → long-text-editor/pc-editor}/index.js +7 -7
- package/lib/RowExpandEditor/multiple-select-editor/index.js +24 -0
- package/lib/RowExpandEditor/multiple-select-editor/mb-editor/index.js +154 -0
- package/lib/RowExpandEditor/{RowExpandMultipleSelectEditor → multiple-select-editor/pc-editor}/index.css +1 -1
- package/lib/RowExpandEditor/{RowExpandMultipleSelectEditor → multiple-select-editor/pc-editor}/index.js +6 -6
- package/lib/RowExpandEditor/number-editor/index.js +24 -0
- package/lib/RowExpandEditor/number-editor/mb-editor/index.css +3 -0
- package/lib/RowExpandEditor/number-editor/mb-editor/index.js +76 -0
- package/lib/RowExpandEditor/{RowExpandNumberEditor/index.js → number-editor/pc-editor.js} +2 -2
- package/lib/RowExpandEditor/rate-editor/index.css +34 -0
- package/lib/RowExpandEditor/rate-editor/index.js +25 -0
- package/lib/RowExpandEditor/rate-editor/mb-editor.js +92 -0
- package/lib/RowExpandEditor/{RowExpandRateEditor/index.js → rate-editor/pc-editor.js} +2 -3
- package/lib/RowExpandEditor/right-angle/index.css +6 -0
- package/lib/RowExpandEditor/right-angle/index.js +17 -0
- package/lib/RowExpandEditor/single-select-editor/index.js +24 -0
- package/lib/RowExpandEditor/single-select-editor/mb-editor/index.css +8 -0
- package/lib/RowExpandEditor/single-select-editor/mb-editor/index.js +134 -0
- package/lib/RowExpandEditor/{RowExpandSingleSelectorEditor → single-select-editor/pc-editor}/index.js +17 -17
- package/lib/RowExpandEditor/text-editor/index.js +24 -0
- package/lib/RowExpandEditor/text-editor/mb-editor/index.css +14 -0
- package/lib/RowExpandEditor/text-editor/mb-editor/index.js +37 -0
- package/lib/RowExpandEditor/{RowExpandTextEditor → text-editor/pc-editor}/index.js +7 -7
- package/lib/RowExpandEditor/url-editor/index.js +24 -0
- package/lib/RowExpandEditor/url-editor/mb-editor/index.css +17 -0
- package/lib/RowExpandEditor/url-editor/mb-editor/index.js +87 -0
- package/lib/RowExpandEditor/{RowExpandUrlEditor → url-editor/pc-editor}/index.js +6 -6
- package/lib/RowExpandFormatter/constants.js +17 -17
- package/lib/RowExpandFormatter/department-formatter/index.js +19 -0
- package/lib/RowExpandFormatter/department-formatter/mb-formatter.js +20 -0
- package/lib/RowExpandFormatter/{RowExpandDepartmentFormatter/index.js → department-formatter/pc-formatter.js} +2 -2
- package/lib/RowExpandFormatter/{RowExpandEmailFormatter → email-formatter}/index.css +4 -4
- package/lib/RowExpandFormatter/index.css +33 -18
- package/lib/RowExpandFormatter/index.js +1 -1
- package/lib/RowExpandFormatter/rate-formatter/index.css +5 -0
- package/lib/RowExpandView/body/index.css +173 -0
- package/lib/RowExpandView/body/index.js +111 -0
- package/lib/RowExpandView/column-content/index.css +27 -0
- package/lib/RowExpandView/column-content/index.js +25 -0
- package/lib/RowExpandView/index.css +3 -0
- package/lib/RowExpandView/index.js +178 -0
- package/lib/SelectItem/index.js +57 -33
- package/lib/{Department-editor/selected-departments → SelectedDepartments}/index.css +0 -1
- package/lib/{Department-editor/selected-departments → SelectedDepartments}/index.js +3 -3
- package/lib/SingleSelectEditor/index.js +9 -14
- package/lib/SvgIcon/index.js +2 -1
- package/lib/constants/index.js +3 -2
- package/lib/css/am.css +0 -25
- package/lib/css/mb-cell-editor.css +1 -1
- package/lib/index.js +62 -6
- package/lib/locales/de.json +3 -1
- package/lib/locales/en.json +3 -1
- package/lib/locales/es.json +3 -1
- package/lib/locales/fr.json +3 -1
- package/lib/locales/pt.json +3 -1
- package/lib/locales/ru.json +3 -1
- package/lib/locales/zh-CN.json +3 -1
- package/lib/select-editor/index.js +27 -20
- package/lib/select-editor/mb-editor/index.css +1 -0
- package/lib/select-editor/mb-editor/index.js +105 -0
- package/lib/select-editor/{pc-select-editor → pc-editor}/index.css +1 -1
- package/lib/select-editor/{pc-select-editor → pc-editor}/index.js +7 -7
- package/lib/utils/editor-utils.js +6 -2
- package/lib/utils/get-event-transfer.js +2 -1
- package/lib/utils/utils.js +11 -2
- package/package.json +5 -5
- package/lib/CollaboratorEditor/mb-collaborator-editor/index.css +0 -85
- package/lib/CollaboratorEditor/mb-collaborator-editor/index.js +0 -148
- package/lib/DateEditor/mb-date-editor-popover/custom-rc-calendar.css +0 -118
- package/lib/DateEditor/mb-date-editor-popover/index.css +0 -45
- package/lib/DateEditor/mb-date-editor-popover/index.js +0 -226
- package/lib/FileEditor/addition-previewer/index.css +0 -1
- package/lib/FileEditor/addition-previewer/local-file-addition/index.css +0 -1
- package/lib/RowExpandEditor/RowExpandEmailEditor/index.css +0 -2
- package/lib/RowExpandEditor/RowExpandFileEditor/index.css +0 -1
- package/lib/RowExpandEditor/RowExpandRateEditor/index.css +0 -13
- package/lib/RowExpandFormatter/RowExpandRateFormatter/index.css +0 -5
- package/lib/select-editor/mb-select-editor/index.css +0 -127
- package/lib/select-editor/mb-select-editor/index.js +0 -197
- package/lib/select-editor/select-editor-option.js +0 -84
- /package/lib/CollaboratorEditor/{pc-collaborator-editor → pc-editor}/index.css +0 -0
- /package/lib/CollaboratorEditor/{pc-collaborator-editor → pc-editor}/index.js +0 -0
- /package/lib/{Department-editor/department-multiple-select → DepartmentMultipleSelectEditor}/index.css +0 -0
- /package/lib/DigitalSignEditor/{index.css → pc-editor/index.css} +0 -0
- /package/lib/FileEditor/files-previewer/{file-previewer → pc-previewer/file-previewer}/file-name-editor/index.css +0 -0
- /package/lib/GeolocationEditor/{map-editor → pc-editor/map-editor}/large-editor/index.css +0 -0
- /package/lib/GeolocationEditor/{map-selection-editor → pc-editor/map-selection-editor}/large-editor/index.css +0 -0
- /package/lib/GeolocationEditor/{parse-geolocation.js → pc-editor/parse-geolocation.js} +0 -0
- /package/lib/GeolocationEditor/{selector-list.js → pc-editor/selector-list.js} +0 -0
- /package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/image-link/index.css +0 -0
- /package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/index.css +0 -0
- /package/lib/ImageEditor/{addition-previewer → pc-editor/addition-previewer}/local-image-addition/index.css +0 -0
- /package/lib/LinkEditor/{mb-link-editor-popover → mb-popover}/index.js +0 -0
- /package/lib/LinkEditor/{pc-link-editor-popover → pc-popover}/index.css +0 -0
- /package/lib/LinkEditor/{pc-link-editor-popover → pc-popover}/index.js +0 -0
- /package/lib/RowExpandEditor/{RowExpandAddBtn → add-btn/pc-add-btn}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandCheckboxEditor → checkbox-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandGeolocationEditor → geolocation-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandImageEditor → image-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandLongTextEditor → long-text-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandSingleSelectorEditor → single-select-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandTextEditor → text-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandEditor/{RowExpandUrlEditor → url-editor/pc-editor}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandEmailFormatter → email-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFileFormatter → file-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFileFormatter → file-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFileFormatter → file-formatter}/row-expand-file-item-formatter.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandFormulaFormatter → formula-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandImageFormatter → image-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandImageFormatter → image-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandImageFormatter → image-formatter}/row-expand-image-item-formatter.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/collaborator-item-formatter.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandLinkFormatter → link-formatter}/value-display-utils.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandRateFormatter → rate-formatter}/index.js +0 -0
- /package/lib/RowExpandFormatter/{RowExpandUrlFormatter → url-formatter}/index.css +0 -0
- /package/lib/RowExpandFormatter/{RowExpandUrlFormatter → url-formatter}/index.js +0 -0
- /package/lib/{Department-editor/constants.js → constants/departments.js} +0 -0
- /package/lib/{Department-editor/utils.js → utils/departments.js} +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _reactDom = _interopRequireDefault(require("react-dom"));
|
|
10
|
+
const canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);
|
|
11
|
+
class BodyPortal extends _react.default.Component {
|
|
12
|
+
componentWillUnmount() {
|
|
13
|
+
if (this.defaultNode) {
|
|
14
|
+
document.body.removeChild(this.defaultNode);
|
|
15
|
+
}
|
|
16
|
+
this.defaultNode = null;
|
|
17
|
+
}
|
|
18
|
+
render() {
|
|
19
|
+
if (!canUseDOM) {
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
if (!this.props.node && !this.defaultNode) {
|
|
23
|
+
this.defaultNode = document.createElement('div');
|
|
24
|
+
document.body.appendChild(this.defaultNode);
|
|
25
|
+
}
|
|
26
|
+
return /*#__PURE__*/_reactDom.default.createPortal(this.props.children, this.props.node || this.defaultNode);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
var _default = exports.default = BodyPortal;
|
|
@@ -7,121 +7,29 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
9
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
-
var
|
|
11
|
-
var
|
|
12
|
-
var
|
|
13
|
-
var _constants = require("../constants");
|
|
10
|
+
var _reactResponsive = _interopRequireDefault(require("react-responsive"));
|
|
11
|
+
var _pcEditor = _interopRequireDefault(require("./pc-editor"));
|
|
12
|
+
var _mbEditor = _interopRequireDefault(require("./mb-editor"));
|
|
14
13
|
require("./index.css");
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
if (value === this.state.value) {
|
|
37
|
-
return;
|
|
38
|
-
}
|
|
39
|
-
this.setState({
|
|
40
|
-
value
|
|
41
|
-
});
|
|
42
|
-
};
|
|
43
|
-
this.onChangeCheckboxValue = event => {
|
|
44
|
-
if (event) {
|
|
45
|
-
event.stopPropagation();
|
|
46
|
-
event.nativeEvent.stopImmediatePropagation();
|
|
47
|
-
event.persist();
|
|
48
|
-
}
|
|
49
|
-
const {
|
|
50
|
-
value
|
|
51
|
-
} = this.state;
|
|
52
|
-
const newValue = !value;
|
|
53
|
-
this.setState({
|
|
54
|
-
value: newValue
|
|
55
|
-
}, () => {
|
|
56
|
-
if (this.props.onCommit) {
|
|
57
|
-
this.props.onCommit(event);
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
|
-
};
|
|
61
|
-
this.renderIcon = (symbol, color) => {
|
|
62
|
-
const className = (0, _classnames.default)('dtable-ui-checkbox-check-mark', {
|
|
63
|
-
'dtable-ui-checkbox-check-svg': !(symbol !== null && symbol !== void 0 && symbol.startsWith('dtable-icon'))
|
|
64
|
-
});
|
|
65
|
-
if (symbol.startsWith('dtable-icon')) {
|
|
66
|
-
return /*#__PURE__*/_react.default.createElement("span", {
|
|
67
|
-
className: "dtable-font ".concat(symbol, " ").concat(className || ''),
|
|
68
|
-
style: {
|
|
69
|
-
color
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
return /*#__PURE__*/_react.default.createElement(_SvgIcon.default, {
|
|
74
|
-
className: className,
|
|
75
|
-
symbol: symbol,
|
|
76
|
-
color: color
|
|
77
|
-
});
|
|
78
|
-
};
|
|
79
|
-
this.state = {
|
|
80
|
-
value: props.value || false
|
|
81
|
-
};
|
|
82
|
-
}
|
|
83
|
-
componentDidMount() {
|
|
84
|
-
document.addEventListener('keydown', this.onKeyDown);
|
|
85
|
-
}
|
|
86
|
-
componentWillUnmount() {
|
|
87
|
-
document.removeEventListener('keydown', this.onKeyDown);
|
|
88
|
-
}
|
|
89
|
-
componentDidUpdate(prevProps) {
|
|
90
|
-
const {
|
|
91
|
-
value
|
|
92
|
-
} = this.props;
|
|
93
|
-
if (value !== prevProps.value) {
|
|
94
|
-
this.setState({
|
|
95
|
-
value
|
|
96
|
-
});
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
render() {
|
|
100
|
-
var _column$data;
|
|
101
|
-
const {
|
|
102
|
-
className,
|
|
103
|
-
style,
|
|
104
|
-
column
|
|
105
|
-
} = this.props;
|
|
106
|
-
const {
|
|
107
|
-
value
|
|
108
|
-
} = this.state;
|
|
109
|
-
const checkboxProps = {
|
|
110
|
-
...(!_utils.isMobile && {
|
|
111
|
-
onClick: this.onChangeCheckboxValue
|
|
112
|
-
}),
|
|
113
|
-
...(_utils.isMobile && {
|
|
114
|
-
onTouchStart: this.onChangeCheckboxValue
|
|
115
|
-
})
|
|
116
|
-
};
|
|
117
|
-
let checkboxStyle = column === null || column === void 0 ? void 0 : (_column$data = column.data) === null || _column$data === void 0 ? void 0 : _column$data.checkbox_style;
|
|
118
|
-
if (!checkboxStyle || Object.keys(checkboxStyle).length < 2) {
|
|
119
|
-
checkboxStyle = _constants.DEFAULT_CHECKBOX_MARK_STYLE;
|
|
120
|
-
}
|
|
121
|
-
return /*#__PURE__*/_react.default.createElement("div", Object.assign({
|
|
122
|
-
className: (0, _classnames.default)('dtable-ui-checkbox-editor', className),
|
|
123
|
-
style: style || {}
|
|
124
|
-
}, checkboxProps), value && this.renderIcon(checkboxStyle.type, checkboxStyle.color));
|
|
125
|
-
}
|
|
126
|
-
}
|
|
14
|
+
const CheckboxEditor = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
15
|
+
let {
|
|
16
|
+
isMobile,
|
|
17
|
+
...props
|
|
18
|
+
} = _ref;
|
|
19
|
+
if (isMobile === false) return /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
20
|
+
ref: ref
|
|
21
|
+
}));
|
|
22
|
+
if (isMobile === true) return /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
23
|
+
ref: ref
|
|
24
|
+
}));
|
|
25
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
26
|
+
query: "(min-width: 768px)"
|
|
27
|
+
}, /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
28
|
+
ref: ref
|
|
29
|
+
}))), /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
30
|
+
query: "(max-width: 768px)"
|
|
31
|
+
}, /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
32
|
+
ref: ref
|
|
33
|
+
}))));
|
|
34
|
+
});
|
|
127
35
|
var _default = exports.default = CheckboxEditor;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
11
|
+
var _SvgIcon = _interopRequireDefault(require("../SvgIcon"));
|
|
12
|
+
var _constants = require("../constants");
|
|
13
|
+
class MBCheckboxEditor extends _react.Component {
|
|
14
|
+
constructor(props) {
|
|
15
|
+
super(props);
|
|
16
|
+
this.getValue = () => {
|
|
17
|
+
const {
|
|
18
|
+
value
|
|
19
|
+
} = this.state;
|
|
20
|
+
return value;
|
|
21
|
+
};
|
|
22
|
+
this.updateValue = value => {
|
|
23
|
+
if (value === this.state.value) {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
this.setState({
|
|
27
|
+
value
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
this.onChangeCheckboxValue = event => {
|
|
31
|
+
if (event) {
|
|
32
|
+
event.stopPropagation();
|
|
33
|
+
event.nativeEvent.stopImmediatePropagation();
|
|
34
|
+
event.persist();
|
|
35
|
+
}
|
|
36
|
+
const {
|
|
37
|
+
value
|
|
38
|
+
} = this.state;
|
|
39
|
+
const newValue = !value;
|
|
40
|
+
this.setState({
|
|
41
|
+
value: newValue
|
|
42
|
+
}, () => {
|
|
43
|
+
this.props.onCommit && this.props.onCommit(newValue);
|
|
44
|
+
});
|
|
45
|
+
};
|
|
46
|
+
this.renderIcon = (symbol, color) => {
|
|
47
|
+
const className = (0, _classnames.default)('dtable-ui-checkbox-check-mark', {
|
|
48
|
+
'dtable-ui-checkbox-check-svg': !(symbol !== null && symbol !== void 0 && symbol.startsWith('dtable-icon'))
|
|
49
|
+
});
|
|
50
|
+
if (symbol.startsWith('dtable-icon')) {
|
|
51
|
+
return /*#__PURE__*/_react.default.createElement("span", {
|
|
52
|
+
className: "dtable-font ".concat(symbol, " ").concat(className || ''),
|
|
53
|
+
style: {
|
|
54
|
+
color
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
return /*#__PURE__*/_react.default.createElement(_SvgIcon.default, {
|
|
59
|
+
className: className,
|
|
60
|
+
symbol: symbol,
|
|
61
|
+
color: color
|
|
62
|
+
});
|
|
63
|
+
};
|
|
64
|
+
this.state = {
|
|
65
|
+
value: props.value || false
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
componentDidUpdate(prevProps) {
|
|
69
|
+
const {
|
|
70
|
+
value
|
|
71
|
+
} = this.props;
|
|
72
|
+
if (value !== prevProps.value) {
|
|
73
|
+
this.setState({
|
|
74
|
+
value
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
render() {
|
|
79
|
+
var _column$data;
|
|
80
|
+
const {
|
|
81
|
+
className,
|
|
82
|
+
style,
|
|
83
|
+
column
|
|
84
|
+
} = this.props;
|
|
85
|
+
const {
|
|
86
|
+
value
|
|
87
|
+
} = this.state;
|
|
88
|
+
let checkboxStyle = column === null || column === void 0 ? void 0 : (_column$data = column.data) === null || _column$data === void 0 ? void 0 : _column$data.checkbox_style;
|
|
89
|
+
if (!checkboxStyle || Object.keys(checkboxStyle).length < 2) {
|
|
90
|
+
checkboxStyle = _constants.DEFAULT_CHECKBOX_MARK_STYLE;
|
|
91
|
+
}
|
|
92
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
93
|
+
className: (0, _classnames.default)('dtable-ui-checkbox-editor', className),
|
|
94
|
+
style: style || {},
|
|
95
|
+
onClick: this.onChangeCheckboxValue
|
|
96
|
+
}, value && this.renderIcon(checkboxStyle.type, checkboxStyle.color));
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
var _default = exports.default = MBCheckboxEditor;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
11
|
+
var _SvgIcon = _interopRequireDefault(require("../SvgIcon"));
|
|
12
|
+
var _constants = require("../constants");
|
|
13
|
+
class PCCheckboxEditor extends _react.Component {
|
|
14
|
+
constructor(props) {
|
|
15
|
+
super(props);
|
|
16
|
+
this.onKeyDown = event => {
|
|
17
|
+
const {
|
|
18
|
+
isEditorShow,
|
|
19
|
+
readOnly
|
|
20
|
+
} = this.props;
|
|
21
|
+
if (event.keyCode === _constants.KeyCodes.Enter && isEditorShow && !readOnly) {
|
|
22
|
+
this.setState({
|
|
23
|
+
value: !this.state.value
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
this.getValue = () => {
|
|
28
|
+
const {
|
|
29
|
+
value
|
|
30
|
+
} = this.state;
|
|
31
|
+
return value;
|
|
32
|
+
};
|
|
33
|
+
this.updateValue = value => {
|
|
34
|
+
if (value === this.state.value) {
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
this.setState({
|
|
38
|
+
value
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
this.onChangeCheckboxValue = event => {
|
|
42
|
+
if (event) {
|
|
43
|
+
event.stopPropagation();
|
|
44
|
+
event.nativeEvent.stopImmediatePropagation();
|
|
45
|
+
event.persist();
|
|
46
|
+
}
|
|
47
|
+
const {
|
|
48
|
+
value
|
|
49
|
+
} = this.state;
|
|
50
|
+
const newValue = !value;
|
|
51
|
+
this.setState({
|
|
52
|
+
value: newValue
|
|
53
|
+
}, () => {
|
|
54
|
+
if (this.props.onCommit) {
|
|
55
|
+
this.props.onCommit(newValue);
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
};
|
|
59
|
+
this.renderIcon = (symbol, color) => {
|
|
60
|
+
const className = (0, _classnames.default)('dtable-ui-checkbox-check-mark', {
|
|
61
|
+
'dtable-ui-checkbox-check-svg': !(symbol !== null && symbol !== void 0 && symbol.startsWith('dtable-icon'))
|
|
62
|
+
});
|
|
63
|
+
if (symbol.startsWith('dtable-icon')) {
|
|
64
|
+
return /*#__PURE__*/_react.default.createElement("span", {
|
|
65
|
+
className: "dtable-font ".concat(symbol, " ").concat(className || ''),
|
|
66
|
+
style: {
|
|
67
|
+
color
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
return /*#__PURE__*/_react.default.createElement(_SvgIcon.default, {
|
|
72
|
+
className: className,
|
|
73
|
+
symbol: symbol,
|
|
74
|
+
color: color
|
|
75
|
+
});
|
|
76
|
+
};
|
|
77
|
+
this.state = {
|
|
78
|
+
value: props.value || false
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
componentDidMount() {
|
|
82
|
+
document.addEventListener('keydown', this.onKeyDown);
|
|
83
|
+
}
|
|
84
|
+
componentWillUnmount() {
|
|
85
|
+
document.removeEventListener('keydown', this.onKeyDown);
|
|
86
|
+
}
|
|
87
|
+
componentDidUpdate(prevProps) {
|
|
88
|
+
const {
|
|
89
|
+
value
|
|
90
|
+
} = this.props;
|
|
91
|
+
if (value !== prevProps.value) {
|
|
92
|
+
this.setState({
|
|
93
|
+
value
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
render() {
|
|
98
|
+
var _column$data;
|
|
99
|
+
const {
|
|
100
|
+
className,
|
|
101
|
+
style,
|
|
102
|
+
column
|
|
103
|
+
} = this.props;
|
|
104
|
+
const {
|
|
105
|
+
value
|
|
106
|
+
} = this.state;
|
|
107
|
+
let checkboxStyle = column === null || column === void 0 ? void 0 : (_column$data = column.data) === null || _column$data === void 0 ? void 0 : _column$data.checkbox_style;
|
|
108
|
+
if (!checkboxStyle || Object.keys(checkboxStyle).length < 2) {
|
|
109
|
+
checkboxStyle = _constants.DEFAULT_CHECKBOX_MARK_STYLE;
|
|
110
|
+
}
|
|
111
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
112
|
+
className: (0, _classnames.default)('dtable-ui-checkbox-editor', className),
|
|
113
|
+
style: style || {},
|
|
114
|
+
onClick: this.onChangeCheckboxValue
|
|
115
|
+
}, value && this.renderIcon(checkboxStyle.type, checkboxStyle.color));
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
var _default = exports.default = PCCheckboxEditor;
|
|
@@ -1,29 +1,41 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports.default = void 0;
|
|
8
|
-
var _react =
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
9
10
|
var _reactResponsive = _interopRequireDefault(require("react-responsive"));
|
|
10
|
-
var
|
|
11
|
-
var
|
|
11
|
+
var _pcEditor = _interopRequireDefault(require("./pc-editor"));
|
|
12
|
+
var _mbEditor = _interopRequireDefault(require("./mb-editor"));
|
|
12
13
|
require("./index.css");
|
|
13
|
-
const CollaboratorEditor = _ref => {
|
|
14
|
+
const CollaboratorEditor = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
14
15
|
let {
|
|
16
|
+
isMobile,
|
|
15
17
|
value: oldValue,
|
|
16
18
|
...props
|
|
17
19
|
} = _ref;
|
|
18
20
|
const value = Array.isArray(oldValue) ? oldValue : [];
|
|
21
|
+
if (isMobile === false) return /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
22
|
+
value: value,
|
|
23
|
+
ref: ref
|
|
24
|
+
}));
|
|
25
|
+
if (isMobile === true) return /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
26
|
+
value: value,
|
|
27
|
+
ref: ref
|
|
28
|
+
}));
|
|
19
29
|
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
20
|
-
query:
|
|
21
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
22
|
-
value: value
|
|
30
|
+
query: "(min-width: 768px)"
|
|
31
|
+
}, /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
32
|
+
value: value,
|
|
33
|
+
ref: ref
|
|
23
34
|
}))), /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
24
|
-
query:
|
|
25
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
26
|
-
value: value
|
|
35
|
+
query: "(max-width: 768px)"
|
|
36
|
+
}, /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
37
|
+
value: value,
|
|
38
|
+
ref: ref
|
|
27
39
|
}))));
|
|
28
|
-
};
|
|
40
|
+
});
|
|
29
41
|
var _default = exports.default = CollaboratorEditor;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@import url('../../css/mb-cell-editor.css');
|
|
2
|
+
|
|
3
|
+
.dtable-ui-mobile-collaborator-editor .dtable-ui-mobile-selector-option .dtable-ui-mobile-selector-option-name {
|
|
4
|
+
height: 36px !important;
|
|
5
|
+
line-height: 36px !important;
|
|
6
|
+
margin-top: 0px !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.dtable-ui-mobile-selector.dtable-ui-mobile-collaborator-editor .dtable-ui-mobile-selector-option {
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.dtable-ui-mobile-collaborator-editor .dtable-ui-mobile-selector-option .dtable-ui.collaborator-item {
|
|
14
|
+
background-color: inherit;
|
|
15
|
+
border-radius: 0;
|
|
16
|
+
height: 100%;
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.dtable-ui-mobile-collaborator-editor .dtable-ui-mobile-selector-option .dtable-ui.collaborator-item .collaborator-avatar {
|
|
21
|
+
height: 2rem;
|
|
22
|
+
margin: 2px 0;
|
|
23
|
+
vertical-align: middle;
|
|
24
|
+
width: 2rem;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.dtable-ui-mobile-collaborator-editor .dtable-ui-mobile-selector-option .dtable-ui.collaborator-item .collaborator-avatar-icon {
|
|
28
|
+
border-radius: 50%;
|
|
29
|
+
height: 2rem;
|
|
30
|
+
width: 2rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.dtable-ui-mobile-collaborator-editor .dtable-ui-mobile-selector-option .dtable-ui.collaborator-item .collaborator-name {
|
|
34
|
+
height: 100%;
|
|
35
|
+
font-size: 16px;
|
|
36
|
+
line-height: 36px;
|
|
37
|
+
width: 100%;
|
|
38
|
+
overflow: hidden;
|
|
39
|
+
text-overflow: ellipsis;
|
|
40
|
+
white-space: nowrap;
|
|
41
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _dtableUtils = require("dtable-utils");
|
|
10
|
+
var _MobileSelector = _interopRequireDefault(require("../../MobileSelector"));
|
|
11
|
+
var _lang = require("../../lang");
|
|
12
|
+
var _CollaboratorItem = _interopRequireDefault(require("../../CollaboratorItem"));
|
|
13
|
+
require("./index.css");
|
|
14
|
+
const {
|
|
15
|
+
Search,
|
|
16
|
+
Option,
|
|
17
|
+
Options,
|
|
18
|
+
Empty
|
|
19
|
+
} = _MobileSelector.default;
|
|
20
|
+
class MBCollaboratorEditor extends _react.default.Component {
|
|
21
|
+
constructor(props) {
|
|
22
|
+
super(props);
|
|
23
|
+
this.handleHistoryBack = e => {
|
|
24
|
+
e.preventDefault();
|
|
25
|
+
this.props.onClose();
|
|
26
|
+
};
|
|
27
|
+
this.onChangeSearch = newValue => {
|
|
28
|
+
let {
|
|
29
|
+
searchVal
|
|
30
|
+
} = this.state;
|
|
31
|
+
if (searchVal === newValue) return;
|
|
32
|
+
this.setState({
|
|
33
|
+
searchVal: newValue
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
this.onChange = collaborator => {
|
|
37
|
+
this.props.onCommit(collaborator);
|
|
38
|
+
};
|
|
39
|
+
this.renderCollaborators = collaborators => {
|
|
40
|
+
const {
|
|
41
|
+
value = []
|
|
42
|
+
} = this.props;
|
|
43
|
+
return collaborators.map(collaborator => {
|
|
44
|
+
const isSelected = value.includes(collaborator.email);
|
|
45
|
+
return /*#__PURE__*/_react.default.createElement(Option, {
|
|
46
|
+
key: collaborator.email,
|
|
47
|
+
isSelected: isSelected,
|
|
48
|
+
onChange: this.onChange.bind(this, collaborator)
|
|
49
|
+
}, /*#__PURE__*/_react.default.createElement(_CollaboratorItem.default, {
|
|
50
|
+
collaborator: collaborator
|
|
51
|
+
}));
|
|
52
|
+
});
|
|
53
|
+
};
|
|
54
|
+
this.state = {
|
|
55
|
+
searchVal: ''
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
componentDidMount() {
|
|
59
|
+
history.pushState(null, null, '#'); // eslint-disable-line
|
|
60
|
+
window.addEventListener('popstate', this.handleHistoryBack, false);
|
|
61
|
+
}
|
|
62
|
+
componentWillUnmount() {
|
|
63
|
+
window.removeEventListener('popstate', this.handleHistoryBack, false);
|
|
64
|
+
}
|
|
65
|
+
render() {
|
|
66
|
+
const {
|
|
67
|
+
column,
|
|
68
|
+
collaborators
|
|
69
|
+
} = this.props;
|
|
70
|
+
const {
|
|
71
|
+
searchVal
|
|
72
|
+
} = this.state;
|
|
73
|
+
const displayCollaborators = searchVal ? (0, _dtableUtils.searchCollaborators)(collaborators, searchVal) : collaborators;
|
|
74
|
+
return /*#__PURE__*/_react.default.createElement(_MobileSelector.default, {
|
|
75
|
+
onClose: this.props.onClose,
|
|
76
|
+
title: column.name,
|
|
77
|
+
className: "dtable-ui-mobile-collaborator-editor"
|
|
78
|
+
}, collaborators.length > 10 && /*#__PURE__*/_react.default.createElement(Search, {
|
|
79
|
+
value: searchVal,
|
|
80
|
+
placeholder: (0, _lang.getLocale)('Search_collaborator'),
|
|
81
|
+
onChange: this.onChangeSearch
|
|
82
|
+
}), /*#__PURE__*/_react.default.createElement(Options, null, displayCollaborators.length === 0 && /*#__PURE__*/_react.default.createElement(Empty, null, (0, _lang.getLocale)('No_collaborators_available')), displayCollaborators.length > 0 && this.renderCollaborators(displayCollaborators)));
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
MBCollaboratorEditor.defaultProps = {
|
|
86
|
+
value: []
|
|
87
|
+
};
|
|
88
|
+
var _default = exports.default = MBCollaboratorEditor;
|
|
@@ -19,9 +19,7 @@ function DTableCommonAddTool(_ref) {
|
|
|
19
19
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
20
20
|
className: "dtable-ui add-item-btn ".concat(className ? className : ''),
|
|
21
21
|
style: style,
|
|
22
|
-
onClick: e =>
|
|
23
|
-
callBack(e);
|
|
24
|
-
}
|
|
22
|
+
onClick: e => callBack(e)
|
|
25
23
|
}, !hideIcon && /*#__PURE__*/_react.default.createElement("span", {
|
|
26
24
|
className: "dtable-font dtable-icon-add-table ".concat(addIconClassName || '')
|
|
27
25
|
}), /*#__PURE__*/_react.default.createElement("span", {
|
|
@@ -8,9 +8,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
8
8
|
exports.default = void 0;
|
|
9
9
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
10
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
11
|
-
var
|
|
12
|
-
var
|
|
13
|
-
var
|
|
11
|
+
var _SelectedDepartments = _interopRequireDefault(require("../../../SelectedDepartments"));
|
|
12
|
+
var _DepartmentMultipleSelectEditor = _interopRequireDefault(require("../../../DepartmentMultipleSelectEditor"));
|
|
13
|
+
var _departments = require("../../../constants/departments");
|
|
14
14
|
var _commonHooks = require("../../../hooks/common-hooks");
|
|
15
15
|
var _lang = require("../../../lang");
|
|
16
16
|
function DepartmentMultipleSelectFilter(props) {
|
|
@@ -26,7 +26,7 @@ function DepartmentMultipleSelectFilter(props) {
|
|
|
26
26
|
onClickOutside: () => setIsShowSelector(false)
|
|
27
27
|
}, [selectedDepartments]);
|
|
28
28
|
function renderUserDepartmentOptions() {
|
|
29
|
-
return
|
|
29
|
+
return _departments.DEPARTMENT_SELECT_RANGE_OPTIONS.slice(0, 2).map((option, index) => {
|
|
30
30
|
const {
|
|
31
31
|
type,
|
|
32
32
|
name
|
|
@@ -78,14 +78,14 @@ function DepartmentMultipleSelectFilter(props) {
|
|
|
78
78
|
className: "selected-option"
|
|
79
79
|
}, selectedDepartments.length > 0 ? /*#__PURE__*/_react.default.createElement("span", {
|
|
80
80
|
className: "selected-option-show"
|
|
81
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
81
|
+
}, /*#__PURE__*/_react.default.createElement(_SelectedDepartments.default, {
|
|
82
82
|
value: selectedDepartments,
|
|
83
83
|
departments: departments
|
|
84
84
|
})) : /*#__PURE__*/_react.default.createElement("span", {
|
|
85
85
|
className: "select-placeholder"
|
|
86
86
|
}, (0, _lang.getLocale)('Select_department')), /*#__PURE__*/_react.default.createElement("span", {
|
|
87
87
|
className: "dtable-font dtable-icon-down3"
|
|
88
|
-
})), isShowSelector && /*#__PURE__*/_react.default.createElement(
|
|
88
|
+
})), isShowSelector && /*#__PURE__*/_react.default.createElement(_DepartmentMultipleSelectEditor.default, {
|
|
89
89
|
isShowSelectedDepartments: false,
|
|
90
90
|
classNamePrefix: "filter",
|
|
91
91
|
value: selectedDepartments,
|
package/lib/DTableFiltersPopover/widgets/department-select-filter/department-single-select-filter.js
CHANGED
|
@@ -8,9 +8,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
8
8
|
exports.default = void 0;
|
|
9
9
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
10
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
11
|
-
var
|
|
12
|
-
var
|
|
13
|
-
var
|
|
11
|
+
var _SelectedDepartments = _interopRequireDefault(require("../../../SelectedDepartments"));
|
|
12
|
+
var _DepartmentSingleSelectEditor = _interopRequireDefault(require("../../../DepartmentSingleSelectEditor"));
|
|
13
|
+
var _departments = require("../../../constants/departments");
|
|
14
14
|
var _commonHooks = require("../../../hooks/common-hooks");
|
|
15
15
|
var _lang = require("../../../lang");
|
|
16
16
|
function DepartmentSingleSelectFilter(props) {
|
|
@@ -31,7 +31,7 @@ function DepartmentSingleSelectFilter(props) {
|
|
|
31
31
|
}, [selectedDepartment]);
|
|
32
32
|
function renderUserDepartmentOptions(onSelect) {
|
|
33
33
|
if (!departments || departments.length === 0) return [];
|
|
34
|
-
return
|
|
34
|
+
return _departments.DEPARTMENT_SELECT_RANGE_OPTIONS.slice(0, 2).map((option, index) => {
|
|
35
35
|
const {
|
|
36
36
|
type,
|
|
37
37
|
name
|
|
@@ -76,14 +76,14 @@ function DepartmentSingleSelectFilter(props) {
|
|
|
76
76
|
className: "selected-option"
|
|
77
77
|
}, value ? /*#__PURE__*/_react.default.createElement("span", {
|
|
78
78
|
className: "selected-option-show"
|
|
79
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
79
|
+
}, /*#__PURE__*/_react.default.createElement(_SelectedDepartments.default, {
|
|
80
80
|
value: selectedDepartmentIds,
|
|
81
81
|
departments: departments
|
|
82
82
|
})) : /*#__PURE__*/_react.default.createElement("span", {
|
|
83
83
|
className: "select-placeholder"
|
|
84
84
|
}, (0, _lang.getLocale)('Select_department')), /*#__PURE__*/_react.default.createElement("span", {
|
|
85
85
|
className: "dtable-font dtable-icon-down3"
|
|
86
|
-
})), isShowSelector && /*#__PURE__*/_react.default.createElement(
|
|
86
|
+
})), isShowSelector && /*#__PURE__*/_react.default.createElement(_DepartmentSingleSelectEditor.default, {
|
|
87
87
|
enableSelectRange: false,
|
|
88
88
|
column: column,
|
|
89
89
|
value: value,
|