dtable-ui-component 6.0.30 → 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/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,34 @@
|
|
|
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 _reactResponsive = _interopRequireDefault(require("react-responsive"));
|
|
11
|
+
var _pcEditor = _interopRequireDefault(require("./pc-editor"));
|
|
12
|
+
var _mbEditor = _interopRequireDefault(require("./mb-editor"));
|
|
13
|
+
const DepartmentSingleSelectEditor = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
14
|
+
let {
|
|
15
|
+
isMobile,
|
|
16
|
+
...props
|
|
17
|
+
} = _ref;
|
|
18
|
+
if (isMobile === false) return /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
19
|
+
ref: ref
|
|
20
|
+
}));
|
|
21
|
+
if (isMobile === true) return /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
22
|
+
ref: ref
|
|
23
|
+
}));
|
|
24
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
25
|
+
query: '(min-width: 768px)'
|
|
26
|
+
}, /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
27
|
+
ref: ref
|
|
28
|
+
}))), /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
29
|
+
query: '(max-width: 768px)'
|
|
30
|
+
}, /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
31
|
+
ref: ref
|
|
32
|
+
}))));
|
|
33
|
+
});
|
|
34
|
+
var _default = exports.default = DepartmentSingleSelectEditor;
|
|
@@ -0,0 +1,227 @@
|
|
|
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 _dtableUtils = require("dtable-utils");
|
|
11
|
+
var _List = _interopRequireDefault(require("../../List"));
|
|
12
|
+
var _DTableRadio = _interopRequireDefault(require("../../DTableRadio"));
|
|
13
|
+
var _MobileFullScreenPage = _interopRequireDefault(require("../../MobileFullScreenPage"));
|
|
14
|
+
var _departments = require("../../utils/departments");
|
|
15
|
+
var _departments2 = require("../../constants/departments");
|
|
16
|
+
var _lang = require("../../lang");
|
|
17
|
+
require("./index.css");
|
|
18
|
+
const Item = _List.default.Item;
|
|
19
|
+
const {
|
|
20
|
+
Header,
|
|
21
|
+
Body
|
|
22
|
+
} = _MobileFullScreenPage.default;
|
|
23
|
+
const MBDepartmentSingleSelectEditor = _ref => {
|
|
24
|
+
let {
|
|
25
|
+
value: oldValue,
|
|
26
|
+
column,
|
|
27
|
+
isSupportMultiple = false,
|
|
28
|
+
isFilterEditor = false,
|
|
29
|
+
userDepartmentIdsMap = {},
|
|
30
|
+
departments: initialDepartments = [],
|
|
31
|
+
onCommit,
|
|
32
|
+
onClose
|
|
33
|
+
} = _ref;
|
|
34
|
+
const [value, setValue] = (0, _react.useState)(oldValue ? oldValue : isSupportMultiple ? [] : '');
|
|
35
|
+
const [departments, setDepartments] = (0, _react.useState)([]);
|
|
36
|
+
const [parentId, setParentId] = (0, _react.useState)('');
|
|
37
|
+
const [topParentIds, setTopParentIds] = (0, _react.useState)([]);
|
|
38
|
+
const initColumnData = (0, _react.useMemo)(() => {
|
|
39
|
+
const data = column.data || {};
|
|
40
|
+
const enableSelectRange = data.enable_select_range || false;
|
|
41
|
+
const selectedRange = data.selected_range || '';
|
|
42
|
+
const specificDepartments = data.specific_departments || [];
|
|
43
|
+
return {
|
|
44
|
+
enableSelectRange,
|
|
45
|
+
selectedRange,
|
|
46
|
+
specificDepartments
|
|
47
|
+
};
|
|
48
|
+
}, [column]);
|
|
49
|
+
const onSave = (0, _react.useCallback)(() => {
|
|
50
|
+
!isFilterEditor && onCommit && onCommit(value);
|
|
51
|
+
onClose && onClose();
|
|
52
|
+
}, [isFilterEditor, value, onCommit, onClose]);
|
|
53
|
+
const onDepartmentClick = (0, _react.useCallback)((event, department) => {
|
|
54
|
+
event.preventDefault();
|
|
55
|
+
const {
|
|
56
|
+
id,
|
|
57
|
+
hasChild
|
|
58
|
+
} = department;
|
|
59
|
+
if (event.target && event.target.className.indexOf('am-list-arrow') > -1) {
|
|
60
|
+
if (!hasChild) return;
|
|
61
|
+
setParentId(id);
|
|
62
|
+
return;
|
|
63
|
+
}
|
|
64
|
+
let newValue;
|
|
65
|
+
if (isSupportMultiple) {
|
|
66
|
+
newValue = value.slice(0);
|
|
67
|
+
const index = newValue.indexOf(id);
|
|
68
|
+
index === -1 ? newValue.push(id) : newValue.splice(index);
|
|
69
|
+
} else {
|
|
70
|
+
newValue = id === value ? '' : id;
|
|
71
|
+
}
|
|
72
|
+
if (isFilterEditor) {
|
|
73
|
+
onCommit && onCommit({
|
|
74
|
+
id
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
setValue(newValue);
|
|
78
|
+
}, [isSupportMultiple, isFilterEditor, value, onCommit]);
|
|
79
|
+
const onParentDepartmentClick = (0, _react.useCallback)((event, type) => {
|
|
80
|
+
event.preventDefault();
|
|
81
|
+
let newValue;
|
|
82
|
+
if (isSupportMultiple) {
|
|
83
|
+
newValue = value.slice(0);
|
|
84
|
+
const index = newValue.indexOf(type);
|
|
85
|
+
index === -1 ? newValue.push(type) : newValue.splice(index);
|
|
86
|
+
} else {
|
|
87
|
+
newValue = type === value ? '' : type;
|
|
88
|
+
}
|
|
89
|
+
if (isFilterEditor) {
|
|
90
|
+
onCommit && onCommit({
|
|
91
|
+
id: type
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
setValue(newValue);
|
|
95
|
+
}, [value, isFilterEditor, isSupportMultiple, onCommit]);
|
|
96
|
+
const onLeftClick = (0, _react.useCallback)(() => {
|
|
97
|
+
const parentDepartment = departments.find(item => item.id === parentId);
|
|
98
|
+
if (!parentDepartment) {
|
|
99
|
+
onClose && onClose();
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
102
|
+
const {
|
|
103
|
+
enableSelectRange
|
|
104
|
+
} = initColumnData;
|
|
105
|
+
if (topParentIds.includes(parentId) && enableSelectRange) {
|
|
106
|
+
setParentId('');
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
const upperLevelDepartmentParentId = parentDepartment.parent_id;
|
|
110
|
+
setParentId(upperLevelDepartmentParentId);
|
|
111
|
+
}, [initColumnData, departments, parentId, topParentIds, onClose]);
|
|
112
|
+
const renderLeftContent = (0, _react.useCallback)(() => {
|
|
113
|
+
const parentDepartment = departments.find(item => item.id === parentId);
|
|
114
|
+
if (!parentDepartment && !isFilterEditor) return (0, _lang.getLocale)('Cancel');
|
|
115
|
+
return /*#__PURE__*/_react.default.createElement("i", {
|
|
116
|
+
"aria-hidden": "true",
|
|
117
|
+
className: "dtable-font dtable-icon-return"
|
|
118
|
+
});
|
|
119
|
+
}, [isFilterEditor, departments, parentId]);
|
|
120
|
+
const renderDepartments = (0, _react.useCallback)(() => {
|
|
121
|
+
const {
|
|
122
|
+
enableSelectRange
|
|
123
|
+
} = initColumnData;
|
|
124
|
+
let currentDepartments = [];
|
|
125
|
+
if (enableSelectRange && !parentId && !isFilterEditor) {
|
|
126
|
+
currentDepartments = departments.filter(department => topParentIds.includes(department.id));
|
|
127
|
+
} else {
|
|
128
|
+
currentDepartments = departments.filter(department => department.parent_id === parentId);
|
|
129
|
+
}
|
|
130
|
+
if (currentDepartments.length === 0) {
|
|
131
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
132
|
+
className: "d-flex justify-content-center seatable-tip-default h-100 w-100 align-items-center"
|
|
133
|
+
}, /*#__PURE__*/_react.default.createElement("span", null, (0, _lang.getLocale)('No_departments_available')));
|
|
134
|
+
}
|
|
135
|
+
return /*#__PURE__*/_react.default.createElement(_List.default, {
|
|
136
|
+
className: "my-list dtable-ui-mobile-department-editor-departments",
|
|
137
|
+
renderHeader: () => (0, _lang.getLocale)('Select_department')
|
|
138
|
+
}, isFilterEditor && parentId === -1 && /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, _departments2.DEPARTMENT_SELECT_RANGE_OPTIONS.slice(0, 2).map((option, index) => {
|
|
139
|
+
const {
|
|
140
|
+
type,
|
|
141
|
+
name
|
|
142
|
+
} = option;
|
|
143
|
+
const isChecked = isSupportMultiple ? value.includes(type) : value === type;
|
|
144
|
+
return /*#__PURE__*/_react.default.createElement(Item, {
|
|
145
|
+
key: "department-range-item-".concat(index),
|
|
146
|
+
multipleLine: true,
|
|
147
|
+
onClick: event => onParentDepartmentClick(event, type),
|
|
148
|
+
className: "dtable-ui-mobile-department-editor-department-item"
|
|
149
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
150
|
+
className: "d-flex"
|
|
151
|
+
}, /*#__PURE__*/_react.default.createElement(_DTableRadio.default, {
|
|
152
|
+
isChecked: isChecked,
|
|
153
|
+
onCheckedChange: event => onParentDepartmentClick(event, type),
|
|
154
|
+
label: (0, _lang.getLocale)(name)
|
|
155
|
+
})));
|
|
156
|
+
})), currentDepartments.map((department, index) => {
|
|
157
|
+
const {
|
|
158
|
+
hasChild,
|
|
159
|
+
name,
|
|
160
|
+
id
|
|
161
|
+
} = department;
|
|
162
|
+
const isChecked = isSupportMultiple ? value.includes(id) : value === id;
|
|
163
|
+
return /*#__PURE__*/_react.default.createElement(Item, {
|
|
164
|
+
arrow: hasChild ? 'horizontal' : '',
|
|
165
|
+
key: "department-item-".concat(index),
|
|
166
|
+
multipleLine: true,
|
|
167
|
+
onClick: event => onDepartmentClick(event, department),
|
|
168
|
+
className: "dtable-ui-mobile-department-editor-department-item"
|
|
169
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
170
|
+
className: "d-flex"
|
|
171
|
+
}, /*#__PURE__*/_react.default.createElement(_DTableRadio.default, {
|
|
172
|
+
isChecked: isChecked,
|
|
173
|
+
onCheckedChange: event => onParentDepartmentClick(event, department),
|
|
174
|
+
label: name
|
|
175
|
+
})));
|
|
176
|
+
}));
|
|
177
|
+
}, [initColumnData, parentId, isFilterEditor, isSupportMultiple, departments, value, topParentIds, onParentDepartmentClick, onDepartmentClick]);
|
|
178
|
+
(0, _react.useEffect)(() => {
|
|
179
|
+
const {
|
|
180
|
+
enableSelectRange,
|
|
181
|
+
selectedRange,
|
|
182
|
+
specificDepartments
|
|
183
|
+
} = initColumnData;
|
|
184
|
+
if (enableSelectRange && !isFilterEditor) {
|
|
185
|
+
const {
|
|
186
|
+
current_user_department_ids = [],
|
|
187
|
+
current_user_department_and_sub_ids = []
|
|
188
|
+
} = userDepartmentIdsMap;
|
|
189
|
+
let targetDepartments = [];
|
|
190
|
+
let topParentIds = [];
|
|
191
|
+
let canExpand = true;
|
|
192
|
+
if (selectedRange === _dtableUtils.DEPARTMENT_SELECT_RANGE_MAP.CURRENT_USER_DEPARTMENT) {
|
|
193
|
+
canExpand = false;
|
|
194
|
+
topParentIds = current_user_department_ids;
|
|
195
|
+
targetDepartments = initialDepartments.filter(department => current_user_department_ids.includes(department.id));
|
|
196
|
+
} else if (selectedRange === _dtableUtils.DEPARTMENT_SELECT_RANGE_MAP.CURRENT_USER_DEPARTMENT_AND_SUB) {
|
|
197
|
+
const currentUserDepartments = initialDepartments.filter(department => current_user_department_ids.includes(department.id));
|
|
198
|
+
topParentIds = currentUserDepartments.filter(department => !current_user_department_ids.includes(department.parent_id)).map(department => department.id);
|
|
199
|
+
targetDepartments = initialDepartments.filter(department => current_user_department_and_sub_ids.includes(department.id));
|
|
200
|
+
} else {
|
|
201
|
+
canExpand = false;
|
|
202
|
+
topParentIds = specificDepartments;
|
|
203
|
+
targetDepartments = initialDepartments.filter(department => specificDepartments.includes(department.id));
|
|
204
|
+
}
|
|
205
|
+
const departments = (0, _departments.getNormalizedDepartments)(targetDepartments, canExpand);
|
|
206
|
+
setDepartments(departments);
|
|
207
|
+
setTopParentIds(topParentIds);
|
|
208
|
+
return;
|
|
209
|
+
}
|
|
210
|
+
const departments = (0, _departments.getNormalizedDepartments)(initialDepartments);
|
|
211
|
+
setDepartments(departments);
|
|
212
|
+
setParentId(-1);
|
|
213
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
214
|
+
}, []);
|
|
215
|
+
return /*#__PURE__*/_react.default.createElement(_MobileFullScreenPage.default, {
|
|
216
|
+
className: "dtable-ui-mobile-department-editor",
|
|
217
|
+
onClose: onClose
|
|
218
|
+
}, /*#__PURE__*/_react.default.createElement(Header, {
|
|
219
|
+
onLeftClick: onLeftClick,
|
|
220
|
+
onRightClick: onSave
|
|
221
|
+
}, /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, renderLeftContent()), /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, column.name), /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, isFilterEditor ? null : /*#__PURE__*/_react.default.createElement("span", {
|
|
222
|
+
style: {
|
|
223
|
+
color: '#f09f3f'
|
|
224
|
+
}
|
|
225
|
+
}, (0, _lang.getLocale)('Submit')))), /*#__PURE__*/_react.default.createElement(Body, null, renderDepartments()));
|
|
226
|
+
};
|
|
227
|
+
var _default = exports.default = MBDepartmentSingleSelectEditor;
|
package/lib/{Department-editor → DepartmentSingleSelectEditor/pc-editor}/department-single-select.js
RENAMED
|
@@ -8,9 +8,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
8
8
|
exports.default = void 0;
|
|
9
9
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
10
|
var _dtableUtils = require("dtable-utils");
|
|
11
|
-
var _Loading = _interopRequireDefault(require("
|
|
12
|
-
var
|
|
13
|
-
var _lang = require("
|
|
11
|
+
var _Loading = _interopRequireDefault(require("../../Loading"));
|
|
12
|
+
var _departments = require("../../utils/departments");
|
|
13
|
+
var _lang = require("../../lang");
|
|
14
14
|
require("./index.css");
|
|
15
15
|
class DepartmentSingleSelect extends _react.Component {
|
|
16
16
|
constructor(props) {
|
|
@@ -28,7 +28,7 @@ class DepartmentSingleSelect extends _react.Component {
|
|
|
28
28
|
}
|
|
29
29
|
};
|
|
30
30
|
this.initDepartments = departments => {
|
|
31
|
-
const normalizedDepartments = (0,
|
|
31
|
+
const normalizedDepartments = (0, _departments.getNormalizedDepartments)(departments || []);
|
|
32
32
|
this.validDepartments = normalizedDepartments;
|
|
33
33
|
this.setState({
|
|
34
34
|
departments: normalizedDepartments
|
|
@@ -56,7 +56,7 @@ class DepartmentSingleSelect extends _react.Component {
|
|
|
56
56
|
} else {
|
|
57
57
|
targetDepartments = departments.filter(department => specificDepartments.includes(department.id));
|
|
58
58
|
}
|
|
59
|
-
const normalizedDepartments = (0,
|
|
59
|
+
const normalizedDepartments = (0, _departments.getNormalizedDepartments)(targetDepartments);
|
|
60
60
|
_this.validDepartments = normalizedDepartments;
|
|
61
61
|
_this.setState({
|
|
62
62
|
departments: normalizedDepartments,
|
|
@@ -94,7 +94,7 @@ class DepartmentSingleSelect extends _react.Component {
|
|
|
94
94
|
const {
|
|
95
95
|
departments
|
|
96
96
|
} = this.state;
|
|
97
|
-
this.validDepartments = (0,
|
|
97
|
+
this.validDepartments = (0, _departments.searchDepartments)(departments, newSearchValue);
|
|
98
98
|
this.setState({
|
|
99
99
|
searchVal: newSearchValue
|
|
100
100
|
});
|
|
@@ -202,7 +202,7 @@ class DepartmentSingleSelect extends _react.Component {
|
|
|
202
202
|
};
|
|
203
203
|
this.renderEmptyTip = () => {
|
|
204
204
|
return /*#__PURE__*/_react.default.createElement("span", {
|
|
205
|
-
className: "
|
|
205
|
+
className: "none-search-result pl-4 pr-4"
|
|
206
206
|
}, (0, _lang.getLocale)('No_departments_available'));
|
|
207
207
|
};
|
|
208
208
|
this.renderMenuContent = () => {
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
font-size: 14px;
|
|
23
23
|
display: inline-block;
|
|
24
24
|
color: #666666;
|
|
25
|
+
padding: 10px;
|
|
26
|
+
overflow: auto;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
.dtable-ui.department-editor-list .department-item-left-content {
|
|
@@ -68,19 +70,24 @@
|
|
|
68
70
|
color: #212529;
|
|
69
71
|
}
|
|
70
72
|
|
|
71
|
-
.dtable-ui.department-editor-list .editor-department-container .
|
|
73
|
+
.dtable-ui.department-editor-list .editor-department-container .dtable-icon-down3 {
|
|
72
74
|
color: #b5b5b5;
|
|
73
75
|
font-size: 12px;
|
|
74
|
-
transform: scale(0.8);
|
|
76
|
+
transform: scale(0.8) rotate(-90deg);
|
|
77
|
+
|
|
75
78
|
cursor: pointer;
|
|
76
79
|
display: inline-block;
|
|
77
80
|
margin-left: 0px !important;
|
|
78
81
|
}
|
|
79
82
|
|
|
80
|
-
.dtable-ui.department-editor-list .editor-department-container .
|
|
83
|
+
.dtable-ui.department-editor-list .editor-department-container .dtable-icon-down3:hover {
|
|
81
84
|
color: #555;
|
|
82
85
|
}
|
|
83
86
|
|
|
87
|
+
.dtable-ui.department-editor-list .editor-department-container .dtable-icon-down3.expand {
|
|
88
|
+
transform: scale(0.8);
|
|
89
|
+
}
|
|
90
|
+
|
|
84
91
|
.selected-departments.dtable-ui {
|
|
85
92
|
background-color: #f6f6f6;
|
|
86
93
|
padding: 5px;
|
|
@@ -7,23 +7,20 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
9
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
-
var _DTablePopover = _interopRequireDefault(require("
|
|
11
|
-
var _constants = require("./constants");
|
|
10
|
+
var _DTablePopover = _interopRequireDefault(require("../../DTablePopover"));
|
|
12
11
|
var _departmentSingleSelect = _interopRequireDefault(require("./department-single-select"));
|
|
13
|
-
var _lang = require("../lang");
|
|
14
12
|
require("./index.css");
|
|
15
|
-
class
|
|
13
|
+
class PCDepartmentSingleSelectEditor extends _react.Component {
|
|
16
14
|
constructor(props) {
|
|
17
15
|
super(props);
|
|
18
16
|
this.onCommit = value => {
|
|
19
17
|
const {
|
|
20
|
-
onCommit
|
|
21
|
-
column
|
|
18
|
+
onCommit
|
|
22
19
|
} = this.props;
|
|
23
20
|
this.setState({
|
|
24
21
|
value
|
|
25
22
|
}, () => {
|
|
26
|
-
this.isRowExpand ? onCommit(
|
|
23
|
+
this.isRowExpand ? onCommit(value) : onCommit();
|
|
27
24
|
});
|
|
28
25
|
};
|
|
29
26
|
this.getValue = () => {
|
|
@@ -31,28 +28,14 @@ class DepartmentSingleSelectEditor extends _react.Component {
|
|
|
31
28
|
updated[this.props.column.key] = this.state.value;
|
|
32
29
|
return updated;
|
|
33
30
|
};
|
|
34
|
-
this.createSpecificDepartments = () => {
|
|
35
|
-
return _constants.DEPARTMENT_SELECT_RANGE_OPTIONS.slice(0, 2).map(option => {
|
|
36
|
-
const {
|
|
37
|
-
type,
|
|
38
|
-
name
|
|
39
|
-
} = option;
|
|
40
|
-
return {
|
|
41
|
-
value: type,
|
|
42
|
-
label: /*#__PURE__*/_react.default.createElement("span", {
|
|
43
|
-
className: "text-truncate department-name"
|
|
44
|
-
}, (0, _lang.getLocale)(name))
|
|
45
|
-
};
|
|
46
|
-
});
|
|
47
|
-
};
|
|
48
31
|
const {
|
|
49
|
-
column
|
|
32
|
+
column,
|
|
50
33
|
isInModal,
|
|
51
34
|
value: _value,
|
|
52
35
|
height
|
|
53
36
|
} = props;
|
|
54
|
-
const editorWidth =
|
|
55
|
-
const data =
|
|
37
|
+
const editorWidth = column.width > 300 ? column.width : 300;
|
|
38
|
+
const data = column.data || {};
|
|
56
39
|
this.state = {
|
|
57
40
|
value: _value || '',
|
|
58
41
|
menuStyle: isInModal ? {} : {
|
|
@@ -103,4 +86,4 @@ class DepartmentSingleSelectEditor extends _react.Component {
|
|
|
103
86
|
}, dom)) : dom;
|
|
104
87
|
}
|
|
105
88
|
}
|
|
106
|
-
var _default = exports.default =
|
|
89
|
+
var _default = exports.default = PCDepartmentSingleSelectEditor;
|
|
@@ -7,175 +7,28 @@ 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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
let editorTop = offsetTop;
|
|
35
|
-
if (this.props.isInModal) {
|
|
36
|
-
const innerHeight = window.innerHeight;
|
|
37
|
-
const offsetTop = this.editor.parentNode.getBoundingClientRect().y;
|
|
38
|
-
editorTop = offsetTop;
|
|
39
|
-
editorTop = editorHeight + editorTop > innerHeight ? innerHeight - editorHeight - 30 : editorTop;
|
|
40
|
-
editorLeft = -30;
|
|
41
|
-
} else {
|
|
42
|
-
if (offsetLeft < editorWidth) {
|
|
43
|
-
editorLeft = offsetLeft + this.props.column.width;
|
|
44
|
-
}
|
|
45
|
-
if (editorLeft + editorWidth > window.innerWidth) {
|
|
46
|
-
editorLeft = window.innerWidth - editorWidth;
|
|
47
|
-
}
|
|
48
|
-
if (offsetTop + editorHeight > window.innerHeight) {
|
|
49
|
-
editorTop = window.innerHeight - editorHeight - 10;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
this.setState({
|
|
53
|
-
editorPosition: {
|
|
54
|
-
top: editorTop,
|
|
55
|
-
left: editorLeft
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
};
|
|
59
|
-
this.getValue = () => {
|
|
60
|
-
const updated = {
|
|
61
|
-
[this.props.column.key]: this.value
|
|
62
|
-
};
|
|
63
|
-
return updated;
|
|
64
|
-
};
|
|
65
|
-
this.saveSignature = () => {
|
|
66
|
-
if (!this.signatureBoard || this.state.saving) return;
|
|
67
|
-
if (!this.signatureBoard.checkHasChanged()) {
|
|
68
|
-
this.props.onCommitCancel();
|
|
69
|
-
return;
|
|
70
|
-
}
|
|
71
|
-
this.signatureBoard.convert2BlobPNG(signBlob => {
|
|
72
|
-
if (!signBlob) {
|
|
73
|
-
if (!this.props.value) {
|
|
74
|
-
this.props.onCommitCancel();
|
|
75
|
-
return;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
// clear the old dtable-ui-digital-sign
|
|
79
|
-
this.value = null;
|
|
80
|
-
this.props.onCommit(this.value);
|
|
81
|
-
return;
|
|
82
|
-
}
|
|
83
|
-
this.setState({
|
|
84
|
-
saving: true
|
|
85
|
-
});
|
|
86
|
-
this.digitalService.uploadSignImage(signBlob, {
|
|
87
|
-
successCallback: signature => {
|
|
88
|
-
this.value = signature;
|
|
89
|
-
this.setState({
|
|
90
|
-
saving: false
|
|
91
|
-
}, () => {
|
|
92
|
-
this.props.onCommit(Object.assign({}, this.value));
|
|
93
|
-
});
|
|
94
|
-
},
|
|
95
|
-
failedCallback: error => {
|
|
96
|
-
const errMsg = (0, _utils2.getErrorMsg)(error, true);
|
|
97
|
-
if (!error.response || error.response.status !== 403) {
|
|
98
|
-
_toaster.default.danger((0, _lang.getLocale)(errMsg));
|
|
99
|
-
}
|
|
100
|
-
this.setState({
|
|
101
|
-
saving: false
|
|
102
|
-
});
|
|
103
|
-
}
|
|
104
|
-
});
|
|
105
|
-
});
|
|
106
|
-
};
|
|
107
|
-
this.clearSignature = () => {
|
|
108
|
-
this.signatureBoard.clear();
|
|
109
|
-
};
|
|
110
|
-
this.state = {
|
|
111
|
-
editorPosition: {},
|
|
112
|
-
saving: false
|
|
113
|
-
};
|
|
114
|
-
const {
|
|
115
|
-
uploadFile,
|
|
116
|
-
config,
|
|
117
|
-
value
|
|
118
|
-
} = props;
|
|
119
|
-
const {
|
|
120
|
-
username
|
|
121
|
-
} = config || {};
|
|
122
|
-
this.value = value || {};
|
|
123
|
-
this.digitalService = new _service.default({
|
|
124
|
-
uploadFile,
|
|
125
|
-
username
|
|
126
|
-
});
|
|
127
|
-
}
|
|
128
|
-
componentDidMount() {
|
|
129
|
-
this.setPosition();
|
|
130
|
-
}
|
|
131
|
-
render() {
|
|
132
|
-
const {
|
|
133
|
-
value,
|
|
134
|
-
config
|
|
135
|
-
} = this.props;
|
|
136
|
-
const {
|
|
137
|
-
editorPosition,
|
|
138
|
-
saving
|
|
139
|
-
} = this.state;
|
|
140
|
-
const signImageUrl = (0, _url.generateCurrentBaseImageUrl)({
|
|
141
|
-
...config,
|
|
142
|
-
partUrl: _utils.default.getSignImageUrl(value)
|
|
143
|
-
});
|
|
144
|
-
return /*#__PURE__*/_react.default.createElement("div", {
|
|
145
|
-
className: "dtable-ui-digital-sign-editor-container",
|
|
146
|
-
ref: ref => this.editor = ref,
|
|
147
|
-
style: {
|
|
148
|
-
...editorPosition,
|
|
149
|
-
zIndex: 1000
|
|
150
|
-
}
|
|
151
|
-
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
152
|
-
className: "dtable-ui-digital-sign-editor-header"
|
|
153
|
-
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
154
|
-
className: "dtable-ui-digital-sign-editor-logo"
|
|
155
|
-
}, /*#__PURE__*/_react.default.createElement("i", {
|
|
156
|
-
className: "dtable-font dtable-icon-handwritten-signature"
|
|
157
|
-
}), /*#__PURE__*/_react.default.createElement("span", {
|
|
158
|
-
className: "ml-2 dtable-ui-digital-sign-editor-title"
|
|
159
|
-
}, (0, _lang.getLocale)('Digital_signature'))), /*#__PURE__*/_react.default.createElement("div", {
|
|
160
|
-
className: "dtable-ui-digital-sign-editor-operations"
|
|
161
|
-
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
162
|
-
className: "btn-clear-dtable-ui-digital-sign",
|
|
163
|
-
onClick: this.clearSignature
|
|
164
|
-
}, /*#__PURE__*/_react.default.createElement("i", {
|
|
165
|
-
className: "dtable-font dtable-icon-clear-format"
|
|
166
|
-
}), /*#__PURE__*/_react.default.createElement("span", null, (0, _lang.getLocale)('Re-sign'))))), /*#__PURE__*/_react.default.createElement("div", {
|
|
167
|
-
className: "dtable-ui-digital-sign-panel"
|
|
168
|
-
}, /*#__PURE__*/_react.default.createElement(_signatureBoard.default, {
|
|
169
|
-
ref: ref => this.signatureBoard = ref,
|
|
170
|
-
signImageUrl: signImageUrl
|
|
171
|
-
})), /*#__PURE__*/_react.default.createElement(_DTableCustomFooter.default, null, /*#__PURE__*/_react.default.createElement(_reactstrap.Button, {
|
|
172
|
-
onClick: this.props.onCommitCancel,
|
|
173
|
-
color: "secondary"
|
|
174
|
-
}, (0, _lang.getLocale)('Cancel')), /*#__PURE__*/_react.default.createElement(_reactstrap.Button, {
|
|
175
|
-
onClick: this.saveSignature,
|
|
176
|
-
color: "primary",
|
|
177
|
-
disabled: saving
|
|
178
|
-
}, (0, _lang.getLocale)(saving ? 'Saving' : 'Save'))));
|
|
179
|
-
}
|
|
180
|
-
}
|
|
10
|
+
var _reactResponsive = _interopRequireDefault(require("react-responsive"));
|
|
11
|
+
var _pcEditor = _interopRequireDefault(require("./pc-editor"));
|
|
12
|
+
var _mbEditor = _interopRequireDefault(require("./mb-editor"));
|
|
13
|
+
const DigitalSignEditor = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
14
|
+
let {
|
|
15
|
+
isMobile,
|
|
16
|
+
...props
|
|
17
|
+
} = _ref;
|
|
18
|
+
if (isMobile === false) return /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
19
|
+
ref: ref
|
|
20
|
+
}));
|
|
21
|
+
if (isMobile === true) return /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
22
|
+
ref: ref
|
|
23
|
+
}));
|
|
24
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
25
|
+
query: "(min-width: 768px)"
|
|
26
|
+
}, /*#__PURE__*/_react.default.createElement(_pcEditor.default, Object.assign({}, props, {
|
|
27
|
+
ref: ref
|
|
28
|
+
}))), /*#__PURE__*/_react.default.createElement(_reactResponsive.default, {
|
|
29
|
+
query: "(max-width: 768px)"
|
|
30
|
+
}, /*#__PURE__*/_react.default.createElement(_mbEditor.default, Object.assign({}, props, {
|
|
31
|
+
ref: ref
|
|
32
|
+
}))));
|
|
33
|
+
});
|
|
181
34
|
var _default = exports.default = DigitalSignEditor;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
.dtable-ui-mobile-digital-sign-editor .dtable-ui-mobile-full-screen-page-body {
|
|
2
|
+
position: relative;
|
|
3
|
+
flex: 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.dtable-ui-mobile-digital-sign-editor .dtable-ui-digital-sign-panel {
|
|
7
|
+
margin-top: 20px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.dtable-ui-mobile-digital-sign-editor .dtable-ui-digital-sign-editor-operations {
|
|
11
|
+
z-index: 3;
|
|
12
|
+
top: 10px;
|
|
13
|
+
right: 16px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.dtable-ui-mobile-digital-sign-editor .dtable-ui-digital-sign-editor-operations .btn-clear-dtable-ui-digital-sign {
|
|
17
|
+
color: rgb(240, 159, 63);
|
|
18
|
+
background-color: unset;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.dtable-ui-mobile-digital-sign-editor .dtable-ui-digital-sign-panel-mask {
|
|
22
|
+
top: 0;
|
|
23
|
+
left: 0;
|
|
24
|
+
z-index: 4;
|
|
25
|
+
height: 100%;
|
|
26
|
+
width: 100%;
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
background-color: rgba(0, 0, 0, .4);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.dtable-ui-mobile-digital-sign-editor .dtable-ui-digital-sign-panel-mask .dtable-ui-digital-sign-panel-mask-container {
|
|
34
|
+
color: #fff;
|
|
35
|
+
}
|