dtable-ui-component 0.1.75 → 0.1.76
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/README.md +20 -2
- package/lib/AutoNumberFormatter/index.css +1 -0
- package/{es/components/cell-formatter/auto-number-formatter.js → lib/AutoNumberFormatter/index.js} +1 -0
- package/lib/ButtonFormatter/index.css +13 -0
- package/{es/components/cell-formatter/button-formatter.js → lib/ButtonFormatter/index.js} +1 -0
- package/lib/CTimeFormatter/index.css +1 -0
- package/{es/components/cell-formatter/ctime-formatter.js → lib/CTimeFormatter/index.js} +1 -0
- package/lib/CheckboxEditor/index.js +104 -0
- package/lib/CheckboxFormatter/index.css +1 -0
- package/{es/components/cell-formatter/checkbox-formatter.js → lib/CheckboxFormatter/index.js} +1 -0
- package/lib/CollaboratorEditor/index.css +48 -0
- package/lib/CollaboratorEditor/index.js +237 -0
- package/lib/CollaboratorEditor/mb-collaborator-editor-popover/index.css +86 -0
- package/lib/CollaboratorEditor/mb-collaborator-editor-popover/index.js +178 -0
- package/lib/CollaboratorEditor/pc-collaborator-editor-popover/index.css +1 -0
- package/lib/CollaboratorEditor/pc-collaborator-editor-popover/index.js +110 -0
- package/lib/CollaboratorFormatter/index.css +1 -0
- package/{es/components/cell-formatter/collaborator-formatter.js → lib/CollaboratorFormatter/index.js} +3 -2
- package/lib/CollaboratorItem/index.css +49 -0
- package/{es/components/common/collaborator-item.js → lib/CollaboratorItem/index.js} +1 -0
- package/lib/CreatorFormatter/index.css +1 -0
- package/{es/components/cell-formatter/creator-formatter.js → lib/CreatorFormatter/index.js} +3 -2
- package/lib/DateEditor/index.css +4 -0
- package/lib/DateEditor/index.js +152 -0
- package/{es/css → lib/DateEditor/mb-date-editor-popover}/custom-rc-calendar.css +0 -0
- package/lib/DateEditor/mb-date-editor-popover/index.css +45 -0
- package/lib/DateEditor/mb-date-editor-popover/index.js +245 -0
- package/lib/DateEditor/pc-date-editor-popover.js +142 -0
- package/lib/DateFormatter/index.css +1 -0
- package/{es/components/cell-formatter/date-formatter.js → lib/DateFormatter/index.js} +2 -1
- package/lib/DurationFormatter/index.css +1 -0
- package/{es/components/cell-formatter/duration-formatter.js → lib/DurationFormatter/index.js} +2 -1
- package/{es/components/common/edit-editor-button.js → lib/EditEditorButton/index.js} +0 -0
- package/lib/EmailFormatter/index.css +5 -0
- package/{es/components/cell-formatter/email-formatter.js → lib/EmailFormatter/index.js} +1 -0
- package/lib/FileEditor/index.js +46 -0
- package/lib/FileEditor/pc-files-addition/index.js +0 -0
- package/lib/FileEditor/pc-files-addition/pc-file-uploaded-item.js +0 -0
- package/lib/FileEditor/pc-files-preview/index.js +0 -0
- package/lib/FileEditor/pc-files-preview/pc-file-item-preview.js +0 -0
- package/lib/FileFormatter/index.css +29 -0
- package/{es/components/cell-formatter/file-formatter.js → lib/FileFormatter/index.js} +2 -1
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/excel.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/file.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/music.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/pdf.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/pic.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/ppt.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/txt.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/video.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/192/word.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/excel.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/file.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/music.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/pdf.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/pic.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/ppt.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/txt.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/video.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/file/24/word.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/folder/folder-192.png +0 -0
- package/{es/assets/images → lib/FileItemFormatter/assets}/folder/folder-24.png +0 -0
- package/{es/components/cell-formatter/widgets/file-item-formatter.js → lib/FileItemFormatter/index.js} +2 -2
- package/lib/FileItemFormatter/utils.js +72 -0
- package/{es/components/file-uploader → lib/FileUploader}/index.js +0 -0
- package/{es/utils → lib/FormulaFormatter}/cell-value-validator.js +1 -2
- package/lib/FormulaFormatter/index.css +19 -0
- package/{es/components/cell-formatter/formula-formatter.js → lib/FormulaFormatter/index.js} +7 -8
- package/{es/utils/column-utils.js → lib/FormulaFormatter/utils.js} +5 -1
- package/lib/GeolocationFormatter/index.css +1 -0
- package/{es/components/cell-formatter/geolocation-formatter.js → lib/GeolocationFormatter/index.js} +2 -1
- package/lib/HtmlLongTextFormatter/index.css +63 -0
- package/{es/components/cell-formatter/widgets/long-text-formatter/html-long-text-formatter.js → lib/HtmlLongTextFormatter/index.js} +5 -2
- package/{es/utils → lib/HtmlLongTextFormatter}/markdown2html.js +0 -0
- package/{es/utils → lib/HtmlLongTextFormatter}/unified/index.js +1 -0
- package/{es/utils → lib/HtmlLongTextFormatter}/vfile/core.js +1 -0
- package/{es/utils → lib/HtmlLongTextFormatter}/vfile/index.js +0 -0
- package/{es/components/common → lib/ImageFormatter}/images-lazy-load.js +2 -2
- package/lib/ImageFormatter/index.css +34 -0
- package/{es/components/cell-formatter/image-formatter.js → lib/ImageFormatter/index.js} +4 -3
- package/lib/ImageFormatter/utils.js +7 -0
- package/{es/css/image-previewer-ligntbox.css → lib/ImagePreviewerLightbox/index.css} +0 -0
- package/{es/components/cell-formatter/widgets/image-previewer-lightbox.js → lib/ImagePreviewerLightbox/index.js} +3 -3
- package/lib/ImagePreviewerLightbox/utils.js +8 -0
- package/lib/LastModifierFormatter/index.css +1 -0
- package/{es/components/cell-formatter/last-modifier-formatter.js → lib/LastModifierFormatter/index.js} +5 -4
- package/lib/LinkEditor/index.css +9 -0
- package/lib/LinkEditor/index.js +304 -0
- package/{es/components/common → lib/LinkEditor}/link-editor-option.js +0 -0
- package/lib/LinkEditor/mb-link-editor-popover/index.css +85 -0
- package/lib/LinkEditor/mb-link-editor-popover/index.js +171 -0
- package/lib/LinkEditor/pc-link-editor-popover/index.css +63 -0
- package/lib/LinkEditor/pc-link-editor-popover/index.js +115 -0
- package/lib/LinkFormatter/index.css +27 -0
- package/{es/components/cell-formatter/link-formatter.js → lib/LinkFormatter/index.js} +2 -2
- package/{es/css/loading.css → lib/Loading/index.css} +0 -0
- package/{es/components/loading.js → lib/Loading/index.js} +1 -1
- package/{es/components/cell-formatter/long-text-formatter.js → lib/LongTextFormatter/index.js} +4 -6
- package/{es/components/common/mobile/mb-editor-header.js → lib/MBEditorHeader/index.js} +0 -0
- package/lib/MTimeFormatter/index.css +1 -0
- package/{es/components/cell-formatter/mtime-formatter.js → lib/MTimeFormatter/index.js} +1 -0
- package/{es/components/common/modal-portal.js → lib/ModalPortal/index.js} +0 -0
- package/lib/MultipleSelectEditor/index.css +9 -0
- package/lib/MultipleSelectEditor/index.js +236 -0
- package/lib/MultipleSelectFormatter/index.css +1 -0
- package/{es/components/cell-formatter/multiple-select-formatter.js → lib/MultipleSelectFormatter/index.js} +2 -1
- package/lib/NumberEditor/index.js +154 -0
- package/lib/NumberFormatter/index.css +1 -0
- package/{es/components/cell-formatter/number-formatter.js → lib/NumberFormatter/index.js} +2 -1
- package/lib/RateFormatter/index.css +1 -0
- package/{es/components/cell-formatter/rate-formatter.js → lib/RateFormatter/index.js} +1 -0
- package/{es/components/common/select-item.js → lib/SelectItem/index.js} +0 -0
- package/lib/SimpleLongTextFormatter/index.css +63 -0
- package/{es/components/cell-formatter/widgets/long-text-formatter/simple-long-text-formatter.js → lib/SimpleLongTextFormatter/index.js} +5 -2
- package/{es/utils → lib/SimpleLongTextFormatter}/normalize-long-text-value.js +3 -3
- package/lib/SingleSelectEditor/index.css +9 -0
- package/lib/SingleSelectEditor/index.js +201 -0
- package/lib/SingleSelectFormatter/index.css +1 -0
- package/{es/components/cell-formatter/single-select-formatter.js → lib/SingleSelectFormatter/index.js} +2 -1
- package/lib/TextEditor/index.js +122 -0
- package/lib/TextFormatter/index.css +1 -0
- package/{es/components/cell-formatter/text-formatter.js → lib/TextFormatter/index.js} +1 -0
- package/lib/UrlFormatter/index.css +5 -0
- package/{es/components/cell-formatter/url-formatter.js → lib/UrlFormatter/index.js} +1 -0
- package/{es → lib}/assets/images/avatar/default_avatar.png +0 -0
- package/{es/components/cell-factory/cell-formatter-factory.js → lib/cellFormatterFactory/index.js} +3 -3
- package/{es → lib}/constants/cell-types.js +0 -0
- package/lib/constants/index.js +49 -0
- package/lib/css/cell-editor.css +6 -0
- package/lib/css/cell-formatter.css +4 -0
- package/lib/css/mb-cell-editor.css +55 -0
- package/lib/formatterConfig/index.js +31 -0
- package/lib/index.js +43 -0
- package/{es → lib}/lang/index.js +0 -0
- package/{es → lib}/locals/de.js +0 -0
- package/{es → lib}/locals/en.js +0 -0
- package/{es → lib}/locals/fr.js +0 -0
- package/{es → lib}/locals/zh-CN.js +0 -0
- package/lib/select-editor/index.js +4 -0
- package/lib/select-editor/mb-select-editor-popover/index.css +127 -0
- package/lib/select-editor/mb-select-editor-popover/index.js +231 -0
- package/lib/select-editor/pc-select-editor-popover/index.css +72 -0
- package/lib/select-editor/pc-select-editor-popover/index.js +144 -0
- package/{es/components/common → lib/select-editor}/select-editor-option.js +0 -0
- package/{es/components/toast → lib/toaster}/alert.js +0 -0
- package/{es/components/toast → lib/toaster}/index.js +0 -0
- package/{es/components/toast → lib/toaster}/toast.js +0 -0
- package/{es/components/toast → lib/toaster}/toastManager.js +0 -0
- package/{es/components/toast → lib/toaster}/toaster.js +0 -0
- package/lib/utils/editor-utils.js +71 -0
- package/{es → lib}/utils/number-precision.js +1 -0
- package/lib/utils/utils.js +25 -0
- package/{es → lib}/utils/value-format-utils.js +3 -2
- package/package.json +8 -8
- package/es/app.css +0 -20
- package/es/app.js +0 -91
- package/es/components/cell-formatter/formatter-config.js +0 -31
- package/es/components/cell-formatter/index.js +0 -27
- package/es/constants/index.js +0 -48
- package/es/css/cell-editor.css +0 -614
- package/es/css/cell-formatter.css +0 -247
- package/es/index.js +0 -6
- package/es/utils/utils.js +0 -116
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@import url('../../css/mb-cell-editor.css');
|
|
2
|
+
|
|
3
|
+
@media screen and (max-width: 767.8px) {
|
|
4
|
+
.dtable-ui-mb-link-editor-body .mb-search-link-items {
|
|
5
|
+
padding: 8px 16px;
|
|
6
|
+
margin-top: 20px;
|
|
7
|
+
border-top: 1px solid #e9e9e9;
|
|
8
|
+
border-bottom: 1px solid #e9e9e9;
|
|
9
|
+
background-color: #fff;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.dtable-ui-mb-link-editor-body .mb-search-link-items > input {
|
|
13
|
+
outline: none;
|
|
14
|
+
height: 30px;
|
|
15
|
+
padding: 0;
|
|
16
|
+
line-height: 30px;
|
|
17
|
+
border: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.dtable-ui-mb-link-editor-body .mb-search-link-items > input:focus,
|
|
21
|
+
.dtable-ui-mb-link-editor-body .mb-search-link-items > input:active {
|
|
22
|
+
outline: none;
|
|
23
|
+
box-shadow: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.dtable-ui-mb-link-editor-body .mb-link-container {
|
|
27
|
+
flex: 1;
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
margin-top: 10px;
|
|
31
|
+
min-height: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.dtable-ui-mb-link-editor-body .mb-link-container .title {
|
|
35
|
+
padding: 6px 16px;
|
|
36
|
+
border-bottom: 1px solid #e9e9e9;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.dtable-ui-mb-link-editor-body .mb-link-container .content {
|
|
40
|
+
flex: 1;
|
|
41
|
+
overflow: auto;
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: column;
|
|
44
|
+
border-bottom: 1px solid #e9e9e9;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.dtable-ui-mb-link-editor-body .search-result-none {
|
|
48
|
+
padding: 16px 0 16px 16px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.dtable-ui-mb-link-editor-body .mb-link-option-item {
|
|
52
|
+
display: flex;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: space-between;
|
|
55
|
+
height: 50px;
|
|
56
|
+
padding: 10px 10px 10px 16px;
|
|
57
|
+
font-size: 13px;
|
|
58
|
+
color: #202428;
|
|
59
|
+
background-color: #fff;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.dtable-ui-mb-link-editor-body .mb-link-option-item {
|
|
63
|
+
border-bottom: 1px solid #e9e9e9;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.dtable-ui-mb-link-editor-body .mb-link-option-item .mb-option-info {
|
|
67
|
+
display: flex;
|
|
68
|
+
align-items: center;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.dtable-ui-mb-link-editor-body .mb-link-option-item .option-name {
|
|
72
|
+
padding: 0 10px;
|
|
73
|
+
max-width: 250px;
|
|
74
|
+
white-space: nowrap;
|
|
75
|
+
overflow: hidden;
|
|
76
|
+
text-overflow: ellipsis;
|
|
77
|
+
background: #eceff4;
|
|
78
|
+
border-radius: 3px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.dtable-ui-mb-link-editor-body .mb-link-option-item .dtable-font {
|
|
82
|
+
font-size: 12px;
|
|
83
|
+
color: #798d99;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
2
|
+
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
3
|
+
import _assertThisInitialized from "@babel/runtime/helpers/esm/assertThisInitialized";
|
|
4
|
+
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
5
|
+
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { getLocale } from '../../lang';
|
|
8
|
+
import MBEditorHeader from '../../MBEditorHeader';
|
|
9
|
+
import './index.css';
|
|
10
|
+
|
|
11
|
+
var MBLinkEditorPopover = /*#__PURE__*/function (_React$Component) {
|
|
12
|
+
_inherits(MBLinkEditorPopover, _React$Component);
|
|
13
|
+
|
|
14
|
+
var _super = _createSuper(MBLinkEditorPopover);
|
|
15
|
+
|
|
16
|
+
function MBLinkEditorPopover(props) {
|
|
17
|
+
var _this;
|
|
18
|
+
|
|
19
|
+
_classCallCheck(this, MBLinkEditorPopover);
|
|
20
|
+
|
|
21
|
+
_this = _super.call(this, props);
|
|
22
|
+
|
|
23
|
+
_this.handleHistaryBack = function (e) {
|
|
24
|
+
e.preventDefault();
|
|
25
|
+
|
|
26
|
+
_this.props.onClosePopover();
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
_this.onContainerClick = function (event) {
|
|
30
|
+
if (_this.editorPopover && _this.editorPopover.contains(event.target)) {
|
|
31
|
+
event.stopPropagation();
|
|
32
|
+
event.nativeEvent.stopImmediatePropagation();
|
|
33
|
+
return false;
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
_this.onChangeSearch = function (event) {
|
|
38
|
+
var searchVal = _this.state.searchVal;
|
|
39
|
+
|
|
40
|
+
if (searchVal === event.target.value) {
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
searchVal = event.target.value;
|
|
45
|
+
|
|
46
|
+
_this.setState({
|
|
47
|
+
searchVal: searchVal
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
_this.getSelectedOptions = function () {
|
|
52
|
+
var _this$props = _this.props,
|
|
53
|
+
value = _this$props.value,
|
|
54
|
+
options = _this$props.options;
|
|
55
|
+
|
|
56
|
+
if (!Array.isArray(value)) {
|
|
57
|
+
return [];
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return options.filter(function (option) {
|
|
61
|
+
return value.indexOf(option.email) > -1;
|
|
62
|
+
});
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
_this.getFilterOptions = function () {
|
|
66
|
+
var options = _this.props.options;
|
|
67
|
+
var searchVal = _this.state.searchVal;
|
|
68
|
+
return searchVal ? options.filter(function (item) {
|
|
69
|
+
return item.name.indexOf(searchVal) > -1;
|
|
70
|
+
}) : options;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
_this.onSelectOption = function (option) {
|
|
74
|
+
_this.props.onOptionItemToggle(option);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
_this.onRemoveOption = function (option) {
|
|
78
|
+
_this.props.onOptionItemToggle(option);
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
_this.renderFilteredOptions = function (options) {
|
|
82
|
+
var value = _this.props.value;
|
|
83
|
+
return options.map(function (option, index) {
|
|
84
|
+
var isSelect = value.some(function (item) {
|
|
85
|
+
return item === option.id;
|
|
86
|
+
});
|
|
87
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
88
|
+
className: "mb-link-option-item",
|
|
89
|
+
key: index,
|
|
90
|
+
onMouseDown: _this.onSelectOption.bind(_assertThisInitialized(_this), option)
|
|
91
|
+
}, /*#__PURE__*/React.createElement("span", {
|
|
92
|
+
className: "mb-option-info"
|
|
93
|
+
}, /*#__PURE__*/React.createElement("span", {
|
|
94
|
+
className: "option-name"
|
|
95
|
+
}, option.name)), isSelect && /*#__PURE__*/React.createElement("i", {
|
|
96
|
+
className: "mb-option-checked dtable-font dtable-icon-check-mark"
|
|
97
|
+
}));
|
|
98
|
+
});
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
_this.setEditorPopover = function (editorPopover) {
|
|
102
|
+
_this.editorPopover = editorPopover;
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
_this.state = {
|
|
106
|
+
searchVal: ''
|
|
107
|
+
};
|
|
108
|
+
return _this;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
_createClass(MBLinkEditorPopover, [{
|
|
112
|
+
key: "componentDidMount",
|
|
113
|
+
value: function componentDidMount() {
|
|
114
|
+
history.pushState(null, null, '#'); // eslint-disable-line
|
|
115
|
+
|
|
116
|
+
window.addEventListener('popstate', this.handleHistaryBack, false);
|
|
117
|
+
}
|
|
118
|
+
}, {
|
|
119
|
+
key: "componentWillUnmount",
|
|
120
|
+
value: function componentWillUnmount() {
|
|
121
|
+
window.removeEventListener('popstate', this.handleHistaryBack, false);
|
|
122
|
+
}
|
|
123
|
+
}, {
|
|
124
|
+
key: "render",
|
|
125
|
+
value: function render() {
|
|
126
|
+
var column = this.props.column;
|
|
127
|
+
var searchVal = this.state.searchVal;
|
|
128
|
+
var filterOptions = this.getFilterOptions();
|
|
129
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
130
|
+
ref: this.setEditorPopover,
|
|
131
|
+
className: "dtable-ui-mb-editor-popover mb-link-editor-popover",
|
|
132
|
+
onClick: this.onContainerClick
|
|
133
|
+
}, /*#__PURE__*/React.createElement(MBEditorHeader, {
|
|
134
|
+
title: column.name,
|
|
135
|
+
leftContent: /*#__PURE__*/React.createElement("i", {
|
|
136
|
+
className: "dtable-font dtable-icon-return"
|
|
137
|
+
}),
|
|
138
|
+
rightContent: /*#__PURE__*/React.createElement("span", null, getLocale('Done')),
|
|
139
|
+
onLeftClick: this.props.onClosePopover,
|
|
140
|
+
onRightClick: this.props.onClosePopover
|
|
141
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
142
|
+
className: "dtable-ui-mb-editor-body dtable-ui-mb-link-editor-body"
|
|
143
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
144
|
+
className: "mb-search-link-items"
|
|
145
|
+
}, /*#__PURE__*/React.createElement("input", {
|
|
146
|
+
className: "form-control",
|
|
147
|
+
type: "text",
|
|
148
|
+
placeholder: getLocale('Find_an_option'),
|
|
149
|
+
value: searchVal,
|
|
150
|
+
onChange: this.onChangeSearch,
|
|
151
|
+
onClick: this.onInputClick
|
|
152
|
+
})), /*#__PURE__*/React.createElement("div", {
|
|
153
|
+
className: "mb-link-container"
|
|
154
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
155
|
+
className: "title"
|
|
156
|
+
}, getLocale('Choose_an_option')), /*#__PURE__*/React.createElement("div", {
|
|
157
|
+
className: "content"
|
|
158
|
+
}, filterOptions.length === 0 && /*#__PURE__*/React.createElement("div", {
|
|
159
|
+
className: "search-result-none"
|
|
160
|
+
}, getLocale('No_options_available')), filterOptions.length > 0 && this.renderFilteredOptions(filterOptions)))));
|
|
161
|
+
}
|
|
162
|
+
}]);
|
|
163
|
+
|
|
164
|
+
return MBLinkEditorPopover;
|
|
165
|
+
}(React.Component);
|
|
166
|
+
|
|
167
|
+
MBLinkEditorPopover.defaultProps = {
|
|
168
|
+
isReadOnly: false,
|
|
169
|
+
value: []
|
|
170
|
+
};
|
|
171
|
+
export default MBLinkEditorPopover;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
@import url('../../css/cell-editor.css');
|
|
2
|
+
|
|
3
|
+
.dtable-ui-link-editor-popover .link-options-search {
|
|
4
|
+
padding: 10px 10px 0 10px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.dtable-ui-link-editor-popover .link-options-search input {
|
|
8
|
+
height: 28px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.dtable-ui-link-editor-popover .link-options-container {
|
|
12
|
+
min-height: 160px;
|
|
13
|
+
max-height: 200px;
|
|
14
|
+
margin: 10px 0;
|
|
15
|
+
padding: 0 10px;
|
|
16
|
+
overflow: auto;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* option item */
|
|
20
|
+
.dtable-ui-link-editor-popover .link-option-item {
|
|
21
|
+
display: flex;
|
|
22
|
+
height: 30px;
|
|
23
|
+
padding-left: 12px;
|
|
24
|
+
font-size: 14px;
|
|
25
|
+
line-height: 30px;
|
|
26
|
+
margin-left: 10px;
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.dtable-ui-link-editor-popover .link-option-item:hover {
|
|
31
|
+
background-color: #f5f5f5;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.dtable-ui-link-editor-popover .option-info {
|
|
35
|
+
flex: 1;
|
|
36
|
+
display: flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dtable-ui-link-editor-popover .option-info .option-name {
|
|
41
|
+
max-width: 250px;
|
|
42
|
+
white-space: nowrap;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
text-overflow: ellipsis;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.dtable-ui-link-editor-popover .option-checked {
|
|
48
|
+
width: 20px;
|
|
49
|
+
text-align: center;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.dtable-ui-link-editor-popover .option-checked .dtable-font {
|
|
53
|
+
font-size: 12px;
|
|
54
|
+
color: #798d99;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.dtable-ui-link-editor-popover .select-options-add {
|
|
58
|
+
display: flex;
|
|
59
|
+
align-items: center;
|
|
60
|
+
padding: 0 10px;
|
|
61
|
+
height: 30px;
|
|
62
|
+
border-top: 1px solid #ccc;
|
|
63
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
3
|
+
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
4
|
+
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
5
|
+
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import { getLocale } from '../../lang';
|
|
8
|
+
import './index.css';
|
|
9
|
+
|
|
10
|
+
var PCLinkEditorPopover = /*#__PURE__*/function (_React$Component) {
|
|
11
|
+
_inherits(PCLinkEditorPopover, _React$Component);
|
|
12
|
+
|
|
13
|
+
var _super = _createSuper(PCLinkEditorPopover);
|
|
14
|
+
|
|
15
|
+
function PCLinkEditorPopover(props) {
|
|
16
|
+
var _this;
|
|
17
|
+
|
|
18
|
+
_classCallCheck(this, PCLinkEditorPopover);
|
|
19
|
+
|
|
20
|
+
_this = _super.call(this, props);
|
|
21
|
+
|
|
22
|
+
_this.onValueChanged = function (event) {
|
|
23
|
+
var value = event.target.value;
|
|
24
|
+
|
|
25
|
+
_this.setState({
|
|
26
|
+
searchValue: value
|
|
27
|
+
});
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
_this.onInputClick = function (event) {
|
|
31
|
+
event.nativeEvent.stopImmediatePropagation();
|
|
32
|
+
event.stopPropagation();
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
_this.onOptionItemToggle = function (item) {
|
|
36
|
+
_this.props.onOptionItemToggle(item);
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
_this.getFilterOptions = function () {
|
|
40
|
+
var options = _this.props.options;
|
|
41
|
+
|
|
42
|
+
var filter = _this.state.searchValue.toLowerCase();
|
|
43
|
+
|
|
44
|
+
if (!filter) {
|
|
45
|
+
return options;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return options.filter(function (option) {
|
|
49
|
+
return option.name.toString().toLowerCase().indexOf(filter) > -1;
|
|
50
|
+
});
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
_this.state = {
|
|
54
|
+
searchValue: ''
|
|
55
|
+
};
|
|
56
|
+
return _this;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
_createClass(PCLinkEditorPopover, [{
|
|
60
|
+
key: "render",
|
|
61
|
+
value: function render() {
|
|
62
|
+
var _this2 = this;
|
|
63
|
+
|
|
64
|
+
var options = this.getFilterOptions();
|
|
65
|
+
var _this$props = this.props,
|
|
66
|
+
popoverPosition = _this$props.popoverPosition,
|
|
67
|
+
selectedOptions = _this$props.selectedOptions;
|
|
68
|
+
var searchValue = this.state.searchValue;
|
|
69
|
+
var popoverStyle = Object.assign({}, _objectSpread({}, popoverPosition), {
|
|
70
|
+
position: 'absolute'
|
|
71
|
+
});
|
|
72
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
73
|
+
className: "dtable-ui-editor-popover dtable-ui-link-editor-popover",
|
|
74
|
+
style: popoverStyle
|
|
75
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
76
|
+
className: "link-options-search"
|
|
77
|
+
}, /*#__PURE__*/React.createElement("input", {
|
|
78
|
+
className: "form-control",
|
|
79
|
+
value: searchValue,
|
|
80
|
+
onChange: this.onValueChanged,
|
|
81
|
+
onClick: this.onInputClick,
|
|
82
|
+
placeholder: getLocale('Find_an_option')
|
|
83
|
+
})), /*#__PURE__*/React.createElement("div", {
|
|
84
|
+
className: "link-options-container"
|
|
85
|
+
}, options.length > 0 && options.map(function (option, index) {
|
|
86
|
+
var isSelect = selectedOptions.some(function (selectedOption) {
|
|
87
|
+
return selectedOption.id === option.id;
|
|
88
|
+
});
|
|
89
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
90
|
+
key: index,
|
|
91
|
+
className: "link-option-item",
|
|
92
|
+
onClick: _this2.onOptionItemToggle.bind(_this2, option)
|
|
93
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
94
|
+
className: "option-info"
|
|
95
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
96
|
+
className: "option-name"
|
|
97
|
+
}, option.name)), /*#__PURE__*/React.createElement("div", {
|
|
98
|
+
className: "option-checked"
|
|
99
|
+
}, isSelect && /*#__PURE__*/React.createElement("i", {
|
|
100
|
+
className: "dtable-font dtable-icon-check-mark"
|
|
101
|
+
})));
|
|
102
|
+
}), options.length === 0 && /*#__PURE__*/React.createElement("div", {
|
|
103
|
+
className: "link-option-null"
|
|
104
|
+
}, getLocale('No_options_available'))));
|
|
105
|
+
}
|
|
106
|
+
}]);
|
|
107
|
+
|
|
108
|
+
return PCLinkEditorPopover;
|
|
109
|
+
}(React.Component);
|
|
110
|
+
|
|
111
|
+
PCLinkEditorPopover.defaultProps = {
|
|
112
|
+
popoverPosition: {},
|
|
113
|
+
options: []
|
|
114
|
+
};
|
|
115
|
+
export default PCLinkEditorPopover;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
@import url('../css/cell-formatter.css');
|
|
2
|
+
|
|
3
|
+
.dtable-ui.link-formmatter {
|
|
4
|
+
display: inline-flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
flex-wrap: nowrap;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.dtable-ui.link-formatter .link-item {
|
|
11
|
+
display: inline-flex;
|
|
12
|
+
height: 20px;
|
|
13
|
+
max-width: 230px;
|
|
14
|
+
padding: 0 8px 0 2px;
|
|
15
|
+
align-items: center;
|
|
16
|
+
font-size: 13px;
|
|
17
|
+
margin-right: 10px;
|
|
18
|
+
border-radius: 3px;
|
|
19
|
+
background: #eceff4;
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dtable-ui.link-formatter .link-item .link-name {
|
|
24
|
+
overflow: hidden;
|
|
25
|
+
white-space: nowrap;
|
|
26
|
+
text-overflow: ellipsis;
|
|
27
|
+
}
|
|
@@ -5,8 +5,8 @@ import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
|
5
5
|
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
6
6
|
import React from 'react';
|
|
7
7
|
import cn from 'astro-classname';
|
|
8
|
-
import * as CellTypes from '
|
|
9
|
-
import { getNumberDisplayString, getDateDisplayString } from '
|
|
8
|
+
import * as CellTypes from '../constants/cell-types';
|
|
9
|
+
import { getNumberDisplayString, getDateDisplayString } from '../utils/value-format-utils';
|
|
10
10
|
|
|
11
11
|
// link value is get form parant's interface
|
|
12
12
|
var LinkFormatter = /*#__PURE__*/function (_React$Component) {
|
|
File without changes
|
package/{es/components/cell-formatter/long-text-formatter.js → lib/LongTextFormatter/index.js}
RENAMED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import SimpleLongTextFormatter from './widgets/long-text-formatter/simple-long-text-formatter';
|
|
2
|
+
import HtmlLongTextFormatter from '../HtmlLongTextFormatter';
|
|
3
|
+
import SimpleLongTextFormatter from '../SimpleLongTextFormatter';
|
|
5
4
|
|
|
6
5
|
function LongTextFormatter(props) {
|
|
7
6
|
var isSample = props.isSample,
|
|
8
7
|
value = props.value,
|
|
9
8
|
containerClassName = props.containerClassName;
|
|
10
|
-
var className = cn('dtable-ui cell-formatter-container long-text-formatter', containerClassName);
|
|
11
9
|
|
|
12
10
|
if (isSample) {
|
|
13
11
|
return /*#__PURE__*/React.createElement(SimpleLongTextFormatter, {
|
|
14
12
|
value: value,
|
|
15
|
-
|
|
13
|
+
containerClassName: containerClassName
|
|
16
14
|
});
|
|
17
15
|
}
|
|
18
16
|
|
|
19
17
|
return /*#__PURE__*/React.createElement(HtmlLongTextFormatter, {
|
|
20
18
|
value: value,
|
|
21
|
-
|
|
19
|
+
containerClassName: containerClassName
|
|
22
20
|
});
|
|
23
21
|
}
|
|
24
22
|
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import url('../css/cell-formatter.css');
|
|
@@ -5,6 +5,7 @@ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import cn from 'astro-classname';
|
|
7
7
|
import moment from 'moment';
|
|
8
|
+
import './index.css';
|
|
8
9
|
|
|
9
10
|
var MTimeFormatter = /*#__PURE__*/function (_React$Component) {
|
|
10
11
|
_inherits(MTimeFormatter, _React$Component);
|
|
File without changes
|