@hi-ui/hiui 2.15.10 → 2.15.11
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/CHANGELOG.md +3 -0
- package/es/_util/warning.js +2 -2
- package/es/alert/__test__/index.test.js +67 -0
- package/es/alert/index.js +147 -6
- package/es/alert/style/index.css +1 -1
- package/es/badge/index.js +87 -9
- package/es/badge/style/index.css +1 -1
- package/es/badge/style/index.js +0 -0
- package/es/button/Button.js +51 -59
- package/es/button/ButtonGroup.js +31 -23
- package/es/button/IconLoading.js +2 -2
- package/es/button/__test__/index.test.js +29 -0
- package/es/button/index.js +2 -3
- package/es/button/style/index.css +1 -1
- package/es/card/index.js +42 -54
- package/es/card/style/index.css +1 -1
- package/es/cascader/Cascader.js +116 -181
- package/es/cascader/__test__/index.test.js +283 -0
- package/es/cascader/index.js +2 -5
- package/es/cascader/menu.js +155 -0
- package/es/cascader/style/cascader.css +1 -1
- package/es/cascader/style/menu.css +1 -1
- package/es/checkbox/{checkbox-legacy/Base.js → Base.js} +31 -46
- package/es/checkbox/CheckBox.js +185 -0
- package/es/checkbox/index.js +4 -13
- package/es/checkbox/style/index.css +1 -1
- package/es/collapse/__test__/index.test.js +58 -0
- package/es/collapse/index.js +93 -79
- package/es/collapse/style/index.css +1 -1
- package/es/confirm/index.js +50 -37
- package/es/context/index.js +37 -39
- package/es/counter/__test__/index.test.js +52 -0
- package/es/counter/index.js +270 -6
- package/es/counter/style/index.css +1 -1
- package/es/date-picker/BasePicker.js +288 -374
- package/es/date-picker/Calender.js +90 -326
- package/es/date-picker/DatePanel.js +186 -175
- package/es/date-picker/DatePicker.js +51 -151
- package/es/date-picker/DateRangePanel.js +181 -253
- package/es/date-picker/Modal.js +25 -15
- package/es/date-picker/Time.js +336 -230
- package/es/date-picker/TimePanel.js +32 -27
- package/es/date-picker/TimePeriodPanel.js +32 -21
- package/es/date-picker/TimePicker.js +40 -42
- package/es/date-picker/TimeRangePanel.js +42 -32
- package/es/date-picker/Type.js +1 -5
- package/es/date-picker/WeekRangePanel.js +150 -237
- package/es/date-picker/constants.js +28 -14
- package/es/date-picker/dateUtil.js +52 -221
- package/es/date-picker/index.js +2 -5
- package/es/date-picker/style/index.css +1 -1
- package/es/date-picker/util.js +8 -101
- package/es/dropdown/Dropdown.js +199 -193
- package/es/dropdown/{tests → __test__}/index.test.js +2 -2
- package/es/dropdown/index.js +4 -73
- package/es/dropdown/style/index.css +1 -1
- package/es/dropdown/style/index.js +2 -0
- package/es/ficon/index.js +23 -13
- package/es/form/index.js +171 -6
- package/es/form/{Item.js → item.js} +53 -53
- package/es/form/style/index.css +1 -1
- package/es/grid/index.js +37 -25
- package/es/icon/index.js +32 -21
- package/es/index.js +9 -61
- package/es/input/index.js +345 -28
- package/es/input/style/index.css +1 -1
- package/es/input/util.js +18 -26
- package/es/lib/withDragDropContext.js +2 -2
- package/es/loading/index.js +129 -5
- package/es/loading/style/index.css +0 -0
- package/es/loading/style/index.js +0 -0
- package/es/locales/en-US.js +11 -45
- package/es/locales/index.js +2 -16
- package/es/locales/zh-CN.js +12 -46
- package/es/menu/Item.js +41 -32
- package/es/menu/ItemGroup.js +81 -0
- package/es/menu/SubMenu.js +74 -55
- package/es/menu/Title.js +42 -36
- package/es/menu/index.js +419 -12
- package/es/menu/style/index.css +1 -1
- package/es/modal/__test__/index.test.js +123 -0
- package/es/modal/index.js +61 -77
- package/es/modal/style/index.css +1 -1
- package/es/nav-menu/NavMenu.js +45 -31
- package/es/nav-menu/__test__/index.test.js +2 -2
- package/es/nav-menu/index.js +2 -2
- package/es/notification/__test__/index.test.js +56 -0
- package/es/notification/index.js +231 -68
- package/es/notification/style/index.css +1 -1
- package/es/notification/style/index.js +0 -0
- package/es/pagination/Pager.js +8 -6
- package/es/pagination/Pagination.js +115 -124
- package/es/pagination/__test__/index.test.js +140 -0
- package/es/pagination/index.js +8 -9
- package/es/pagination/style/index.css +1 -1
- package/es/panel/index.js +33 -23
- package/es/popover/__test__/index.test.js +2 -2
- package/es/popover/index.js +69 -71
- package/es/popper/index.js +54 -64
- package/es/popper/style/index.css +1 -1
- package/es/progress/BarProgress.js +43 -109
- package/es/progress/CircleProgress.js +10 -9
- package/es/progress/DashboardProgress.js +9 -7
- package/es/progress/index.js +100 -8
- package/es/progress/style/index.css +1 -1
- package/es/radio/{radio-legacy/__test__ → __test__}/index.test.js +10 -10
- package/es/radio/index.js +216 -10
- package/es/radio/style/index.css +1 -1
- package/es/rate/Icons.js +2 -2
- package/es/rate/Rate.js +90 -65
- package/es/rate/__test__/index.test.js +54 -0
- package/es/rate/index.js +2 -5
- package/es/rate/style/index.css +1 -1
- package/es/select/Option.js +93 -0
- package/es/select/Select.js +253 -325
- package/es/select/SelectDropdown.js +63 -215
- package/es/select/SelectInput.js +54 -88
- package/es/select/__test__/index.test.js +429 -0
- package/es/select/index.js +4 -6
- package/es/select/style/select-dropdown.css +1 -1
- package/es/select/style/select-input.css +1 -1
- package/es/stepper/index.js +127 -21
- package/es/stepper/style/index.css +1 -1
- package/es/style/color/colors.css +0 -0
- package/es/style/icon/diyIcon.css +1 -1
- package/es/style/icon/index.css +1 -1
- package/es/style/index.css +0 -0
- package/es/style/mixins/colors.css +0 -0
- package/es/style/mixins/index.css +0 -0
- package/es/style/theme/dark.css +0 -0
- package/es/style/theme/default.css +0 -0
- package/es/switch/{__tests__ → __test__}/index.test.js +2 -31
- package/es/switch/index.js +36 -24
- package/es/switch/style/index.css +1 -1
- package/es/table/__test__/index.test.js +73 -0
- package/es/table/{Body.js → body.js} +52 -36
- package/es/table/checkbox/index.js +36 -33
- package/es/table/clickOuterside.js +115 -0
- package/es/table/{Footer.js → footer.js} +41 -24
- package/es/table/{Header.js → header.js} +54 -41
- package/es/table/index.js +300 -262
- package/es/table/menu/index.js +34 -32
- package/es/table/pover.js +154 -0
- package/es/table/prefix.js +2 -2
- package/es/table/style/Table.css +1 -1
- package/es/table/style/index.css +1 -1
- package/es/table/tableContent.js +120 -0
- package/es/tabs/ItemDropdown.js +51 -39
- package/es/tabs/TabPane.js +35 -25
- package/es/tabs/Tabs.js +91 -98
- package/es/tabs/index.js +3 -9
- package/es/tabs/style/index.css +1 -1
- package/es/timeline/__test__/index.test.js +49 -0
- package/es/timeline/foldingItem.js +82 -0
- package/es/timeline/index.js +127 -203
- package/es/timeline/style/index.css +1 -1
- package/es/tooltip/__test__/index.test.js +67 -0
- package/es/tooltip/index.js +39 -86
- package/es/tooltip/style/index.css +1 -1
- package/es/transfer/Item.js +44 -53
- package/es/transfer/__test__/index.test.js +11 -0
- package/es/transfer/index.js +443 -4
- package/es/transfer/style/index.css +1 -1
- package/es/tree/Tree.js +86 -76
- package/es/tree/TreeDivider.js +3 -3
- package/es/tree/TreeItem.js +108 -204
- package/es/tree/TreeNode.js +318 -457
- package/es/tree/index.js +2 -9
- package/es/tree/style/index.css +1 -1
- package/es/tree/util.js +257 -9
- package/es/upload/{upload-legacy/Preview.js → Preview.js} +39 -33
- package/es/upload/Upload.js +193 -289
- package/es/upload/UploadAvatar.js +58 -44
- package/es/upload/UploadClick.js +45 -49
- package/es/upload/UploadDrag.js +43 -44
- package/es/upload/UploadPhoto.js +55 -70
- package/es/upload/UploadPictureCard.js +44 -39
- package/es/upload/index.js +71 -8
- package/es/upload/style/index.css +1 -1
- package/es/upload/tool.js +1 -0
- package/package.json +4 -1
- package/es/_util/SwitchVersion.js +0 -44
- package/es/_util/depreactedPropsCompat.js +0 -58
- package/es/_util/index.js +0 -32
- package/es/alert/Alert.js +0 -134
- package/es/alert/__tests__/index.test.js +0 -88
- package/es/badge/Badge.js +0 -90
- package/es/badge/__tests__/index.test.js +0 -82
- package/es/breadcrumb/__tests__/index.test.js +0 -61
- package/es/breadcrumb/index.js +0 -93
- package/es/breadcrumb/style/index.css +0 -1
- package/es/button/__tests__/index.test.js +0 -219
- package/es/card/__tests__/index.test.js +0 -169
- package/es/carousel/__tests__/index.test.js +0 -104
- package/es/carousel/index.js +0 -227
- package/es/carousel/style/index.css +0 -1
- package/es/carousel/style/index.js +0 -3
- package/es/cascader/Menu.js +0 -174
- package/es/cascader/__tests__/index.test.js +0 -389
- package/es/checkbox/Checkbox.js +0 -144
- package/es/checkbox/Group.js +0 -202
- package/es/checkbox/__tests__/index.test.js +0 -226
- package/es/checkbox/checkbox-legacy/CheckBox.js +0 -165
- package/es/checkbox/checkbox-legacy/index.js +0 -15
- package/es/checkbox/checkbox-legacy/style/index.css +0 -1
- package/es/checkbox/checkbox-legacy/style/index.js +0 -3
- package/es/collapse/__tests__/index.test.js +0 -111
- package/es/counter/Counter.js +0 -343
- package/es/counter/__tests__/index.test.js +0 -134
- package/es/counter/counter-legacy/index.js +0 -271
- package/es/date-picker/TimeList.js +0 -254
- package/es/date-picker/YMRangePanel.js +0 -372
- package/es/date-picker/__tests__/index.test.js +0 -961
- package/es/date-picker/datepicker-legacy/BasePicker.js +0 -519
- package/es/date-picker/datepicker-legacy/Calender.js +0 -430
- package/es/date-picker/datepicker-legacy/DatePanel.js +0 -463
- package/es/date-picker/datepicker-legacy/DatePicker.js +0 -107
- package/es/date-picker/datepicker-legacy/DateRangePanel.js +0 -496
- package/es/date-picker/datepicker-legacy/Modal.js +0 -71
- package/es/date-picker/datepicker-legacy/Time.js +0 -413
- package/es/date-picker/datepicker-legacy/TimePanel.js +0 -93
- package/es/date-picker/datepicker-legacy/TimePeriodPanel.js +0 -126
- package/es/date-picker/datepicker-legacy/TimePicker.js +0 -82
- package/es/date-picker/datepicker-legacy/TimeRangePanel.js +0 -98
- package/es/date-picker/datepicker-legacy/Type.js +0 -31
- package/es/date-picker/datepicker-legacy/WeekRangePanel.js +0 -345
- package/es/date-picker/datepicker-legacy/constants.js +0 -79
- package/es/date-picker/datepicker-legacy/dateUtil.js +0 -258
- package/es/date-picker/datepicker-legacy/index.js +0 -15
- package/es/date-picker/datepicker-legacy/local.js +0 -11
- package/es/date-picker/datepicker-legacy/style/index.css +0 -1
- package/es/date-picker/datepicker-legacy/style/index.js +0 -3
- package/es/date-picker/datepicker-legacy/style/timepicker.css +0 -1
- package/es/date-picker/datepicker-legacy/util.js +0 -60
- package/es/date-picker/toLunar.js +0 -172
- package/es/dropdown/DropdownButton.js +0 -106
- package/es/dropdown/DropdownMenu.js +0 -111
- package/es/dropdown/DropdownMenuItem.js +0 -178
- package/es/dropdown/__tests__/index.test.js +0 -317
- package/es/dropdown/utils.js +0 -35
- package/es/form/Form.js +0 -184
- package/es/form/__tests__/index.test.js +0 -575
- package/es/grid/__tests__/index.test.js +0 -104
- package/es/input/Input.js +0 -412
- package/es/input/__tests__/index.test.js +0 -381
- package/es/input/input-legacy/index.js +0 -353
- package/es/input/input-legacy/util.js +0 -176
- package/es/loading/Loading.js +0 -181
- package/es/loading/__tests__/index.test.js +0 -110
- package/es/locales/zh-Hant-HK.js +0 -121
- package/es/locales/zh-Hant-TW.js +0 -123
- package/es/menu/Menu.js +0 -422
- package/es/menu/__tests__/index.test.js +0 -279
- package/es/message/__tests__/index.test.js +0 -75
- package/es/message/index.js +0 -58
- package/es/message/style/index.css +0 -1
- package/es/message/style/index.js +0 -5
- package/es/modal/__tests__/index.test.js +0 -178
- package/es/nav-menu/__tests__/index.test.js +0 -27
- package/es/notice/Notice.js +0 -142
- package/es/notice/NoticeContainer.js +0 -113
- package/es/notice/__tests__/index.test.js +0 -174
- package/es/notice/index.js +0 -66
- package/es/notice/style/index.css +0 -1
- package/es/notice/style/index.js +0 -5
- package/es/notification/HandleNotification/index.js +0 -224
- package/es/notification/HandleNotification/style/index.css +0 -1
- package/es/notification/HandleNotification/style/index.js +0 -5
- package/es/notification/__tests__/index.test.js +0 -118
- package/es/pagination/__tests__/index.test.js +0 -248
- package/es/popover/__tests__/index.test.js +0 -152
- package/es/preview/index.js +0 -527
- package/es/preview/style/index.css +0 -1
- package/es/preview/style/index.js +0 -3
- package/es/progress/Progress.js +0 -110
- package/es/progress/__tests__/index.test.js +0 -131
- package/es/radio/Group.js +0 -203
- package/es/radio/Radio.js +0 -151
- package/es/radio/__tests__/index.test.js +0 -128
- package/es/radio/radio-legacy/index.js +0 -222
- package/es/radio/radio-legacy/style/index.css +0 -1
- package/es/radio/radio-legacy/style/index.js +0 -3
- package/es/rate/__tests__/index.test.js +0 -124
- package/es/select/__tests__/index.test.js +0 -505
- package/es/select/select-legacy/Option.js +0 -81
- package/es/select/select-legacy/Select.js +0 -710
- package/es/select/select-legacy/SelectDropdown.js +0 -164
- package/es/select/select-legacy/SelectInput.js +0 -312
- package/es/select/select-legacy/common.js +0 -19
- package/es/select/select-legacy/index.js +0 -16
- package/es/stepper/Stepper.js +0 -151
- package/es/stepper/__tests__/index.test.js +0 -161
- package/es/table/ClickOuterside.js +0 -103
- package/es/table/TableContent.js +0 -109
- package/es/table/__tests__/index.test.js +0 -133
- package/es/table/checkbox/style/index.css +0 -1
- package/es/table/checkbox/style/index.js +0 -3
- package/es/tabs/__tests__/index.test.js +0 -333
- package/es/tabs/tabs-legacy/ItemDropdown.js +0 -170
- package/es/tabs/tabs-legacy/TabPane.js +0 -78
- package/es/tabs/tabs-legacy/Tabs.js +0 -299
- package/es/tabs/tabs-legacy/index.js +0 -18
- package/es/tabs/tabs-legacy/style/index.css +0 -1
- package/es/tabs/tabs-legacy/style/index.js +0 -3
- package/es/tag/__tests__/index.test.js +0 -46
- package/es/tag/index.js +0 -94
- package/es/tag/style/index.css +0 -1
- package/es/tag/style/index.js +0 -3
- package/es/timeline/__tests__/index.test.js +0 -198
- package/es/tooltip/__tests__/index.test.js +0 -170
- package/es/transfer/Transfer.js +0 -566
- package/es/transfer/__tests__/index.test.js +0 -210
- package/es/tree/IconLoading.js +0 -38
- package/es/tree/__tests__/index.test.js +0 -603
- package/es/tree/tree-legacy/Tree.js +0 -337
- package/es/tree/tree-legacy/TreeDivider.js +0 -25
- package/es/tree/tree-legacy/TreeItem.js +0 -333
- package/es/tree/tree-legacy/TreeNode.js +0 -719
- package/es/tree/tree-legacy/index.js +0 -13
- package/es/tree/tree-legacy/style/index.css +0 -1
- package/es/tree/tree-legacy/style/index.js +0 -3
- package/es/tree/tree-legacy/util.js +0 -434
- package/es/upload/__tests__/index.test.js +0 -760
- package/es/upload/main.js +0 -91
- package/es/upload/upload-legacy/Upload.js +0 -435
- package/es/upload/upload-legacy/UploadAvatar.js +0 -322
- package/es/upload/upload-legacy/UploadClick.js +0 -125
- package/es/upload/upload-legacy/UploadDrag.js +0 -180
- package/es/upload/upload-legacy/UploadPhoto.js +0 -183
- package/es/upload/upload-legacy/UploadPictureCard.js +0 -126
- package/es/upload/upload-legacy/index.js +0 -75
- package/es/upload/upload-legacy/style/index.css +0 -1
- package/es/upload/upload-legacy/style/index.js +0 -5
- package/es/upload/upload-legacy/tool.js +0 -84
- package/es/watermark/index.js +0 -101
- package/es/watermark/watermark.js +0 -252
- /package/es/checkbox/{checkbox-legacy/common.js → common.js} +0 -0
- /package/es/{breadcrumb/style → style}/index.js +0 -0
- /package/es/upload/{upload-legacy/style → style}/preview.css +0 -0
- /package/es/upload/{upload-legacy/style → style}/preview.js +0 -0
|
@@ -1,35 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
3
|
Object.defineProperty(exports, "__esModule", {
|
|
6
4
|
value: true
|
|
7
5
|
});
|
|
8
6
|
exports["default"] = void 0;
|
|
9
7
|
|
|
10
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
-
|
|
12
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
-
|
|
14
|
-
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
15
|
-
|
|
16
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
17
|
-
|
|
18
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
19
|
-
|
|
20
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
21
|
-
|
|
22
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
23
|
-
|
|
24
8
|
var _react = _interopRequireDefault(require("react"));
|
|
25
9
|
|
|
26
10
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
27
11
|
|
|
28
12
|
var _modal = _interopRequireDefault(require("../modal"));
|
|
29
13
|
|
|
14
|
+
var _context = _interopRequireDefault(require("../context"));
|
|
15
|
+
|
|
30
16
|
var _Upload2 = _interopRequireDefault(require("./Upload"));
|
|
31
17
|
|
|
32
|
-
var
|
|
18
|
+
var _Preview = _interopRequireDefault(require("./Preview"));
|
|
33
19
|
|
|
34
20
|
var _reactCropper = _interopRequireDefault(require("react-cropper"));
|
|
35
21
|
|
|
@@ -37,34 +23,65 @@ var _icon = _interopRequireDefault(require("../icon"));
|
|
|
37
23
|
|
|
38
24
|
require("cropperjs/dist/cropper.css");
|
|
39
25
|
|
|
40
|
-
function
|
|
26
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
27
|
+
|
|
28
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
29
|
+
|
|
30
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
31
|
+
|
|
32
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
33
|
+
|
|
34
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
35
|
+
|
|
36
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
37
|
+
|
|
38
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
39
|
+
|
|
40
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
41
|
+
|
|
42
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
41
43
|
|
|
42
|
-
function
|
|
44
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
43
45
|
|
|
44
|
-
function
|
|
46
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
45
47
|
|
|
46
|
-
function
|
|
48
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
49
|
+
|
|
50
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
51
|
+
|
|
52
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
53
|
+
|
|
54
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
47
55
|
|
|
48
56
|
var UploadAvatar = /*#__PURE__*/function (_Upload) {
|
|
49
|
-
(
|
|
57
|
+
_inherits(UploadAvatar, _Upload);
|
|
50
58
|
|
|
51
59
|
var _super = _createSuper(UploadAvatar);
|
|
52
60
|
|
|
53
61
|
function UploadAvatar(props) {
|
|
54
62
|
var _this;
|
|
55
63
|
|
|
56
|
-
(
|
|
64
|
+
_classCallCheck(this, UploadAvatar);
|
|
65
|
+
|
|
57
66
|
_this = _super.call(this, props);
|
|
58
|
-
|
|
59
|
-
(
|
|
60
|
-
|
|
61
|
-
(
|
|
62
|
-
|
|
63
|
-
(
|
|
64
|
-
|
|
67
|
+
|
|
68
|
+
_defineProperty(_assertThisInitialized(_this), "containerWidth", 550);
|
|
69
|
+
|
|
70
|
+
_defineProperty(_assertThisInitialized(_this), "containerHeight", 500);
|
|
71
|
+
|
|
72
|
+
_defineProperty(_assertThisInitialized(_this), "filename", '');
|
|
73
|
+
|
|
74
|
+
_defineProperty(_assertThisInitialized(_this), "img", null);
|
|
75
|
+
|
|
76
|
+
_defineProperty(_assertThisInitialized(_this), "scale", 1);
|
|
77
|
+
|
|
78
|
+
_defineProperty(_assertThisInitialized(_this), "draging", false);
|
|
79
|
+
|
|
80
|
+
_defineProperty(_assertThisInitialized(_this), "dragBeginXy", {
|
|
65
81
|
x: 0,
|
|
66
82
|
y: 0
|
|
67
83
|
});
|
|
84
|
+
|
|
68
85
|
_this.state = Object.assign({
|
|
69
86
|
showPreviewModal: false,
|
|
70
87
|
showCropperModal: false,
|
|
@@ -78,7 +95,7 @@ var UploadAvatar = /*#__PURE__*/function (_Upload) {
|
|
|
78
95
|
return _this;
|
|
79
96
|
}
|
|
80
97
|
|
|
81
|
-
(
|
|
98
|
+
_createClass(UploadAvatar, [{
|
|
82
99
|
key: "uploadFiles",
|
|
83
100
|
value: function uploadFiles(files) {
|
|
84
101
|
var _this2 = this;
|
|
@@ -202,9 +219,7 @@ var UploadAvatar = /*#__PURE__*/function (_Upload) {
|
|
|
202
219
|
accept = _this$props.accept,
|
|
203
220
|
localeDatas = _this$props.localeDatas,
|
|
204
221
|
_this$props$avatarOpt = _this$props.avatarOptions,
|
|
205
|
-
avatarOptions = _this$props$avatarOpt === void 0 ? {} : _this$props$avatarOpt
|
|
206
|
-
onRemove = _this$props.onRemove,
|
|
207
|
-
theme = _this$props.theme;
|
|
222
|
+
avatarOptions = _this$props$avatarOpt === void 0 ? {} : _this$props$avatarOpt;
|
|
208
223
|
var _this$state = this.state,
|
|
209
224
|
fileList = _this$state.fileList,
|
|
210
225
|
showCropperModal = _this$state.showCropperModal,
|
|
@@ -217,7 +232,7 @@ var UploadAvatar = /*#__PURE__*/function (_Upload) {
|
|
|
217
232
|
dropBoxSize = _avatarOptions$dropBo === void 0 ? [] : _avatarOptions$dropBo;
|
|
218
233
|
var file = fileList[0];
|
|
219
234
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
220
|
-
className: "
|
|
235
|
+
className: "hi-upload hi-upload--avatar"
|
|
221
236
|
}, /*#__PURE__*/_react["default"].createElement("ul", {
|
|
222
237
|
className: "hi-upload__list"
|
|
223
238
|
}, !!file && (file.uploadState === 'loading' ? /*#__PURE__*/_react["default"].createElement("li", {
|
|
@@ -238,15 +253,11 @@ var UploadAvatar = /*#__PURE__*/function (_Upload) {
|
|
|
238
253
|
className: "hi-upload__item"
|
|
239
254
|
}, /*#__PURE__*/_react["default"].createElement("img", {
|
|
240
255
|
src: file.url,
|
|
241
|
-
className: "hi-upload__thumb ".concat(file.uploadState === 'error' && 'error')
|
|
242
|
-
}), /*#__PURE__*/_react["default"].createElement("div", {
|
|
243
|
-
className: "hi-upload__item-mask",
|
|
256
|
+
className: "hi-upload__thumb ".concat(file.uploadState === 'error' && 'error'),
|
|
244
257
|
onClick: function onClick() {
|
|
245
258
|
return _this5.previewImage(file);
|
|
246
259
|
}
|
|
247
|
-
}, /*#__PURE__*/_react["default"].createElement(_icon["default"], {
|
|
248
|
-
name: "eye"
|
|
249
|
-
}), /*#__PURE__*/_react["default"].createElement("span", null, localeDatas.upload.preview)), onRemove && /*#__PURE__*/_react["default"].createElement(_icon["default"], {
|
|
260
|
+
}), /*#__PURE__*/_react["default"].createElement(_icon["default"], {
|
|
250
261
|
name: "close-circle",
|
|
251
262
|
className: "hi-upload__photo-del",
|
|
252
263
|
onClick: function onClick() {
|
|
@@ -299,15 +310,16 @@ var UploadAvatar = /*#__PURE__*/function (_Upload) {
|
|
|
299
310
|
height: 400,
|
|
300
311
|
width: '100%'
|
|
301
312
|
}
|
|
302
|
-
})), showPreviewModal && file && /*#__PURE__*/_react["default"].createElement(
|
|
313
|
+
})), showPreviewModal && file && /*#__PURE__*/_react["default"].createElement(_Preview["default"], {
|
|
303
314
|
src: file.url,
|
|
304
315
|
images: [file],
|
|
305
316
|
activeIndex: 0,
|
|
306
|
-
|
|
317
|
+
show: showPreviewModal,
|
|
307
318
|
onClose: this.closePreviewModal.bind(this)
|
|
308
319
|
}));
|
|
309
320
|
}
|
|
310
321
|
}]);
|
|
322
|
+
|
|
311
323
|
return UploadAvatar;
|
|
312
324
|
}(_Upload2["default"]);
|
|
313
325
|
|
|
@@ -320,5 +332,7 @@ UploadAvatar.defaultProps = Object.assign({}, _objectSpread({}, _Upload2["defaul
|
|
|
320
332
|
height: 200,
|
|
321
333
|
accept: 'image/jpg,image/jpeg,image/png'
|
|
322
334
|
});
|
|
323
|
-
|
|
335
|
+
|
|
336
|
+
var _default = (0, _context["default"])(UploadAvatar);
|
|
337
|
+
|
|
324
338
|
exports["default"] = _default;
|
package/es/upload/UploadClick.js
CHANGED
|
@@ -1,89 +1,92 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
3
|
Object.defineProperty(exports, "__esModule", {
|
|
6
4
|
value: true
|
|
7
5
|
});
|
|
8
6
|
exports["default"] = void 0;
|
|
9
7
|
|
|
10
|
-
var
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
9
|
|
|
12
|
-
var
|
|
10
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
11
|
|
|
14
|
-
var
|
|
12
|
+
var _context = _interopRequireDefault(require("../context"));
|
|
15
13
|
|
|
16
|
-
var
|
|
14
|
+
var _Upload2 = _interopRequireDefault(require("./Upload"));
|
|
17
15
|
|
|
18
|
-
var
|
|
16
|
+
var _icon = _interopRequireDefault(require("../icon"));
|
|
19
17
|
|
|
20
|
-
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
21
19
|
|
|
22
|
-
var
|
|
20
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
23
21
|
|
|
24
|
-
var
|
|
22
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
25
23
|
|
|
26
|
-
|
|
24
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
27
25
|
|
|
28
|
-
|
|
26
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
29
27
|
|
|
30
|
-
var
|
|
28
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
31
29
|
|
|
32
|
-
|
|
30
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
31
|
+
|
|
32
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
33
|
+
|
|
34
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
35
|
+
|
|
36
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
33
37
|
|
|
34
|
-
function
|
|
38
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
35
39
|
|
|
36
|
-
function
|
|
40
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
37
41
|
|
|
38
|
-
function
|
|
42
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
39
43
|
|
|
40
|
-
function
|
|
44
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
45
|
+
|
|
46
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
41
47
|
|
|
42
48
|
var UploadClick = /*#__PURE__*/function (_Upload) {
|
|
43
|
-
(
|
|
49
|
+
_inherits(UploadClick, _Upload);
|
|
44
50
|
|
|
45
51
|
var _super = _createSuper(UploadClick);
|
|
46
52
|
|
|
47
53
|
function UploadClick() {
|
|
48
54
|
var _this;
|
|
49
55
|
|
|
50
|
-
(
|
|
56
|
+
_classCallCheck(this, UploadClick);
|
|
51
57
|
|
|
52
58
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
53
59
|
args[_key] = arguments[_key];
|
|
54
60
|
}
|
|
55
61
|
|
|
56
62
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
57
|
-
(0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "handleButtonClick", function () {
|
|
58
|
-
_this.uploadRef.value = '';
|
|
59
63
|
|
|
60
|
-
|
|
64
|
+
_defineProperty(_assertThisInitialized(_this), "handleButtonClick", function (e) {
|
|
65
|
+
_this.uploadRef.value = '';
|
|
61
66
|
});
|
|
67
|
+
|
|
62
68
|
return _this;
|
|
63
69
|
}
|
|
64
70
|
|
|
65
|
-
(
|
|
71
|
+
_createClass(UploadClick, [{
|
|
66
72
|
key: "render",
|
|
67
73
|
value: function render() {
|
|
68
74
|
var _this2 = this;
|
|
69
75
|
|
|
70
76
|
var _this$props = this.props,
|
|
71
|
-
|
|
77
|
+
buttonText = _this$props.buttonText,
|
|
72
78
|
disabled = _this$props.disabled,
|
|
73
79
|
multiple = _this$props.multiple,
|
|
74
80
|
tips = _this$props.tips,
|
|
75
81
|
showUploadList = _this$props.showUploadList,
|
|
76
82
|
onRemove = _this$props.onRemove,
|
|
77
83
|
accept = _this$props.accept,
|
|
78
|
-
|
|
79
|
-
localeDatas = _this$props.localeDatas,
|
|
80
|
-
theme = _this$props.theme,
|
|
81
|
-
onDownload = _this$props.onDownload;
|
|
84
|
+
localeDatas = _this$props.localeDatas;
|
|
82
85
|
var _this$state = this.state,
|
|
83
86
|
fileList = _this$state.fileList,
|
|
84
87
|
fileCountLimted = _this$state.fileCountLimted;
|
|
85
88
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
86
|
-
className: "hi-upload hi-upload--normal
|
|
89
|
+
className: "hi-upload hi-upload--normal"
|
|
87
90
|
}, this.outMaxsizeTip(), /*#__PURE__*/_react["default"].createElement("label", null, /*#__PURE__*/_react["default"].createElement("input", {
|
|
88
91
|
ref: function ref(node) {
|
|
89
92
|
_this2.uploadRef = node;
|
|
@@ -96,12 +99,10 @@ var UploadClick = /*#__PURE__*/function (_Upload) {
|
|
|
96
99
|
disabled: (disabled || fileCountLimted) && 'disabled',
|
|
97
100
|
accept: accept,
|
|
98
101
|
hidden: true
|
|
99
|
-
}), /*#__PURE__*/_react["default"].createElement(
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
loading: loading
|
|
104
|
-
}, content || localeDatas.upload.buttonText)), tips && /*#__PURE__*/_react["default"].createElement("span", {
|
|
102
|
+
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
103
|
+
className: "hi-upload__button ".concat(disabled || fileCountLimted ? 'hi-upload__button--disabled' : ''),
|
|
104
|
+
onClick: this.handleButtonClick
|
|
105
|
+
}, buttonText || localeDatas.upload.buttonText)), tips && /*#__PURE__*/_react["default"].createElement("span", {
|
|
105
106
|
className: "hi-upload__tips hi-upload__tips--single-line"
|
|
106
107
|
}, tips), showUploadList && /*#__PURE__*/_react["default"].createElement("ul", {
|
|
107
108
|
className: "hi-upload__list"
|
|
@@ -115,22 +116,14 @@ var UploadClick = /*#__PURE__*/function (_Upload) {
|
|
|
115
116
|
className: (0, _classnames["default"])("Ficon-".concat(file.fileType))
|
|
116
117
|
}), /*#__PURE__*/_react["default"].createElement("div", {
|
|
117
118
|
className: "hi-upload__right-content"
|
|
118
|
-
}, /*#__PURE__*/_react["default"].createElement("
|
|
119
|
-
target: "_blank",
|
|
120
|
-
href: file.url || null,
|
|
119
|
+
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
121
120
|
className: fileNameCls,
|
|
122
|
-
title: file.name
|
|
123
|
-
onClick: function onClick(e) {
|
|
124
|
-
if (onDownload) {
|
|
125
|
-
e.preventDefault();
|
|
126
|
-
onDownload(file);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
121
|
+
title: file.name
|
|
129
122
|
}, file.name), /*#__PURE__*/_react["default"].createElement("span", null, onRemove && /*#__PURE__*/_react["default"].createElement(_icon["default"], {
|
|
123
|
+
name: file.uploadState === 'loading' ? 'close' : 'delete',
|
|
130
124
|
onClick: function onClick() {
|
|
131
125
|
return _this2.deleteFile(file, index);
|
|
132
|
-
}
|
|
133
|
-
name: file.uploadState === 'loading' ? 'close' : 'delete'
|
|
126
|
+
}
|
|
134
127
|
}))), file.uploadState === 'loading' && /*#__PURE__*/_react["default"].createElement("div", {
|
|
135
128
|
className: "hi-upload__upstatus"
|
|
136
129
|
}, /*#__PURE__*/_react["default"].createElement("i", {
|
|
@@ -142,11 +135,14 @@ var UploadClick = /*#__PURE__*/function (_Upload) {
|
|
|
142
135
|
})));
|
|
143
136
|
}
|
|
144
137
|
}]);
|
|
138
|
+
|
|
145
139
|
return UploadClick;
|
|
146
140
|
}(_Upload2["default"]);
|
|
147
141
|
|
|
148
142
|
UploadClick.defaultProps = Object.assign({}, _objectSpread({}, _Upload2["default"].defaultProps), {
|
|
149
143
|
type: 'normal'
|
|
150
144
|
});
|
|
151
|
-
|
|
145
|
+
|
|
146
|
+
var _default = (0, _context["default"])(UploadClick);
|
|
147
|
+
|
|
152
148
|
exports["default"] = _default;
|
package/es/upload/UploadDrag.js
CHANGED
|
@@ -1,61 +1,71 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
3
|
Object.defineProperty(exports, "__esModule", {
|
|
6
4
|
value: true
|
|
7
5
|
});
|
|
8
6
|
exports["default"] = void 0;
|
|
9
7
|
|
|
10
|
-
var
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
9
|
|
|
12
|
-
var
|
|
10
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
11
|
|
|
14
|
-
var
|
|
12
|
+
var _context = _interopRequireDefault(require("../context"));
|
|
15
13
|
|
|
16
|
-
var
|
|
14
|
+
var _Upload2 = _interopRequireDefault(require("./Upload"));
|
|
17
15
|
|
|
18
|
-
var
|
|
16
|
+
var _icon = _interopRequireDefault(require("../icon"));
|
|
19
17
|
|
|
20
|
-
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
21
19
|
|
|
22
|
-
|
|
20
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
23
21
|
|
|
24
|
-
|
|
22
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
25
23
|
|
|
26
|
-
var
|
|
24
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
27
25
|
|
|
28
|
-
|
|
26
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
29
27
|
|
|
30
|
-
|
|
28
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
29
|
+
|
|
30
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
31
|
+
|
|
32
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
33
|
+
|
|
34
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
31
35
|
|
|
32
|
-
function
|
|
36
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
33
37
|
|
|
34
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
38
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
39
|
+
|
|
40
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
41
|
+
|
|
42
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
35
43
|
|
|
36
44
|
var UploadDrag = /*#__PURE__*/function (_Upload) {
|
|
37
|
-
(
|
|
45
|
+
_inherits(UploadDrag, _Upload);
|
|
38
46
|
|
|
39
47
|
var _super = _createSuper(UploadDrag);
|
|
40
48
|
|
|
41
49
|
function UploadDrag(props) {
|
|
42
50
|
var _this;
|
|
43
51
|
|
|
44
|
-
(
|
|
52
|
+
_classCallCheck(this, UploadDrag);
|
|
53
|
+
|
|
45
54
|
_this = _super.call(this, props);
|
|
46
|
-
|
|
55
|
+
|
|
56
|
+
_defineProperty(_assertThisInitialized(_this), "targetInput", function () {
|
|
47
57
|
_this.uploadRef.value = '';
|
|
48
58
|
|
|
49
59
|
_this.uploadRef.click();
|
|
50
60
|
});
|
|
61
|
+
|
|
51
62
|
_this.state = Object.assign({
|
|
52
63
|
overEvent: false
|
|
53
64
|
}, _this.state);
|
|
54
|
-
_this.dragBoxRef = /*#__PURE__*/_react["default"].createRef();
|
|
55
65
|
return _this;
|
|
56
66
|
}
|
|
57
67
|
|
|
58
|
-
(
|
|
68
|
+
_createClass(UploadDrag, [{
|
|
59
69
|
key: "dragoverFn",
|
|
60
70
|
value: function dragoverFn(e) {
|
|
61
71
|
e.preventDefault();
|
|
@@ -97,15 +107,12 @@ var UploadDrag = /*#__PURE__*/function (_Upload) {
|
|
|
97
107
|
accept = _this$props.accept,
|
|
98
108
|
disabled = _this$props.disabled,
|
|
99
109
|
tips = _this$props.tips,
|
|
100
|
-
localeDatas = _this$props.localeDatas
|
|
101
|
-
onRemove = _this$props.onRemove,
|
|
102
|
-
theme = _this$props.theme,
|
|
103
|
-
onDownload = _this$props.onDownload;
|
|
110
|
+
localeDatas = _this$props.localeDatas;
|
|
104
111
|
var _this$state = this.state,
|
|
105
112
|
overEvent = _this$state.overEvent,
|
|
106
113
|
fileList = _this$state.fileList,
|
|
107
114
|
fileCountLimted = _this$state.fileCountLimted;
|
|
108
|
-
var dragCls = (0, _classnames["default"])(
|
|
115
|
+
var dragCls = (0, _classnames["default"])('hi-upload', 'hi-upload--drag', overEvent && !disabled && 'drop-over', disabled && 'hi-upload--disabled', fileList.length > 0 && 'hi-upload--nohover');
|
|
109
116
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
110
117
|
className: dragCls,
|
|
111
118
|
onDragOver: function onDragOver(e) {
|
|
@@ -117,7 +124,6 @@ var UploadDrag = /*#__PURE__*/function (_Upload) {
|
|
|
117
124
|
onDrop: function onDrop(e) {
|
|
118
125
|
return _this2.dropFn(e);
|
|
119
126
|
},
|
|
120
|
-
ref: this.dragBoxRef,
|
|
121
127
|
onClick: function onClick(e) {
|
|
122
128
|
if (e.target.nodeName === 'INPUT' && e.target.type === 'file') {
|
|
123
129
|
_this2.uploadRef.value = '';
|
|
@@ -153,11 +159,11 @@ var UploadDrag = /*#__PURE__*/function (_Upload) {
|
|
|
153
159
|
className: "hi-upload__item hi-upload__item-tips",
|
|
154
160
|
onClick: this.targetInput
|
|
155
161
|
}, /*#__PURE__*/_react["default"].createElement(_icon["default"], {
|
|
156
|
-
name: "
|
|
162
|
+
name: "comment-circle-o"
|
|
157
163
|
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
158
164
|
className: "hi-upload__tips--exist"
|
|
159
|
-
}, fileCountLimted ? localeDatas.upload.dragTipsLimited : localeDatas.upload.dragTips
|
|
160
|
-
var fileNameCls = (0, _classnames["default"])('
|
|
165
|
+
}, fileCountLimted ? localeDatas.upload.dragTipsLimited : localeDatas.upload.dragTips)), fileList.map(function (file, index) {
|
|
166
|
+
var fileNameCls = (0, _classnames["default"])('file-name', 'upload-list__item-name', file.uploadState === 'error' && 'file-name--error');
|
|
161
167
|
return /*#__PURE__*/_react["default"].createElement("li", {
|
|
162
168
|
key: index,
|
|
163
169
|
title: file.name,
|
|
@@ -166,21 +172,12 @@ var UploadDrag = /*#__PURE__*/function (_Upload) {
|
|
|
166
172
|
className: "Ficon-".concat(file.fileType)
|
|
167
173
|
}), /*#__PURE__*/_react["default"].createElement("div", {
|
|
168
174
|
className: "hi-upload__right-content"
|
|
169
|
-
}, /*#__PURE__*/_react["default"].createElement("
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
className: fileNameCls,
|
|
173
|
-
title: file.name,
|
|
174
|
-
onClick: function onClick(e) {
|
|
175
|
-
if (onDownload) {
|
|
176
|
-
e.preventDefault();
|
|
177
|
-
onDownload(file);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}, file.name), onRemove && /*#__PURE__*/_react["default"].createElement("span", {
|
|
175
|
+
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
176
|
+
className: fileNameCls
|
|
177
|
+
}, file.name), /*#__PURE__*/_react["default"].createElement("span", {
|
|
181
178
|
className: "hi-upload__operate-icon",
|
|
182
|
-
onClick: function onClick() {
|
|
183
|
-
return _this2.deleteFile(file, index);
|
|
179
|
+
onClick: function onClick(e) {
|
|
180
|
+
return _this2.deleteFile(e, file, index);
|
|
184
181
|
}
|
|
185
182
|
}, file.uploadState === 'loading' ? localeDatas.upload.cancel : localeDatas.upload["delete"])), file.uploadState === 'loading' && /*#__PURE__*/_react["default"].createElement("div", {
|
|
186
183
|
className: "hi-upload__upstatus"
|
|
@@ -195,8 +192,10 @@ var UploadDrag = /*#__PURE__*/function (_Upload) {
|
|
|
195
192
|
})));
|
|
196
193
|
}
|
|
197
194
|
}]);
|
|
195
|
+
|
|
198
196
|
return UploadDrag;
|
|
199
197
|
}(_Upload2["default"]);
|
|
200
198
|
|
|
201
|
-
var _default = UploadDrag;
|
|
199
|
+
var _default = (0, _context["default"])(UploadDrag);
|
|
200
|
+
|
|
202
201
|
exports["default"] = _default;
|