dtable-ui-component 0.1.79-beta → 0.1.82-beta

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.
Files changed (117) hide show
  1. package/es/app.css +20 -0
  2. package/es/app.js +91 -0
  3. package/es/assets/images/avatar/default_avatar.png +0 -0
  4. package/es/assets/images/file/192/excel.png +0 -0
  5. package/es/assets/images/file/192/file.png +0 -0
  6. package/es/assets/images/file/192/music.png +0 -0
  7. package/es/assets/images/file/192/pdf.png +0 -0
  8. package/es/assets/images/file/192/pic.png +0 -0
  9. package/es/assets/images/file/192/ppt.png +0 -0
  10. package/es/assets/images/file/192/txt.png +0 -0
  11. package/es/assets/images/file/192/video.png +0 -0
  12. package/es/assets/images/file/192/word.png +0 -0
  13. package/es/assets/images/file/24/excel.png +0 -0
  14. package/es/assets/images/file/24/file.png +0 -0
  15. package/es/assets/images/file/24/music.png +0 -0
  16. package/es/assets/images/file/24/pdf.png +0 -0
  17. package/es/assets/images/file/24/pic.png +0 -0
  18. package/es/assets/images/file/24/ppt.png +0 -0
  19. package/es/assets/images/file/24/txt.png +0 -0
  20. package/es/assets/images/file/24/video.png +0 -0
  21. package/es/assets/images/file/24/word.png +0 -0
  22. package/es/assets/images/folder/folder-192.png +0 -0
  23. package/es/assets/images/folder/folder-24.png +0 -0
  24. package/es/components/cell-editor/checkbox-editor.js +104 -0
  25. package/es/components/cell-editor/collaborator-editor.js +236 -0
  26. package/es/components/cell-editor/date-editor.js +151 -0
  27. package/es/components/cell-editor/index.js +9 -0
  28. package/es/components/cell-editor/link-editor.js +303 -0
  29. package/es/components/cell-editor/multiple-select-editor.js +237 -0
  30. package/es/components/cell-editor/number-editor.js +154 -0
  31. package/es/components/cell-editor/single-select-editor.js +202 -0
  32. package/es/components/cell-editor/text-editor.js +122 -0
  33. package/es/components/cell-editor-dialog/pc-file-editor-dialog.js +46 -0
  34. package/es/components/cell-editor-dialog/pc-files-addition/index.js +0 -0
  35. package/es/components/cell-editor-dialog/pc-files-addition/pc-file-uploaded-item.js +0 -0
  36. package/es/components/cell-editor-dialog/pc-files-preview/index.js +0 -0
  37. package/es/components/cell-editor-dialog/pc-files-preview/pc-file-item-preview.js +0 -0
  38. package/es/components/cell-editor-popover/mb-collaborator-editor-popover.js +177 -0
  39. package/es/components/cell-editor-popover/mb-date-editor-popover.js +245 -0
  40. package/es/components/cell-editor-popover/mb-link-editor-popover.js +170 -0
  41. package/es/components/cell-editor-popover/mb-select-editor-popover.js +230 -0
  42. package/es/components/cell-editor-popover/pc-collaborator-editor-popover.js +109 -0
  43. package/es/components/cell-editor-popover/pc-date-editor-popover.js +142 -0
  44. package/es/components/cell-editor-popover/pc-link-editor-popover.js +114 -0
  45. package/es/components/cell-editor-popover/pc-select-editor-popover.js +143 -0
  46. package/es/components/cell-factory/cell-formatter-factory.js +25 -0
  47. package/es/components/cell-formatter/auto-number-formatter.js +35 -0
  48. package/es/components/cell-formatter/button-formatter.js +55 -0
  49. package/es/components/cell-formatter/checkbox-formatter.js +44 -0
  50. package/es/components/cell-formatter/collaborator-formatter.js +91 -0
  51. package/es/components/cell-formatter/creator-formatter.js +87 -0
  52. package/es/components/cell-formatter/ctime-formatter.js +57 -0
  53. package/es/components/cell-formatter/date-formatter.js +59 -0
  54. package/es/components/cell-formatter/duration-formatter.js +37 -0
  55. package/es/components/cell-formatter/email-formatter.js +35 -0
  56. package/es/components/cell-formatter/file-formatter.js +63 -0
  57. package/es/components/cell-formatter/formatter-config.js +31 -0
  58. package/es/components/cell-formatter/formula-formatter.js +164 -0
  59. package/es/components/cell-formatter/geolocation-formatter.js +52 -0
  60. package/es/components/cell-formatter/image-formatter.js +153 -0
  61. package/es/components/cell-formatter/index.js +27 -0
  62. package/es/components/cell-formatter/last-modifier-formatter.js +87 -0
  63. package/es/components/cell-formatter/link-formatter.js +144 -0
  64. package/es/components/cell-formatter/long-text-formatter.js +106 -0
  65. package/es/components/cell-formatter/mtime-formatter.js +57 -0
  66. package/es/components/cell-formatter/multiple-select-formatter.js +69 -0
  67. package/es/components/cell-formatter/number-formatter.js +46 -0
  68. package/es/components/cell-formatter/rate-formatter.js +79 -0
  69. package/es/components/cell-formatter/single-select-formatter.js +69 -0
  70. package/es/components/cell-formatter/text-formatter.js +55 -0
  71. package/es/components/cell-formatter/url-formatter.js +35 -0
  72. package/es/components/cell-formatter/widgets/file-item-formatter.js +50 -0
  73. package/es/components/cell-formatter/widgets/image-previewer-lightbox.js +119 -0
  74. package/es/components/common/collaborator-item.js +63 -0
  75. package/es/components/common/edit-editor-button.js +56 -0
  76. package/es/components/common/images-lazy-load.js +150 -0
  77. package/es/components/common/link-editor-option.js +113 -0
  78. package/es/components/common/mobile/mb-editor-header.js +48 -0
  79. package/es/components/common/modal-portal.js +44 -0
  80. package/es/components/common/select-editor-option.js +106 -0
  81. package/es/components/common/select-item.js +58 -0
  82. package/es/components/file-uploader/index.js +53 -0
  83. package/es/components/loading.js +7 -0
  84. package/es/components/toast/alert.js +150 -0
  85. package/es/components/toast/index.js +3 -0
  86. package/es/components/toast/toast.js +179 -0
  87. package/es/components/toast/toastManager.js +170 -0
  88. package/es/components/toast/toaster.js +76 -0
  89. package/es/constants/cell-types.js +25 -0
  90. package/es/constants/index.js +48 -0
  91. package/es/css/cell-editor.css +614 -0
  92. package/es/css/cell-formatter.css +241 -0
  93. package/es/css/custom-rc-calendar.css +118 -0
  94. package/es/css/image-previewer-ligntbox.css +87 -0
  95. package/es/css/loading.css +54 -0
  96. package/es/index.js +6 -0
  97. package/es/lang/index.js +50 -0
  98. package/es/locals/de.js +2 -0
  99. package/es/locals/en.js +17 -0
  100. package/es/locals/fr.js +2 -0
  101. package/es/locals/zh-CN.js +17 -0
  102. package/es/utils/cell-value-validator.js +32 -0
  103. package/es/utils/column-utils.js +7 -0
  104. package/es/utils/editor-utils.js +71 -0
  105. package/es/utils/normalize-long-text-value.js +68 -0
  106. package/es/utils/number-precision.js +163 -0
  107. package/es/utils/utils.js +116 -0
  108. package/es/utils/value-format-utils.js +495 -0
  109. package/lib/CTimeFormatter/index.js +2 -2
  110. package/lib/DateEditor/index.js +2 -2
  111. package/lib/DateEditor/mb-date-editor-popover/index.js +9 -9
  112. package/lib/DateEditor/pc-date-editor-popover.js +3 -3
  113. package/lib/MTimeFormatter/index.js +2 -2
  114. package/lib/RateFormatter/index.js +4 -2
  115. package/lib/TextFormatter/index.js +4 -2
  116. package/lib/utils/value-format-utils.js +2 -2
  117. package/package.json +5 -5
@@ -0,0 +1,113 @@
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
6
+
7
+ var LinkEditorOption = /*#__PURE__*/function (_React$Component) {
8
+ _inherits(LinkEditorOption, _React$Component);
9
+
10
+ var _super = _createSuper(LinkEditorOption);
11
+
12
+ function LinkEditorOption() {
13
+ var _this;
14
+
15
+ _classCallCheck(this, LinkEditorOption);
16
+
17
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
18
+ args[_key] = arguments[_key];
19
+ }
20
+
21
+ _this = _super.call.apply(_super, [this].concat(args));
22
+
23
+ _this.onDeleteOption = function (event) {
24
+ event.nativeEvent.stopImmediatePropagation();
25
+ event.stopPropagation();
26
+
27
+ _this.props.onDeleteLinkOption(_this.props.option);
28
+ };
29
+
30
+ _this.getContainerStyle = function () {
31
+ return {
32
+ display: 'inline-flex',
33
+ marginRight: '10px',
34
+ padding: '0px 5px',
35
+ height: '20px',
36
+ borderRadius: '2px',
37
+ fontSize: '13px',
38
+ background: '#eceff4',
39
+ cursor: 'pointer'
40
+ };
41
+ };
42
+
43
+ _this.getOptionStyle = function () {
44
+ return {
45
+ flex: 1,
46
+ display: 'flex',
47
+ alignContent: 'center',
48
+ margin: '0 4px 0 2px'
49
+ };
50
+ };
51
+
52
+ _this.getOptionNameStyle = function () {
53
+ return {
54
+ maxWidth: '230px',
55
+ overflow: 'hidden',
56
+ whiteSpace: 'nowrap',
57
+ textOverflow: 'ellipsis'
58
+ };
59
+ };
60
+
61
+ _this.getOperationStyle = function () {
62
+ return {
63
+ height: '20px',
64
+ width: '16px',
65
+ cursor: 'pointer',
66
+ color: '#909090',
67
+ transform: 'scale(.8)'
68
+ };
69
+ };
70
+
71
+ return _this;
72
+ }
73
+
74
+ _createClass(LinkEditorOption, [{
75
+ key: "render",
76
+ value: function render() {
77
+ var _this$props = this.props,
78
+ option = _this$props.option,
79
+ isShowRemoveIcon = _this$props.isShowRemoveIcon;
80
+ var containerStyle = this.getContainerStyle();
81
+ var optionStyle = this.getOptionStyle();
82
+ var optionNameStyle = this.getOptionNameStyle();
83
+ var operationStyle = this.getOperationStyle();
84
+ return /*#__PURE__*/React.createElement("div", {
85
+ className: "dtable-ui link-option-item",
86
+ style: containerStyle
87
+ }, /*#__PURE__*/React.createElement("div", {
88
+ className: "option-info",
89
+ style: optionStyle
90
+ }, /*#__PURE__*/React.createElement("div", {
91
+ className: "option-name",
92
+ style: optionNameStyle
93
+ }, option.name)), isShowRemoveIcon && /*#__PURE__*/React.createElement("div", {
94
+ className: "option-remove",
95
+ style: operationStyle,
96
+ onClick: this.onDeleteOption
97
+ }, /*#__PURE__*/React.createElement("i", {
98
+ className: "dtable-font dtable-icon-fork-number",
99
+ style: {
100
+ fontSize: '12px',
101
+ lineHeight: '20px'
102
+ }
103
+ })));
104
+ }
105
+ }]);
106
+
107
+ return LinkEditorOption;
108
+ }(React.Component);
109
+
110
+ LinkEditorOption.defaultProps = {
111
+ isShowRemoveIcon: false
112
+ };
113
+ export default LinkEditorOption;
@@ -0,0 +1,48 @@
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
6
+
7
+ var MBEditorHeader = /*#__PURE__*/function (_React$Component) {
8
+ _inherits(MBEditorHeader, _React$Component);
9
+
10
+ var _super = _createSuper(MBEditorHeader);
11
+
12
+ function MBEditorHeader() {
13
+ _classCallCheck(this, MBEditorHeader);
14
+
15
+ return _super.apply(this, arguments);
16
+ }
17
+
18
+ _createClass(MBEditorHeader, [{
19
+ key: "render",
20
+ value: function render() {
21
+ var _this$props = this.props,
22
+ title = _this$props.title,
23
+ titleClass = _this$props.titleClass,
24
+ leftContent = _this$props.leftContent,
25
+ rightContent = _this$props.rightContent,
26
+ onLeftClick = _this$props.onLeftClick,
27
+ onRightClick = _this$props.onRightClick;
28
+ return /*#__PURE__*/React.createElement("div", {
29
+ className: "dtable-ui-mb-editor-header ".concat(titleClass ? titleClass : '')
30
+ }, /*#__PURE__*/React.createElement("span", {
31
+ className: "editor-header-left-content",
32
+ onClick: onLeftClick
33
+ }, leftContent), /*#__PURE__*/React.createElement("span", {
34
+ className: "editor-header-title"
35
+ }, title), /*#__PURE__*/React.createElement("span", {
36
+ className: "editor-header-right-content",
37
+ onClick: onRightClick,
38
+ style: {
39
+ color: '#f09f3f'
40
+ }
41
+ }, rightContent));
42
+ }
43
+ }]);
44
+
45
+ return MBEditorHeader;
46
+ }(React.Component);
47
+
48
+ export default MBEditorHeader;
@@ -0,0 +1,44 @@
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
6
+ import ReactDOM from 'react-dom';
7
+ var modalRoot = document.getElementById('modal-wrapper');
8
+
9
+ var ModalPortal = /*#__PURE__*/function (_React$Component) {
10
+ _inherits(ModalPortal, _React$Component);
11
+
12
+ var _super = _createSuper(ModalPortal);
13
+
14
+ function ModalPortal(props) {
15
+ var _this;
16
+
17
+ _classCallCheck(this, ModalPortal);
18
+
19
+ _this = _super.call(this, props);
20
+ _this.el = document.createElement('div');
21
+ return _this;
22
+ }
23
+
24
+ _createClass(ModalPortal, [{
25
+ key: "componentDidMount",
26
+ value: function componentDidMount() {
27
+ modalRoot.appendChild(this.el);
28
+ }
29
+ }, {
30
+ key: "componentWillUnmount",
31
+ value: function componentWillUnmount() {
32
+ modalRoot.removeChild(this.el);
33
+ }
34
+ }, {
35
+ key: "render",
36
+ value: function render() {
37
+ return ReactDOM.createPortal(this.props.children, this.el);
38
+ }
39
+ }]);
40
+
41
+ return ModalPortal;
42
+ }(React.Component);
43
+
44
+ export default ModalPortal;
@@ -0,0 +1,106 @@
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
6
+
7
+ var SelectEditorOption = /*#__PURE__*/function (_React$Component) {
8
+ _inherits(SelectEditorOption, _React$Component);
9
+
10
+ var _super = _createSuper(SelectEditorOption);
11
+
12
+ function SelectEditorOption() {
13
+ var _this;
14
+
15
+ _classCallCheck(this, SelectEditorOption);
16
+
17
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
18
+ args[_key] = arguments[_key];
19
+ }
20
+
21
+ _this = _super.call.apply(_super, [this].concat(args));
22
+
23
+ _this.onDeleteOption = function (event) {
24
+ event.nativeEvent.stopImmediatePropagation();
25
+ event.stopPropagation();
26
+
27
+ _this.props.onDeleteSelectOption(_this.props.option);
28
+ };
29
+
30
+ _this.getContainerStyle = function () {
31
+ var option = _this.props.option;
32
+ return {
33
+ display: 'inline-flex',
34
+ justifyContent: 'center',
35
+ marginRight: '10px',
36
+ padding: '0px 10px',
37
+ height: '20px',
38
+ borderRadius: '10px',
39
+ fontSize: '13px',
40
+ backgroundColor: option.color
41
+ };
42
+ };
43
+
44
+ _this.getOptionStyle = function (option) {
45
+ var textColor = option.textColor || null;
46
+ return {
47
+ flex: 1,
48
+ display: 'flex',
49
+ alignContent: 'center',
50
+ margin: '0 4px 0 2px',
51
+ color: textColor
52
+ };
53
+ };
54
+
55
+ _this.getOperationStyle = function (option) {
56
+ var textColor = option.textColor || null;
57
+ return {
58
+ height: '20px',
59
+ width: '16px',
60
+ cursor: 'pointer',
61
+ color: textColor === '#FFFFFF' ? '#FFFFFF' : '#909090',
62
+ transform: 'scale(.8)'
63
+ };
64
+ };
65
+
66
+ return _this;
67
+ }
68
+
69
+ _createClass(SelectEditorOption, [{
70
+ key: "render",
71
+ value: function render() {
72
+ var _this$props = this.props,
73
+ option = _this$props.option,
74
+ isShowRemoveIcon = _this$props.isShowRemoveIcon;
75
+ var containerStyle = this.getContainerStyle();
76
+ var optionStyle = this.getOptionStyle(option);
77
+ var operationStyle = this.getOperationStyle(option);
78
+ return /*#__PURE__*/React.createElement("div", {
79
+ className: "dtable-ui select-option-item",
80
+ style: containerStyle
81
+ }, /*#__PURE__*/React.createElement("div", {
82
+ className: "option-info",
83
+ style: optionStyle
84
+ }, /*#__PURE__*/React.createElement("div", {
85
+ className: "option-name"
86
+ }, option.name)), isShowRemoveIcon && /*#__PURE__*/React.createElement("div", {
87
+ className: "option-remove",
88
+ style: operationStyle,
89
+ onClick: this.onDeleteOption
90
+ }, /*#__PURE__*/React.createElement("i", {
91
+ className: "dtable-font dtable-icon-fork-number",
92
+ style: {
93
+ fontSize: '12px',
94
+ lineHeight: '20px'
95
+ }
96
+ })));
97
+ }
98
+ }]);
99
+
100
+ return SelectEditorOption;
101
+ }(React.Component);
102
+
103
+ SelectEditorOption.defaultProps = {
104
+ isShowRemoveIcon: false
105
+ };
106
+ export default SelectEditorOption;
@@ -0,0 +1,58 @@
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
6
+
7
+ var SelectItem = /*#__PURE__*/function (_React$PureComponent) {
8
+ _inherits(SelectItem, _React$PureComponent);
9
+
10
+ var _super = _createSuper(SelectItem);
11
+
12
+ function SelectItem() {
13
+ var _this;
14
+
15
+ _classCallCheck(this, SelectItem);
16
+
17
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
18
+ args[_key] = arguments[_key];
19
+ }
20
+
21
+ _this = _super.call.apply(_super, [this].concat(args));
22
+
23
+ _this.getStyle = function (option, fontSize) {
24
+ return {
25
+ display: 'inline-block',
26
+ padding: '0px 10px',
27
+ marginRight: '8px',
28
+ height: '20px',
29
+ lineHeight: '20px',
30
+ textAlign: 'center',
31
+ borderRadius: '10px',
32
+ fontSize: fontSize ? "".concat(fontSize, "px") : '13px',
33
+ backgroundColor: option.color,
34
+ color: option.textColor || null
35
+ };
36
+ };
37
+
38
+ return _this;
39
+ }
40
+
41
+ _createClass(SelectItem, [{
42
+ key: "render",
43
+ value: function render() {
44
+ var _this$props = this.props,
45
+ option = _this$props.option,
46
+ fontSize = _this$props.fontSize;
47
+ var style = this.getStyle(option, fontSize);
48
+ return /*#__PURE__*/React.createElement("div", {
49
+ className: "dtable-ui select-item",
50
+ style: style
51
+ }, option.name);
52
+ }
53
+ }]);
54
+
55
+ return SelectItem;
56
+ }(React.PureComponent);
57
+
58
+ export default SelectItem;
@@ -0,0 +1,53 @@
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
6
+
7
+ var FileUploader = /*#__PURE__*/function (_React$Component) {
8
+ _inherits(FileUploader, _React$Component);
9
+
10
+ var _super = _createSuper(FileUploader);
11
+
12
+ function FileUploader(props) {
13
+ var _this;
14
+
15
+ _classCallCheck(this, FileUploader);
16
+
17
+ _this = _super.call(this, props);
18
+
19
+ _this.onFilesChanged = function () {};
20
+
21
+ _this.uploadFiles = function (fileList) {
22
+ var isMultiple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
23
+ };
24
+
25
+ _this.checkRepeat = function () {};
26
+
27
+ _this.cancelUploadFile = function () {};
28
+
29
+ _this.onFileUploadProgress = function () {};
30
+
31
+ _this.onFileUploadSuccss = function () {};
32
+
33
+ _this.onFileUploadFailed = function () {};
34
+
35
+ _this.state = {};
36
+ _this.uploadFiles = [];
37
+ return _this;
38
+ }
39
+
40
+ _createClass(FileUploader, [{
41
+ key: "render",
42
+ value: function render() {
43
+ return /*#__PURE__*/React.createElement("input", {
44
+ type: "file",
45
+ onChange: this.onFilesChanged
46
+ });
47
+ }
48
+ }]);
49
+
50
+ return FileUploader;
51
+ }(React.Component);
52
+
53
+ export default FileUploader;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import '../css/loading.css';
3
+ export default function Loading() {
4
+ return /*#__PURE__*/React.createElement("span", {
5
+ className: "loading-icon loading-tip"
6
+ });
7
+ }
@@ -0,0 +1,150 @@
1
+ import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
2
+ import _createClass from "@babel/runtime/helpers/esm/createClass";
3
+ import _inherits from "@babel/runtime/helpers/esm/inherits";
4
+ import _createSuper from "@babel/runtime/helpers/esm/createSuper";
5
+ import React from 'react';
6
+ import { css } from 'glamor';
7
+
8
+ var Alert = /*#__PURE__*/function (_React$PureComponent) {
9
+ _inherits(Alert, _React$PureComponent);
10
+
11
+ var _super = _createSuper(Alert);
12
+
13
+ function Alert(props) {
14
+ var _this;
15
+
16
+ _classCallCheck(this, Alert);
17
+
18
+ _this = _super.call(this, props);
19
+ _this.containerStyle = css({
20
+ borderRadius: '3px',
21
+ backgroundColor: '#fff',
22
+ padding: '10px 16px',
23
+ display: 'flex',
24
+ boxSizing: 'border-box',
25
+ boxShadow: 'rgba(67, 90, 111, 0.3) 0px 0px 1px, rgba(67, 90, 111, 0.47) 0px 8px 10px -4px',
26
+ justifyContent: 'space-between',
27
+ flexDirection: 'row'
28
+ });
29
+ _this.containerBorderSuccess = css({
30
+ borderLeft: '3px solid rgb(71, 184, 129)'
31
+ });
32
+ _this.containerBorderWarn = css({
33
+ borderLeft: '3px solid rgb(217, 130, 43)'
34
+ });
35
+ _this.containerBorderDanger = css({
36
+ borderLeft: '3px solid rgb(236, 76, 71)'
37
+ });
38
+ _this.containerBorderNotify = css({
39
+ borderLeft: '3px solid rgb(16, 112, 202)'
40
+ });
41
+ _this.toastTextTitle = css({
42
+ fontWeight: '600',
43
+ fontSize: '14px',
44
+ color: '#435a6f',
45
+ margin: '0'
46
+ });
47
+ _this.toastTextChild = css({
48
+ fontSize: '14px',
49
+ color: '#999',
50
+ margin: '0'
51
+ });
52
+ _this.toastClose = css({
53
+ marginLeft: '15px',
54
+ height: '24px',
55
+ width: '24px',
56
+ lineHeight: '22px',
57
+ fontWeight: '700',
58
+ textAlign: 'center',
59
+ fontSize: '20px',
60
+ color: '#000',
61
+ cursor: 'pointer',
62
+ opacity: '0.5',
63
+ ':hover': {
64
+ opacity: 1
65
+ }
66
+ });
67
+ _this.toastIcon = css({
68
+ marginRight: '10px',
69
+ width: '14px',
70
+ height: '20px',
71
+ lineHeight: '20px'
72
+ });
73
+ return _this;
74
+ }
75
+
76
+ _createClass(Alert, [{
77
+ key: "getContainerStyle",
78
+ value: function getContainerStyle(intent) {
79
+ switch (intent) {
80
+ case 'success':
81
+ return {
82
+ borderStyle: this.containerBorderSuccess,
83
+ iconColor: css({
84
+ color: 'rgb(71, 184, 129)'
85
+ }),
86
+ iconClass: 'dtable-font dtable-icon-check-circle'
87
+ };
88
+
89
+ case 'warning':
90
+ return {
91
+ borderStyle: this.containerBorderWarn,
92
+ iconColor: css({
93
+ color: 'rgb(217, 130, 43)'
94
+ }),
95
+ iconClass: 'dtable-font dtable-icon-exclamation-triangle'
96
+ };
97
+
98
+ case 'none':
99
+ return {
100
+ borderStyle: this.containerBorderNotify,
101
+ iconColor: css({
102
+ color: 'rgb(16, 112, 202)'
103
+ }),
104
+ iconClass: 'dtable-font dtable-icon-exclamation-circle'
105
+ };
106
+
107
+ case 'danger':
108
+ return {
109
+ borderStyle: this.containerBorderDanger,
110
+ iconColor: css({
111
+ color: 'rgb(236, 76, 71)'
112
+ }),
113
+ iconClass: 'dtable-font dtable-icon-exclamation-circle'
114
+ };
115
+
116
+ default:
117
+ return {
118
+ borderStyle: this.containerBorderSuccess,
119
+ iconColor: css({
120
+ color: 'rgb(71, 184, 129)'
121
+ }),
122
+ iconClass: 'dtable-font dtable-icon-check-circle'
123
+ };
124
+ }
125
+ }
126
+ }, {
127
+ key: "render",
128
+ value: function render() {
129
+ var toastStyle = this.getContainerStyle(this.props.intent);
130
+ return /*#__PURE__*/React.createElement("div", css(toastStyle.borderStyle, this.containerStyle), /*#__PURE__*/React.createElement("div", {
131
+ className: this.toastIcon
132
+ }, /*#__PURE__*/React.createElement("i", Object.assign({
133
+ className: toastStyle.iconClass
134
+ }, toastStyle.iconColor))), /*#__PURE__*/React.createElement("div", {
135
+ className: this.toastTextContainer
136
+ }, /*#__PURE__*/React.createElement("p", {
137
+ className: this.toastTextTitle
138
+ }, this.props.title), this.props.children ? /*#__PURE__*/React.createElement("p", {
139
+ className: this.toastTextChild
140
+ }, this.props.children) : null), this.props.isRemoveable && /*#__PURE__*/React.createElement("div", {
141
+ onClick: this.props.onRemove,
142
+ className: this.toastClose
143
+ }, /*#__PURE__*/React.createElement("span", null, "\xD7")));
144
+ }
145
+ }]);
146
+
147
+ return Alert;
148
+ }(React.PureComponent);
149
+
150
+ export default Alert;
@@ -0,0 +1,3 @@
1
+ import Toaster from './toaster';
2
+ var toaster = new Toaster();
3
+ export default toaster;