@douyinfe/semi-foundation 2.36.0-alpha.0 → 2.36.0
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/calendar/calendar.scss +1 -1
- package/calendar/foundation.ts +2 -1
- package/datePicker/_utils/getYears.ts +8 -4
- package/datePicker/foundation.ts +1 -1
- package/datePicker/monthsGridFoundation.ts +2 -1
- package/datePicker/yearAndMonthFoundation.ts +3 -1
- package/lib/cjs/anchor/constants.js +0 -2
- package/lib/cjs/anchor/foundation.js +10 -73
- package/lib/cjs/anchor/linkFoundation.js +4 -16
- package/lib/cjs/autoComplete/constants.js +0 -3
- package/lib/cjs/autoComplete/foundation.d.ts +1 -1
- package/lib/cjs/autoComplete/foundation.js +25 -139
- package/lib/cjs/autoComplete/optionFoundation.js +4 -14
- package/lib/cjs/avatar/constants.js +0 -2
- package/lib/cjs/avatar/foundation.js +0 -17
- package/lib/cjs/backtop/constants.js +0 -2
- package/lib/cjs/backtop/foundation.d.ts +2 -2
- package/lib/cjs/backtop/foundation.js +0 -21
- package/lib/cjs/badge/constants.js +0 -2
- package/lib/cjs/banner/constants.js +0 -2
- package/lib/cjs/banner/foundation.js +0 -7
- package/lib/cjs/base/constants.js +2 -4
- package/lib/cjs/base/foundation.d.ts +1 -1
- package/lib/cjs/base/foundation.js +12 -46
- package/lib/cjs/base/index.js +0 -3
- package/lib/cjs/breadcrumb/constants.js +0 -2
- package/lib/cjs/breadcrumb/foundation.js +1 -12
- package/lib/cjs/breadcrumb/itemFoundation.js +0 -7
- package/lib/cjs/button/constants.js +0 -2
- package/lib/cjs/calendar/calendar.css +2 -2
- package/lib/cjs/calendar/calendar.scss +1 -1
- package/lib/cjs/calendar/constants.js +0 -2
- package/lib/cjs/calendar/eventUtil.d.ts +1 -1
- package/lib/cjs/calendar/eventUtil.js +2 -74
- package/lib/cjs/calendar/foundation.d.ts +2 -2
- package/lib/cjs/calendar/foundation.js +28 -123
- package/lib/cjs/card/constants.js +0 -2
- package/lib/cjs/carousel/constants.js +0 -2
- package/lib/cjs/carousel/foundation.js +2 -52
- package/lib/cjs/cascader/constants.js +0 -3
- package/lib/cjs/cascader/foundation.d.ts +4 -4
- package/lib/cjs/cascader/foundation.js +28 -242
- package/lib/cjs/cascader/util.js +6 -24
- package/lib/cjs/checkbox/checkboxFoundation.js +2 -38
- package/lib/cjs/checkbox/checkboxGroupFoundation.js +2 -23
- package/lib/cjs/checkbox/constants.js +0 -2
- package/lib/cjs/collapse/constants.js +0 -2
- package/lib/cjs/collapse/foundation.d.ts +1 -1
- package/lib/cjs/collapse/foundation.js +2 -13
- package/lib/cjs/collapsible/constants.js +0 -2
- package/lib/cjs/collapsible/foundation.js +0 -9
- package/lib/cjs/datePicker/_utils/formatter.js +4 -10
- package/lib/cjs/datePicker/_utils/getDayOfWeek.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getDayOfWeek.js +0 -4
- package/lib/cjs/datePicker/_utils/getDefaultFormatToken.js +0 -5
- package/lib/cjs/datePicker/_utils/getDefaultPickerDate.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getDefaultPickerDate.js +0 -15
- package/lib/cjs/datePicker/_utils/getFullDateOffset.js +0 -7
- package/lib/cjs/datePicker/_utils/getInsetInputFormatToken.js +0 -5
- package/lib/cjs/datePicker/_utils/getInsetInputValueFromInsetInputStr.js +0 -6
- package/lib/cjs/datePicker/_utils/getMonthTable.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getMonthTable.js +3 -14
- package/lib/cjs/datePicker/_utils/getMonthsInYear.js +0 -2
- package/lib/cjs/datePicker/_utils/getYears.d.ts +1 -1
- package/lib/cjs/datePicker/_utils/getYears.js +9 -7
- package/lib/cjs/datePicker/_utils/index.js +0 -13
- package/lib/cjs/datePicker/_utils/isAfter.js +0 -4
- package/lib/cjs/datePicker/_utils/isBefore.js +0 -4
- package/lib/cjs/datePicker/_utils/isBetween.js +0 -4
- package/lib/cjs/datePicker/_utils/isDate.js +0 -1
- package/lib/cjs/datePicker/_utils/isSameDay.js +0 -4
- package/lib/cjs/datePicker/_utils/isTimestamp.js +0 -4
- package/lib/cjs/datePicker/_utils/isUnixTimestamp.js +0 -4
- package/lib/cjs/datePicker/_utils/isValidDate.js +0 -1
- package/lib/cjs/datePicker/_utils/isValidTimeZone.js +0 -1
- package/lib/cjs/datePicker/_utils/isWithinInterval.js +0 -4
- package/lib/cjs/datePicker/_utils/parser.js +0 -10
- package/lib/cjs/datePicker/constants.js +0 -3
- package/lib/cjs/datePicker/foundation.d.ts +25 -25
- package/lib/cjs/datePicker/foundation.js +22 -333
- package/lib/cjs/datePicker/inputFoundation.d.ts +3 -3
- package/lib/cjs/datePicker/inputFoundation.js +5 -86
- package/lib/cjs/datePicker/monthFoundation.d.ts +1 -1
- package/lib/cjs/datePicker/monthFoundation.js +3 -28
- package/lib/cjs/datePicker/monthsGridFoundation.d.ts +5 -4
- package/lib/cjs/datePicker/monthsGridFoundation.js +43 -238
- package/lib/cjs/datePicker/yearAndMonthFoundation.d.ts +3 -1
- package/lib/cjs/datePicker/yearAndMonthFoundation.js +12 -38
- package/lib/cjs/descriptions/constants.js +0 -2
- package/lib/cjs/divider/constants.js +0 -2
- package/lib/cjs/dropdown/constants.js +0 -3
- package/lib/cjs/dropdown/foundation.js +4 -23
- package/lib/cjs/dropdown/menuFoundation.js +8 -27
- package/lib/cjs/empty/constants.js +0 -2
- package/lib/cjs/form/constants.js +0 -2
- package/lib/cjs/form/foundation.js +75 -206
- package/lib/cjs/form/interface.d.ts +5 -5
- package/lib/cjs/form/utils.js +47 -77
- package/lib/cjs/grid/constants.js +0 -2
- package/lib/cjs/highlight/constants.js +0 -2
- package/lib/cjs/icons/constants.js +0 -2
- package/lib/cjs/image/constants.js +0 -2
- package/lib/cjs/image/imageFoundation.js +4 -18
- package/lib/cjs/image/previewFooterFoundation.js +0 -13
- package/lib/cjs/image/previewFoundation.js +0 -11
- package/lib/cjs/image/previewImageFoundation.js +6 -80
- package/lib/cjs/image/previewInnerFoundation.js +12 -77
- package/lib/cjs/image/utils.js +0 -14
- package/lib/cjs/input/constants.js +0 -2
- package/lib/cjs/input/foundation.js +17 -101
- package/lib/cjs/input/textareaFoundation.js +20 -85
- package/lib/cjs/input/util/calculateNodeHeight.js +6 -18
- package/lib/cjs/input/util/getSizingData.js +7 -11
- package/lib/cjs/inputNumber/constants.js +0 -2
- package/lib/cjs/inputNumber/foundation.js +29 -192
- package/lib/cjs/layout/constants.js +0 -2
- package/lib/cjs/list/constants.js +0 -2
- package/lib/cjs/modal/constants.js +0 -2
- package/lib/cjs/modal/modalContentFoundation.js +0 -20
- package/lib/cjs/modal/modalFoundation.d.ts +2 -2
- package/lib/cjs/modal/modalFoundation.js +2 -22
- package/lib/cjs/navigation/NavItem.js +0 -10
- package/lib/cjs/navigation/constants.js +0 -3
- package/lib/cjs/navigation/foundation.js +3 -67
- package/lib/cjs/navigation/itemFoundation.d.ts +0 -2
- package/lib/cjs/navigation/itemFoundation.js +3 -21
- package/lib/cjs/navigation/navigation.css +7 -77
- package/lib/cjs/navigation/navigation.scss +7 -119
- package/lib/cjs/navigation/subNavFoundation.d.ts +0 -2
- package/lib/cjs/navigation/subNavFoundation.js +4 -40
- package/lib/cjs/notification/constants.js +0 -3
- package/lib/cjs/notification/notificationFoundation.d.ts +3 -3
- package/lib/cjs/notification/notificationFoundation.js +0 -16
- package/lib/cjs/notification/notificationListFoundation.js +7 -17
- package/lib/cjs/overflowList/constants.js +0 -2
- package/lib/cjs/overflowList/foundation.js +11 -41
- package/lib/cjs/pagination/constants.js +0 -2
- package/lib/cjs/pagination/foundation.d.ts +3 -3
- package/lib/cjs/pagination/foundation.js +21 -90
- package/lib/cjs/popconfirm/constants.js +0 -2
- package/lib/cjs/popconfirm/popconfirmFoundation.js +1 -21
- package/lib/cjs/popover/constants.js +0 -3
- package/lib/cjs/progress/constants.js +0 -2
- package/lib/cjs/progress/generates.d.ts +2 -2
- package/lib/cjs/progress/generates.js +19 -60
- package/lib/cjs/radio/constants.js +0 -2
- package/lib/cjs/radio/radioFoundation.js +0 -14
- package/lib/cjs/radio/radioGroupFoundation.js +4 -23
- package/lib/cjs/radio/radioInnerFoundation.js +2 -19
- package/lib/cjs/rating/constants.js +0 -2
- package/lib/cjs/rating/foundation.js +11 -61
- package/lib/cjs/scrollList/constants.js +0 -2
- package/lib/cjs/scrollList/foundation.js +0 -4
- package/lib/cjs/scrollList/itemFoundation.js +8 -61
- package/lib/cjs/scrollList/scrollTo.js +2 -5
- package/lib/cjs/select/constants.js +0 -3
- package/lib/cjs/select/foundation.d.ts +2 -2
- package/lib/cjs/select/foundation.js +122 -425
- package/lib/cjs/select/optionFoundation.js +4 -14
- package/lib/cjs/sideSheet/constants.js +0 -2
- package/lib/cjs/sideSheet/sideSheetFoundation.js +0 -18
- package/lib/cjs/skeleton/constants.js +0 -2
- package/lib/cjs/slider/constants.js +0 -2
- package/lib/cjs/slider/foundation.d.ts +1 -1
- package/lib/cjs/slider/foundation.js +25 -204
- package/lib/cjs/space/constants.js +0 -2
- package/lib/cjs/spin/constants.js +0 -2
- package/lib/cjs/spin/foundation.js +3 -13
- package/lib/cjs/steps/bacisSteps.scss +238 -287
- package/lib/cjs/steps/constants.js +0 -2
- package/lib/cjs/steps/fillSteps.scss +142 -153
- package/lib/cjs/steps/navSteps.scss +40 -61
- package/lib/cjs/steps/steps.css +17 -381
- package/lib/cjs/switch/constants.js +0 -2
- package/lib/cjs/switch/foundation.js +2 -18
- package/lib/cjs/table/bodyFoundation.js +2 -34
- package/lib/cjs/table/cellFoundation.js +0 -5
- package/lib/cjs/table/constants.js +7 -8
- package/lib/cjs/table/foundation.d.ts +17 -14
- package/lib/cjs/table/foundation.js +72 -302
- package/lib/cjs/table/table.css +6 -0
- package/lib/cjs/table/table.scss +12 -0
- package/lib/cjs/table/tableRowFoundation.js +0 -11
- package/lib/cjs/table/tableSelectionCellFoundation.js +0 -6
- package/lib/cjs/table/utils.d.ts +2 -2
- package/lib/cjs/table/utils.js +5 -118
- package/lib/cjs/tabs/constants.js +0 -2
- package/lib/cjs/tabs/foundation.js +2 -40
- package/lib/cjs/tabs/tabs.css +14 -14
- package/lib/cjs/tabs/tabs.scss +16 -14
- package/lib/cjs/tag/constants.js +1 -2
- package/lib/cjs/tagInput/constants.js +0 -2
- package/lib/cjs/tagInput/foundation.d.ts +4 -4
- package/lib/cjs/tagInput/foundation.js +4 -94
- package/lib/cjs/tagInput/utils/getSplitedArray.js +0 -11
- package/lib/cjs/timePicker/ComboxFoundation.js +4 -39
- package/lib/cjs/timePicker/constants.js +0 -3
- package/lib/cjs/timePicker/foundation.d.ts +2 -2
- package/lib/cjs/timePicker/foundation.js +6 -102
- package/lib/cjs/timePicker/inputFoundation.js +6 -25
- package/lib/cjs/timePicker/utils/index.js +6 -45
- package/lib/cjs/timePicker/utils/localeDate.js +0 -10
- package/lib/cjs/timeline/constants.js +0 -2
- package/lib/cjs/timeline/timeline.css +0 -36
- package/lib/cjs/timeline/timeline.scss +46 -96
- package/lib/cjs/toast/constants.js +0 -3
- package/lib/cjs/toast/toastFoundation.d.ts +3 -3
- package/lib/cjs/toast/toastFoundation.js +0 -14
- package/lib/cjs/toast/toastListFoundation.js +4 -22
- package/lib/cjs/tooltip/constants.js +0 -2
- package/lib/cjs/tooltip/foundation.d.ts +1 -1
- package/lib/cjs/tooltip/foundation.js +63 -291
- package/lib/cjs/transfer/constants.js +0 -2
- package/lib/cjs/transfer/foundation.d.ts +1 -1
- package/lib/cjs/transfer/foundation.js +4 -68
- package/lib/cjs/transfer/transferUtils.js +5 -27
- package/lib/cjs/tree/constants.js +0 -2
- package/lib/cjs/tree/foundation.d.ts +3 -3
- package/lib/cjs/tree/foundation.js +34 -150
- package/lib/cjs/tree/treeUtil.js +54 -173
- package/lib/cjs/treeSelect/constants.js +0 -2
- package/lib/cjs/treeSelect/foundation.d.ts +7 -7
- package/lib/cjs/treeSelect/foundation.js +18 -192
- package/lib/cjs/typography/constants.d.ts +1 -0
- package/lib/cjs/typography/constants.js +1 -2
- package/lib/cjs/typography/formatNumeral.d.ts +3 -3
- package/lib/cjs/typography/formatNumeral.js +16 -32
- package/lib/cjs/typography/typography.css +120 -0
- package/lib/cjs/typography/typography.scss +131 -6
- package/lib/cjs/typography/variables.scss +48 -0
- package/lib/cjs/upload/constants.js +0 -2
- package/lib/cjs/upload/foundation.d.ts +5 -5
- package/lib/cjs/upload/foundation.js +36 -245
- package/lib/cjs/upload/utils.js +10 -29
- package/lib/cjs/utils/Event.js +2 -21
- package/lib/cjs/utils/FocusHandle.d.ts +1 -1
- package/lib/cjs/utils/FocusHandle.js +6 -35
- package/lib/cjs/utils/Logger.js +0 -21
- package/lib/cjs/utils/Store.js +0 -10
- package/lib/cjs/utils/a11y.js +18 -43
- package/lib/cjs/utils/array.d.ts +1 -1
- package/lib/cjs/utils/array.js +0 -7
- package/lib/cjs/utils/arrayMove.js +0 -1
- package/lib/cjs/utils/classnames.js +0 -12
- package/lib/cjs/utils/date-fns-extra.js +0 -35
- package/lib/cjs/utils/dom.d.ts +1 -1
- package/lib/cjs/utils/dom.js +0 -13
- package/lib/cjs/utils/function.js +0 -1
- package/lib/cjs/utils/getDataAttr.js +0 -2
- package/lib/cjs/utils/getHighlight.js +5 -26
- package/lib/cjs/utils/getMotionObjFromProps.js +0 -12
- package/lib/cjs/utils/index.js +0 -4
- package/lib/cjs/utils/isBothNaN.js +0 -2
- package/lib/cjs/utils/isElement.js +0 -1
- package/lib/cjs/utils/isEnterPress.js +0 -5
- package/lib/cjs/utils/isEscPress.js +0 -5
- package/lib/cjs/utils/isNullOrUndefined.js +0 -1
- package/lib/cjs/utils/isNumber.js +0 -1
- package/lib/cjs/utils/isObject.js +0 -1
- package/lib/cjs/utils/isPromise.js +0 -3
- package/lib/cjs/utils/isString.js +0 -1
- package/lib/cjs/utils/keyCode.js +0 -105
- package/lib/cjs/utils/log.js +0 -5
- package/lib/cjs/utils/number.js +0 -2
- package/lib/cjs/utils/object.d.ts +4 -4
- package/lib/cjs/utils/object.js +12 -34
- package/lib/cjs/utils/set.js +0 -8
- package/lib/cjs/utils/shallowEqualObjects.js +0 -7
- package/lib/cjs/utils/touchPolyfill.js +0 -7
- package/lib/cjs/utils/type.d.ts +3 -3
- package/lib/cjs/utils/uuid.js +2 -9
- package/lib/cjs/utils/warning.js +0 -1
- package/lib/es/anchor/foundation.js +10 -66
- package/lib/es/anchor/linkFoundation.js +4 -12
- package/lib/es/autoComplete/foundation.d.ts +1 -1
- package/lib/es/autoComplete/foundation.js +24 -132
- package/lib/es/autoComplete/optionFoundation.js +4 -10
- package/lib/es/avatar/foundation.js +0 -12
- package/lib/es/backtop/foundation.d.ts +2 -2
- package/lib/es/backtop/foundation.js +0 -16
- package/lib/es/banner/foundation.js +0 -3
- package/lib/es/base/constants.js +2 -2
- package/lib/es/base/foundation.d.ts +1 -1
- package/lib/es/base/foundation.js +11 -44
- package/lib/es/breadcrumb/foundation.js +0 -7
- package/lib/es/breadcrumb/itemFoundation.js +0 -3
- package/lib/es/calendar/calendar.css +2 -2
- package/lib/es/calendar/calendar.scss +1 -1
- package/lib/es/calendar/eventUtil.d.ts +1 -1
- package/lib/es/calendar/eventUtil.js +2 -36
- package/lib/es/calendar/foundation.d.ts +2 -2
- package/lib/es/calendar/foundation.js +28 -117
- package/lib/es/carousel/foundation.js +2 -47
- package/lib/es/cascader/constants.js +0 -1
- package/lib/es/cascader/foundation.d.ts +4 -4
- package/lib/es/cascader/foundation.js +30 -226
- package/lib/es/cascader/util.js +6 -15
- package/lib/es/checkbox/checkboxFoundation.js +2 -34
- package/lib/es/checkbox/checkboxGroupFoundation.js +2 -20
- package/lib/es/collapse/foundation.d.ts +1 -1
- package/lib/es/collapse/foundation.js +2 -9
- package/lib/es/collapsible/foundation.js +0 -7
- package/lib/es/datePicker/_utils/formatter.js +4 -8
- package/lib/es/datePicker/_utils/getDayOfWeek.d.ts +1 -1
- package/lib/es/datePicker/_utils/getDayOfWeek.js +0 -3
- package/lib/es/datePicker/_utils/getDefaultFormatToken.js +0 -2
- package/lib/es/datePicker/_utils/getDefaultPickerDate.d.ts +1 -1
- package/lib/es/datePicker/_utils/getDefaultPickerDate.js +0 -10
- package/lib/es/datePicker/_utils/getFullDateOffset.js +0 -3
- package/lib/es/datePicker/_utils/getInsetInputFormatToken.js +0 -4
- package/lib/es/datePicker/_utils/getInsetInputValueFromInsetInputStr.js +0 -5
- package/lib/es/datePicker/_utils/getMonthTable.d.ts +1 -1
- package/lib/es/datePicker/_utils/getMonthTable.js +4 -14
- package/lib/es/datePicker/_utils/getMonthsInYear.js +0 -1
- package/lib/es/datePicker/_utils/getYears.d.ts +1 -1
- package/lib/es/datePicker/_utils/getYears.js +9 -6
- package/lib/es/datePicker/_utils/isBetween.js +0 -1
- package/lib/es/datePicker/_utils/parser.js +0 -8
- package/lib/es/datePicker/foundation.d.ts +25 -25
- package/lib/es/datePicker/foundation.js +22 -318
- package/lib/es/datePicker/inputFoundation.d.ts +3 -3
- package/lib/es/datePicker/inputFoundation.js +5 -74
- package/lib/es/datePicker/monthFoundation.d.ts +1 -1
- package/lib/es/datePicker/monthFoundation.js +4 -22
- package/lib/es/datePicker/monthsGridFoundation.d.ts +5 -4
- package/lib/es/datePicker/monthsGridFoundation.js +42 -222
- package/lib/es/datePicker/yearAndMonthFoundation.d.ts +3 -1
- package/lib/es/datePicker/yearAndMonthFoundation.js +12 -36
- package/lib/es/dropdown/foundation.js +4 -18
- package/lib/es/dropdown/menuFoundation.js +8 -22
- package/lib/es/form/foundation.js +74 -195
- package/lib/es/form/interface.d.ts +5 -5
- package/lib/es/form/utils.js +47 -70
- package/lib/es/image/imageFoundation.js +4 -13
- package/lib/es/image/previewFooterFoundation.js +0 -9
- package/lib/es/image/previewFoundation.js +0 -7
- package/lib/es/image/previewImageFoundation.js +6 -72
- package/lib/es/image/previewInnerFoundation.js +12 -70
- package/lib/es/image/utils.js +0 -6
- package/lib/es/input/foundation.js +17 -93
- package/lib/es/input/textareaFoundation.js +20 -75
- package/lib/es/input/util/calculateNodeHeight.js +6 -18
- package/lib/es/input/util/getSizingData.js +7 -11
- package/lib/es/inputNumber/foundation.js +28 -183
- package/lib/es/modal/modalContentFoundation.js +0 -15
- package/lib/es/modal/modalFoundation.d.ts +2 -2
- package/lib/es/modal/modalFoundation.js +2 -17
- package/lib/es/navigation/NavItem.js +0 -6
- package/lib/es/navigation/constants.js +1 -1
- package/lib/es/navigation/foundation.js +2 -60
- package/lib/es/navigation/itemFoundation.d.ts +0 -2
- package/lib/es/navigation/itemFoundation.js +3 -18
- package/lib/es/navigation/navigation.css +7 -77
- package/lib/es/navigation/navigation.scss +7 -119
- package/lib/es/navigation/subNavFoundation.d.ts +0 -2
- package/lib/es/navigation/subNavFoundation.js +4 -36
- package/lib/es/notification/constants.js +1 -1
- package/lib/es/notification/notificationFoundation.d.ts +3 -3
- package/lib/es/notification/notificationFoundation.js +0 -11
- package/lib/es/notification/notificationListFoundation.js +6 -13
- package/lib/es/overflowList/foundation.js +11 -37
- package/lib/es/pagination/foundation.d.ts +3 -3
- package/lib/es/pagination/foundation.js +20 -87
- package/lib/es/popconfirm/popconfirmFoundation.js +1 -16
- package/lib/es/progress/generates.d.ts +2 -2
- package/lib/es/progress/generates.js +19 -59
- package/lib/es/radio/radioFoundation.js +0 -9
- package/lib/es/radio/radioGroupFoundation.js +4 -19
- package/lib/es/radio/radioInnerFoundation.js +2 -15
- package/lib/es/rating/foundation.js +10 -54
- package/lib/es/scrollList/itemFoundation.js +8 -60
- package/lib/es/scrollList/scrollTo.js +2 -4
- package/lib/es/select/foundation.d.ts +2 -2
- package/lib/es/select/foundation.js +122 -411
- package/lib/es/select/optionFoundation.js +4 -10
- package/lib/es/sideSheet/sideSheetFoundation.js +0 -12
- package/lib/es/slider/foundation.d.ts +1 -1
- package/lib/es/slider/foundation.js +24 -197
- package/lib/es/spin/foundation.js +3 -11
- package/lib/es/steps/bacisSteps.scss +238 -287
- package/lib/es/steps/fillSteps.scss +142 -153
- package/lib/es/steps/navSteps.scss +40 -61
- package/lib/es/steps/steps.css +17 -381
- package/lib/es/switch/foundation.js +2 -13
- package/lib/es/table/bodyFoundation.js +2 -25
- package/lib/es/table/cellFoundation.js +0 -1
- package/lib/es/table/constants.js +6 -6
- package/lib/es/table/foundation.d.ts +17 -14
- package/lib/es/table/foundation.js +72 -309
- package/lib/es/table/table.css +6 -0
- package/lib/es/table/table.scss +12 -0
- package/lib/es/table/tableRowFoundation.js +2 -9
- package/lib/es/table/tableSelectionCellFoundation.js +0 -2
- package/lib/es/table/utils.d.ts +2 -2
- package/lib/es/table/utils.js +5 -81
- package/lib/es/tabs/foundation.js +2 -35
- package/lib/es/tabs/tabs.css +14 -14
- package/lib/es/tabs/tabs.scss +16 -14
- package/lib/es/tagInput/foundation.d.ts +4 -4
- package/lib/es/tagInput/foundation.js +4 -84
- package/lib/es/tagInput/utils/getSplitedArray.js +0 -7
- package/lib/es/timePicker/ComboxFoundation.js +4 -30
- package/lib/es/timePicker/foundation.d.ts +2 -2
- package/lib/es/timePicker/foundation.js +7 -95
- package/lib/es/timePicker/inputFoundation.js +6 -22
- package/lib/es/timePicker/utils/index.js +6 -25
- package/lib/es/timePicker/utils/localeDate.js +0 -8
- package/lib/es/timeline/timeline.css +0 -36
- package/lib/es/timeline/timeline.scss +46 -96
- package/lib/es/toast/constants.js +1 -1
- package/lib/es/toast/toastFoundation.d.ts +3 -3
- package/lib/es/toast/toastFoundation.js +0 -9
- package/lib/es/toast/toastListFoundation.js +4 -18
- package/lib/es/tooltip/foundation.d.ts +1 -1
- package/lib/es/tooltip/foundation.js +63 -288
- package/lib/es/transfer/foundation.d.ts +1 -1
- package/lib/es/transfer/foundation.js +6 -62
- package/lib/es/transfer/transferUtils.js +5 -21
- package/lib/es/tree/foundation.d.ts +3 -3
- package/lib/es/tree/foundation.js +34 -143
- package/lib/es/tree/treeUtil.js +54 -139
- package/lib/es/treeSelect/foundation.d.ts +7 -7
- package/lib/es/treeSelect/foundation.js +20 -179
- package/lib/es/typography/constants.d.ts +1 -0
- package/lib/es/typography/constants.js +1 -0
- package/lib/es/typography/formatNumeral.d.ts +3 -3
- package/lib/es/typography/formatNumeral.js +16 -29
- package/lib/es/typography/typography.css +120 -0
- package/lib/es/typography/typography.scss +131 -6
- package/lib/es/typography/variables.scss +48 -0
- package/lib/es/upload/foundation.d.ts +5 -5
- package/lib/es/upload/foundation.js +36 -238
- package/lib/es/upload/utils.js +10 -24
- package/lib/es/utils/Event.js +2 -17
- package/lib/es/utils/FocusHandle.d.ts +1 -1
- package/lib/es/utils/FocusHandle.js +6 -32
- package/lib/es/utils/Logger.js +0 -20
- package/lib/es/utils/Store.js +0 -9
- package/lib/es/utils/a11y.js +18 -31
- package/lib/es/utils/array.d.ts +1 -1
- package/lib/es/utils/array.js +0 -5
- package/lib/es/utils/classnames.js +0 -10
- package/lib/es/utils/date-fns-extra.js +0 -27
- package/lib/es/utils/dom.d.ts +1 -1
- package/lib/es/utils/dom.js +0 -9
- package/lib/es/utils/getDataAttr.js +0 -1
- package/lib/es/utils/getHighlight.js +5 -26
- package/lib/es/utils/getMotionObjFromProps.js +0 -8
- package/lib/es/utils/isBothNaN.js +0 -1
- package/lib/es/utils/isEnterPress.js +0 -2
- package/lib/es/utils/isEscPress.js +0 -2
- package/lib/es/utils/keyCode.js +0 -104
- package/lib/es/utils/log.js +0 -3
- package/lib/es/utils/object.d.ts +4 -4
- package/lib/es/utils/object.js +12 -28
- package/lib/es/utils/set.js +0 -5
- package/lib/es/utils/shallowEqualObjects.js +0 -6
- package/lib/es/utils/touchPolyfill.js +0 -5
- package/lib/es/utils/type.d.ts +3 -3
- package/lib/es/utils/uuid.js +2 -8
- package/navigation/itemFoundation.ts +1 -3
- package/navigation/navigation.scss +7 -119
- package/navigation/subNavFoundation.ts +1 -3
- package/overflowList/foundation.ts +4 -4
- package/package.json +2 -2
- package/steps/bacisSteps.scss +238 -287
- package/steps/fillSteps.scss +142 -153
- package/steps/navSteps.scss +40 -61
- package/table/foundation.ts +8 -10
- package/table/table.scss +12 -0
- package/tabs/tabs.scss +16 -14
- package/timePicker/foundation.ts +4 -6
- package/timeline/timeline.scss +46 -96
- package/typography/constants.ts +1 -0
- package/typography/typography.scss +131 -6
- package/typography/variables.scss +48 -0
- package/upload/foundation.ts +8 -8
|
@@ -4,17 +4,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _isUndefined2 = _interopRequireDefault(require("lodash/isUndefined"));
|
|
9
|
-
|
|
10
8
|
var _throttle2 = _interopRequireDefault(require("lodash/throttle"));
|
|
11
|
-
|
|
12
9
|
var _foundation = _interopRequireDefault(require("../base/foundation"));
|
|
13
|
-
|
|
14
10
|
var _a11y = require("../utils/a11y");
|
|
15
|
-
|
|
16
11
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
-
|
|
18
12
|
const DefaultDOMRect = {
|
|
19
13
|
bottom: 0,
|
|
20
14
|
height: 0,
|
|
@@ -26,60 +20,46 @@ const DefaultDOMRect = {
|
|
|
26
20
|
y: 0,
|
|
27
21
|
toJSON: () => ({})
|
|
28
22
|
};
|
|
29
|
-
|
|
30
23
|
class PreviewImageFoundation extends _foundation.default {
|
|
31
24
|
constructor(adapter) {
|
|
32
25
|
super(Object.assign({}, adapter));
|
|
33
|
-
|
|
34
26
|
this._isImageVertical = () => this.getProp("rotation") % 180 !== 0;
|
|
35
|
-
|
|
36
27
|
this._getImageBounds = () => {
|
|
37
28
|
const imageDOM = this._adapter.getImage();
|
|
38
|
-
|
|
39
29
|
if (imageDOM) {
|
|
40
30
|
return imageDOM.getBoundingClientRect();
|
|
41
31
|
}
|
|
42
|
-
|
|
43
32
|
return DefaultDOMRect;
|
|
44
33
|
};
|
|
45
|
-
|
|
46
34
|
this._getContainerBounds = () => {
|
|
47
35
|
const containerDOM = this._adapter.getContainer();
|
|
48
|
-
|
|
49
36
|
if (containerDOM) {
|
|
50
37
|
return containerDOM.getBoundingClientRect();
|
|
51
38
|
}
|
|
52
|
-
|
|
53
39
|
return DefaultDOMRect;
|
|
54
40
|
};
|
|
55
|
-
|
|
56
41
|
this._getOffset = e => {
|
|
57
42
|
const {
|
|
58
43
|
left,
|
|
59
44
|
top
|
|
60
45
|
} = this._getImageBounds();
|
|
61
|
-
|
|
62
46
|
return {
|
|
63
47
|
x: e.clientX - left,
|
|
64
48
|
y: e.clientY - top
|
|
65
49
|
};
|
|
66
50
|
};
|
|
67
|
-
|
|
68
51
|
this.setLoading = loading => {
|
|
69
52
|
this._adapter.setLoading(loading);
|
|
70
53
|
};
|
|
71
|
-
|
|
72
54
|
this.handleWindowResize = () => {
|
|
73
55
|
const {
|
|
74
56
|
ratio,
|
|
75
57
|
setRatio
|
|
76
58
|
} = this.getProps();
|
|
77
|
-
|
|
78
59
|
const {
|
|
79
60
|
originImageWidth,
|
|
80
61
|
originImageHeight
|
|
81
62
|
} = this._adapter.getOriginImageSize();
|
|
82
|
-
|
|
83
63
|
if (originImageWidth && originImageHeight) {
|
|
84
64
|
if (ratio !== "adaptation") {
|
|
85
65
|
setRatio("adaptation");
|
|
@@ -88,32 +68,27 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
88
68
|
}
|
|
89
69
|
}
|
|
90
70
|
};
|
|
91
|
-
|
|
92
71
|
this.handleLoad = e => {
|
|
93
72
|
if (e.target) {
|
|
94
73
|
const {
|
|
95
74
|
width: w,
|
|
96
75
|
height: h
|
|
97
76
|
} = e.target;
|
|
98
|
-
|
|
99
77
|
this._adapter.setOriginImageSize({
|
|
100
78
|
originImageWidth: w,
|
|
101
79
|
originImageHeight: h
|
|
102
80
|
});
|
|
103
|
-
|
|
104
81
|
this.setState({
|
|
105
82
|
loading: false
|
|
106
83
|
});
|
|
107
84
|
this.handleResizeImage();
|
|
108
85
|
}
|
|
109
|
-
|
|
110
86
|
const {
|
|
111
87
|
src,
|
|
112
88
|
onLoad
|
|
113
89
|
} = this.getProps();
|
|
114
90
|
onLoad && onLoad(src);
|
|
115
91
|
};
|
|
116
|
-
|
|
117
92
|
this.handleError = e => {
|
|
118
93
|
const {
|
|
119
94
|
onError,
|
|
@@ -124,43 +99,33 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
124
99
|
});
|
|
125
100
|
onError && onError(src);
|
|
126
101
|
};
|
|
127
|
-
|
|
128
102
|
this.handleResizeImage = () => {
|
|
129
103
|
const horizontal = !this._isImageVertical();
|
|
130
|
-
|
|
131
104
|
const {
|
|
132
105
|
originImageWidth,
|
|
133
106
|
originImageHeight
|
|
134
107
|
} = this._adapter.getOriginImageSize();
|
|
135
|
-
|
|
136
108
|
const imgWidth = horizontal ? originImageWidth : originImageHeight;
|
|
137
109
|
const imgHeight = horizontal ? originImageHeight : originImageWidth;
|
|
138
110
|
const {
|
|
139
111
|
onZoom
|
|
140
112
|
} = this.getProps();
|
|
141
|
-
|
|
142
113
|
const containerDOM = this._adapter.getContainer();
|
|
143
|
-
|
|
144
114
|
if (containerDOM) {
|
|
145
115
|
const {
|
|
146
116
|
width: containerWidth,
|
|
147
117
|
height: containerHeight
|
|
148
118
|
} = this._getContainerBounds();
|
|
149
|
-
|
|
150
119
|
const reservedWidth = containerWidth - 80;
|
|
151
120
|
const reservedHeight = containerHeight - 80;
|
|
152
|
-
|
|
153
121
|
const _zoom = Number(Math.min(reservedWidth / imgWidth, reservedHeight / imgHeight).toFixed(2));
|
|
154
|
-
|
|
155
122
|
onZoom(_zoom);
|
|
156
123
|
}
|
|
157
124
|
};
|
|
158
|
-
|
|
159
125
|
this.handleRightClickImage = e => {
|
|
160
126
|
const {
|
|
161
127
|
disableDownload
|
|
162
128
|
} = this.getProps();
|
|
163
|
-
|
|
164
129
|
if (disableDownload) {
|
|
165
130
|
e.preventDefault();
|
|
166
131
|
e.stopPropagation();
|
|
@@ -168,15 +133,13 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
168
133
|
} else {
|
|
169
134
|
return true;
|
|
170
135
|
}
|
|
171
|
-
};
|
|
172
|
-
|
|
173
|
-
|
|
136
|
+
};
|
|
137
|
+
// e: WheelEvent<HTMLImageElement>
|
|
174
138
|
this.handleWheel = e => {
|
|
175
139
|
this.onWheel(e);
|
|
176
140
|
(0, _a11y.handlePrevent)(e);
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
|
|
141
|
+
};
|
|
142
|
+
// e: WheelEvent<HTMLImageElement>
|
|
180
143
|
this.onWheel = (0, _throttle2.default)(e => {
|
|
181
144
|
const {
|
|
182
145
|
onZoom,
|
|
@@ -187,9 +150,7 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
187
150
|
const {
|
|
188
151
|
currZoom
|
|
189
152
|
} = this.getStates();
|
|
190
|
-
|
|
191
153
|
let _zoom;
|
|
192
|
-
|
|
193
154
|
if (e.deltaY < 0) {
|
|
194
155
|
/* zoom in */
|
|
195
156
|
if (currZoom + zoomStep <= maxZoom) {
|
|
@@ -201,12 +162,10 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
201
162
|
_zoom = Number((currZoom - zoomStep).toFixed(2));
|
|
202
163
|
}
|
|
203
164
|
}
|
|
204
|
-
|
|
205
165
|
if (!(0, _isUndefined2.default)(_zoom)) {
|
|
206
166
|
onZoom(_zoom);
|
|
207
167
|
}
|
|
208
168
|
}, 50);
|
|
209
|
-
|
|
210
169
|
this.calcCanDragDirection = () => {
|
|
211
170
|
const {
|
|
212
171
|
width,
|
|
@@ -215,54 +174,43 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
215
174
|
const {
|
|
216
175
|
rotation
|
|
217
176
|
} = this.getProps();
|
|
218
|
-
|
|
219
177
|
const {
|
|
220
178
|
width: containerWidth,
|
|
221
179
|
height: containerHeight
|
|
222
180
|
} = this._getContainerBounds();
|
|
223
|
-
|
|
224
181
|
let canDragHorizontal = width > containerWidth;
|
|
225
182
|
let canDragVertical = height > containerHeight;
|
|
226
|
-
|
|
227
183
|
if (this._isImageVertical()) {
|
|
228
184
|
canDragHorizontal = height > containerWidth;
|
|
229
185
|
canDragVertical = width > containerHeight;
|
|
230
186
|
}
|
|
231
|
-
|
|
232
187
|
return {
|
|
233
188
|
canDragVertical,
|
|
234
189
|
canDragHorizontal
|
|
235
190
|
};
|
|
236
191
|
};
|
|
237
|
-
|
|
238
192
|
this.handleZoomChange = (newZoom, e) => {
|
|
239
193
|
const imageDOM = this._adapter.getImage();
|
|
240
|
-
|
|
241
194
|
const {
|
|
242
195
|
originImageWidth,
|
|
243
196
|
originImageHeight
|
|
244
197
|
} = this._adapter.getOriginImageSize();
|
|
245
|
-
|
|
246
198
|
const {
|
|
247
199
|
canDragVertical,
|
|
248
200
|
canDragHorizontal
|
|
249
201
|
} = this.calcCanDragDirection();
|
|
250
202
|
const canDrag = canDragVertical || canDragHorizontal;
|
|
251
|
-
|
|
252
203
|
const {
|
|
253
204
|
width: containerWidth,
|
|
254
205
|
height: containerHeight
|
|
255
206
|
} = this._getContainerBounds();
|
|
256
|
-
|
|
257
207
|
const newWidth = Math.floor(originImageWidth * newZoom);
|
|
258
|
-
const newHeight = Math.floor(originImageHeight * newZoom);
|
|
259
|
-
|
|
208
|
+
const newHeight = Math.floor(originImageHeight * newZoom);
|
|
209
|
+
// debugger;
|
|
260
210
|
let _offset;
|
|
261
|
-
|
|
262
211
|
const horizontal = !this._isImageVertical();
|
|
263
212
|
let newTop = 0;
|
|
264
213
|
let newLeft = 0;
|
|
265
|
-
|
|
266
214
|
if (horizontal) {
|
|
267
215
|
_offset = {
|
|
268
216
|
x: 0.5 * (containerWidth - newWidth),
|
|
@@ -278,7 +226,6 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
278
226
|
newLeft = _offset.x - (newWidth - newHeight) / 2;
|
|
279
227
|
newTop = _offset.y + (newWidth - newHeight) / 2;
|
|
280
228
|
}
|
|
281
|
-
|
|
282
229
|
this.setState({
|
|
283
230
|
width: newWidth,
|
|
284
231
|
height: newHeight,
|
|
@@ -287,79 +234,63 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
287
234
|
top: newTop,
|
|
288
235
|
currZoom: newZoom
|
|
289
236
|
});
|
|
290
|
-
|
|
291
237
|
if (imageDOM) {
|
|
292
238
|
this._adapter.setImageCursor(canDrag);
|
|
293
239
|
}
|
|
294
240
|
};
|
|
295
|
-
|
|
296
241
|
this.calcExtremeBounds = () => {
|
|
297
242
|
const {
|
|
298
243
|
width,
|
|
299
244
|
height
|
|
300
245
|
} = this.getStates();
|
|
301
|
-
|
|
302
246
|
const {
|
|
303
247
|
width: containerWidth,
|
|
304
248
|
height: containerHeight
|
|
305
249
|
} = this._getContainerBounds();
|
|
306
|
-
|
|
307
250
|
let extremeLeft = containerWidth - width;
|
|
308
251
|
let extremeTop = containerHeight - height;
|
|
309
|
-
|
|
310
252
|
if (this._isImageVertical()) {
|
|
311
253
|
extremeLeft = containerWidth - height;
|
|
312
254
|
extremeTop = containerHeight - width;
|
|
313
255
|
}
|
|
314
|
-
|
|
315
256
|
return {
|
|
316
257
|
left: extremeLeft,
|
|
317
258
|
top: extremeTop
|
|
318
259
|
};
|
|
319
260
|
};
|
|
320
|
-
|
|
321
261
|
this.handleMoveImage = e => {
|
|
322
262
|
const {
|
|
323
263
|
offset,
|
|
324
264
|
width,
|
|
325
265
|
height
|
|
326
266
|
} = this.getStates();
|
|
327
|
-
|
|
328
267
|
const startMouseMove = this._adapter.getMouseMove();
|
|
329
|
-
|
|
330
268
|
const startMouseOffset = this._adapter.getMouseOffset();
|
|
331
|
-
|
|
332
269
|
const {
|
|
333
270
|
canDragVertical,
|
|
334
271
|
canDragHorizontal
|
|
335
272
|
} = this.calcCanDragDirection();
|
|
336
|
-
|
|
337
273
|
if (startMouseMove && (canDragVertical || canDragHorizontal)) {
|
|
338
274
|
const {
|
|
339
275
|
clientX,
|
|
340
276
|
clientY
|
|
341
277
|
} = e;
|
|
342
|
-
|
|
343
278
|
const {
|
|
344
279
|
left: containerLeft,
|
|
345
280
|
top: containerTop
|
|
346
281
|
} = this._getContainerBounds();
|
|
347
|
-
|
|
348
282
|
const {
|
|
349
283
|
left: extremeLeft,
|
|
350
284
|
top: extremeTop
|
|
351
285
|
} = this.calcExtremeBounds();
|
|
352
286
|
let newX = canDragHorizontal ? clientX - containerLeft - startMouseOffset.x : offset.x;
|
|
353
287
|
let newY = canDragVertical ? clientY - containerTop - startMouseOffset.y : offset.y;
|
|
354
|
-
|
|
355
288
|
if (canDragHorizontal) {
|
|
356
289
|
newX = newX > 0 ? 0 : newX < extremeLeft ? extremeLeft : newX;
|
|
357
290
|
}
|
|
358
|
-
|
|
359
291
|
if (canDragVertical) {
|
|
360
292
|
newY = newY > 0 ? 0 : newY < extremeTop ? extremeTop : newY;
|
|
361
293
|
}
|
|
362
|
-
|
|
363
294
|
const _offset = {
|
|
364
295
|
x: newX,
|
|
365
296
|
y: newY
|
|
@@ -371,18 +302,13 @@ class PreviewImageFoundation extends _foundation.default {
|
|
|
371
302
|
});
|
|
372
303
|
}
|
|
373
304
|
};
|
|
374
|
-
|
|
375
305
|
this.handleImageMouseDown = e => {
|
|
376
306
|
this._adapter.setStartMouseOffset(this._getOffset(e));
|
|
377
|
-
|
|
378
307
|
this._adapter.setStartMouseMove(true);
|
|
379
308
|
};
|
|
380
|
-
|
|
381
309
|
this.handleImageMouseUp = () => {
|
|
382
310
|
this._adapter.setStartMouseMove(false);
|
|
383
311
|
};
|
|
384
312
|
}
|
|
385
|
-
|
|
386
313
|
}
|
|
387
|
-
|
|
388
314
|
exports.default = PreviewImageFoundation;
|
|
@@ -4,61 +4,45 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
7
|
var _foundation = _interopRequireDefault(require("../base/foundation"));
|
|
9
|
-
|
|
10
8
|
var _keyCode = _interopRequireDefault(require("../utils/keyCode"));
|
|
11
|
-
|
|
12
9
|
var _utils = require("./utils");
|
|
13
|
-
|
|
14
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
-
|
|
16
11
|
const NOT_CLOSE_TARGETS = ["icon", "footer"];
|
|
17
12
|
const STOP_CLOSE_TARGET = ["icon", "footer", "header"];
|
|
18
|
-
|
|
19
13
|
class PreviewInnerFoundation extends _foundation.default {
|
|
20
14
|
constructor(adapter) {
|
|
21
15
|
super(Object.assign({}, adapter));
|
|
22
|
-
|
|
23
16
|
this.handleViewVisibleChange = () => {
|
|
24
17
|
const nowTime = new Date().getTime();
|
|
25
|
-
|
|
26
18
|
const mouseActiveTime = this._adapter.getMouseActiveTime();
|
|
27
|
-
|
|
28
19
|
const stopTiming = this._adapter.getStopTiming();
|
|
29
|
-
|
|
30
20
|
const {
|
|
31
21
|
viewerVisibleDelay
|
|
32
22
|
} = this.getProps();
|
|
33
23
|
const {
|
|
34
24
|
viewerVisible
|
|
35
25
|
} = this.getStates();
|
|
36
|
-
|
|
37
26
|
if (nowTime - mouseActiveTime > viewerVisibleDelay && !stopTiming) {
|
|
38
27
|
viewerVisible && this.setState({
|
|
39
28
|
viewerVisible: false
|
|
40
29
|
});
|
|
41
30
|
}
|
|
42
31
|
};
|
|
43
|
-
|
|
44
32
|
this.handleMouseMoveEvent = (e, event) => {
|
|
45
33
|
const isTarget = (0, _utils.isTargetEmit)(e, STOP_CLOSE_TARGET);
|
|
46
|
-
|
|
47
34
|
if (isTarget && event === "over") {
|
|
48
35
|
this._adapter.setStopTiming(true);
|
|
49
36
|
} else if (isTarget && event === "out") {
|
|
50
37
|
this._adapter.setStopTiming(false);
|
|
51
38
|
}
|
|
52
39
|
};
|
|
53
|
-
|
|
54
40
|
this.handleMouseMove = e => {
|
|
55
41
|
this._adapter.setMouseActiveTime(new Date().getTime());
|
|
56
|
-
|
|
57
42
|
this.setState({
|
|
58
43
|
viewerVisible: true
|
|
59
44
|
});
|
|
60
45
|
};
|
|
61
|
-
|
|
62
46
|
this.handleMouseUp = e => {
|
|
63
47
|
const {
|
|
64
48
|
maskClosable
|
|
@@ -68,50 +52,39 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
68
52
|
clientX,
|
|
69
53
|
clientY
|
|
70
54
|
} = e;
|
|
71
|
-
|
|
72
55
|
const {
|
|
73
56
|
x,
|
|
74
57
|
y
|
|
75
|
-
} = this._adapter.getStartMouseDown();
|
|
58
|
+
} = this._adapter.getStartMouseDown();
|
|
59
|
+
// 对鼠标移动做容错处理,当 x 和 y 方向在 mouseUp 的时候移动距离都小于等于 5px 时候就可以关闭预览
|
|
76
60
|
// Error-tolerant processing of mouse movement, when the movement distance in the x and y directions is less than or equal to 5px in mouseUp, the preview can be closed
|
|
77
61
|
// 不做容错处理的话,直接用 clientX !== x || y !== clientY 做判断,鼠标在用户点击时候无意识的轻微移动无法关闭预览,不符合用户预期
|
|
78
62
|
// If you do not do fault-tolerant processing, but directly use clientX !== x || y !== clientY to make judgments, the slight movement of the mouse when the user clicks will not be able to close the preview, which does not meet the user's expectations.
|
|
79
|
-
|
|
80
|
-
|
|
81
63
|
if (Math.abs(clientX - x) > 5 || Math.abs(y - clientY) > 5) {
|
|
82
64
|
couldClose = false;
|
|
83
65
|
}
|
|
84
|
-
|
|
85
66
|
if (couldClose && maskClosable) {
|
|
86
67
|
this.handlePreviewClose();
|
|
87
68
|
}
|
|
88
69
|
};
|
|
89
|
-
|
|
90
70
|
this.handleMouseDown = e => {
|
|
91
71
|
const {
|
|
92
72
|
clientX,
|
|
93
73
|
clientY
|
|
94
74
|
} = e;
|
|
95
|
-
|
|
96
75
|
this._adapter.setStartMouseDown(clientX, clientY);
|
|
97
76
|
};
|
|
98
|
-
|
|
99
77
|
this.handleKeyDown = e => {
|
|
100
78
|
const {
|
|
101
79
|
closeOnEsc
|
|
102
80
|
} = this.getProps();
|
|
103
|
-
|
|
104
81
|
if (closeOnEsc && e.keyCode === _keyCode.default.ESC) {
|
|
105
82
|
e.stopPropagation();
|
|
106
|
-
|
|
107
83
|
this._adapter.notifyVisibleChange(false);
|
|
108
|
-
|
|
109
84
|
this._adapter.notifyClose();
|
|
110
|
-
|
|
111
85
|
return;
|
|
112
86
|
}
|
|
113
87
|
};
|
|
114
|
-
|
|
115
88
|
this.handleSwitchImage = direction => {
|
|
116
89
|
const step = direction === "prev" ? -1 : 1;
|
|
117
90
|
const {
|
|
@@ -120,11 +93,9 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
120
93
|
} = this.getStates();
|
|
121
94
|
const srcLength = imgSrc.length;
|
|
122
95
|
const newIndex = (currentIndexInState + step + srcLength) % srcLength;
|
|
123
|
-
|
|
124
96
|
if ("currentIndex" in this.getProps()) {
|
|
125
97
|
if (this._adapter.getIsInGroup()) {
|
|
126
98
|
const setCurrentIndex = this._adapter.getContext("setCurrentIndex");
|
|
127
|
-
|
|
128
99
|
setCurrentIndex(newIndex);
|
|
129
100
|
}
|
|
130
101
|
} else {
|
|
@@ -132,17 +103,13 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
132
103
|
currentIndex: newIndex
|
|
133
104
|
});
|
|
134
105
|
}
|
|
135
|
-
|
|
136
106
|
this._adapter.notifyChange(newIndex, direction);
|
|
137
|
-
|
|
138
107
|
this.setState({
|
|
139
108
|
direction,
|
|
140
109
|
rotation: 0
|
|
141
110
|
});
|
|
142
|
-
|
|
143
111
|
this._adapter.notifyRotateChange(0);
|
|
144
112
|
};
|
|
145
|
-
|
|
146
113
|
this.handleDownload = () => {
|
|
147
114
|
const {
|
|
148
115
|
currentIndex,
|
|
@@ -151,24 +118,18 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
151
118
|
const downloadSrc = imgSrc[currentIndex];
|
|
152
119
|
const downloadName = downloadSrc.slice(downloadSrc.lastIndexOf("/") + 1);
|
|
153
120
|
(0, _utils.downloadImage)(downloadSrc, downloadName);
|
|
154
|
-
|
|
155
121
|
this._adapter.notifyDownload(downloadSrc, currentIndex);
|
|
156
122
|
};
|
|
157
|
-
|
|
158
123
|
this.handlePreviewClose = () => {
|
|
159
124
|
this._adapter.notifyVisibleChange(false);
|
|
160
|
-
|
|
161
125
|
this._adapter.notifyClose();
|
|
162
126
|
};
|
|
163
|
-
|
|
164
127
|
this.handleAdjustRatio = type => {
|
|
165
128
|
this.setState({
|
|
166
129
|
ratio: type
|
|
167
130
|
});
|
|
168
|
-
|
|
169
131
|
this._adapter.notifyRatioChange(type);
|
|
170
132
|
};
|
|
171
|
-
|
|
172
133
|
this.handleRotateImage = direction => {
|
|
173
134
|
const {
|
|
174
135
|
rotation
|
|
@@ -177,21 +138,18 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
177
138
|
this.setState({
|
|
178
139
|
rotation: newRotation
|
|
179
140
|
});
|
|
180
|
-
|
|
181
141
|
this._adapter.notifyRotateChange(newRotation);
|
|
182
142
|
};
|
|
183
|
-
|
|
184
143
|
this.handleZoomImage = newZoom => {
|
|
185
144
|
const {
|
|
186
145
|
zoom
|
|
187
146
|
} = this.getStates();
|
|
188
|
-
|
|
189
147
|
this._adapter.notifyZoom(newZoom, newZoom > zoom);
|
|
190
|
-
|
|
191
148
|
this.setState({
|
|
192
149
|
zoom: newZoom
|
|
193
150
|
});
|
|
194
|
-
};
|
|
151
|
+
};
|
|
152
|
+
// 当 visible 改变之后,预览组件完成首张图片加载后,启动预加载
|
|
195
153
|
// 如: 1,2,3,4,5,6,7,8张图片, 点击第 4 张图片,preLoadGap 为 2
|
|
196
154
|
// 当 visible 从 false 变为 true ,首先加载第 4 张图片,当第 4 张图片加载完成后,
|
|
197
155
|
// 再按照 5,3,6,2的顺序预先加载这几张图片
|
|
@@ -199,8 +157,6 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
199
157
|
// Such as: 1, 2, 3, 4, 5, 6, 7, 8 pictures, click the 4th picture, preLoadGap is 2
|
|
200
158
|
// When visible changes from false to true , load the 4th image first, when the 4th image is loaded,
|
|
201
159
|
// Preload these pictures in the order of 5, 3, 6, 2
|
|
202
|
-
|
|
203
|
-
|
|
204
160
|
this.preloadGapImage = () => {
|
|
205
161
|
const {
|
|
206
162
|
preLoad,
|
|
@@ -211,31 +167,26 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
211
167
|
const {
|
|
212
168
|
imgSrc
|
|
213
169
|
} = this.getStates();
|
|
214
|
-
|
|
215
170
|
if (!preLoad || typeof preLoadGap !== "number" || preLoadGap < 1) {
|
|
216
171
|
return;
|
|
217
172
|
}
|
|
218
|
-
|
|
219
173
|
const preloadImages = (0, _utils.getPreloadImagArr)(imgSrc, currentIndex, preLoadGap, infinite);
|
|
220
174
|
const Img = new Image();
|
|
221
175
|
let index = 0;
|
|
222
|
-
|
|
223
176
|
function callback(e) {
|
|
224
177
|
index++;
|
|
225
|
-
|
|
226
178
|
if (index < preloadImages.length) {
|
|
227
179
|
Img.src = preloadImages[index];
|
|
228
180
|
}
|
|
229
181
|
}
|
|
230
|
-
|
|
231
182
|
Img.onload = e => {
|
|
232
183
|
this.setLoadSuccessStatus(Img.src);
|
|
233
184
|
callback(e);
|
|
234
185
|
};
|
|
235
|
-
|
|
236
186
|
Img.onerror = callback;
|
|
237
187
|
Img.src = preloadImages[0];
|
|
238
|
-
};
|
|
188
|
+
};
|
|
189
|
+
// 在切换左右图片时,当被切换图片完成加载后,根据方向决定下一个预加载的图片
|
|
239
190
|
// 如: 1,2,3,4,5,6,7,8张图片
|
|
240
191
|
// 当 preLoadGap 为 2, 从第 5 张图片进行切换
|
|
241
192
|
// - 如果向 右 切换到第 6 张,则第 6 张图片加载动作结束后(无论加载成功 or 失败),会预先加载第 8 张;
|
|
@@ -245,8 +196,6 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
245
196
|
// When preLoadGap is 2, switch from the 5th picture
|
|
246
197
|
// - If you switch to the 6th image(direction is next), the 8th image will be preloaded after the 6th image is loaded (whether it succeeds or fails to load);
|
|
247
198
|
// - If you switch to the 4th image(direction is prev), the second image will be preloaded after the 4th image is loaded (whether it succeeds or fails to load);
|
|
248
|
-
|
|
249
|
-
|
|
250
199
|
this.preloadSingleImage = () => {
|
|
251
200
|
const {
|
|
252
201
|
preLoad,
|
|
@@ -259,36 +208,29 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
259
208
|
direction,
|
|
260
209
|
imgLoadStatus
|
|
261
210
|
} = this.getStates();
|
|
262
|
-
|
|
263
211
|
if (!preLoad || typeof preLoadGap !== "number" || preLoadGap < 1) {
|
|
264
212
|
return;
|
|
265
|
-
}
|
|
213
|
+
}
|
|
214
|
+
// 根据方向决定preload那个index
|
|
266
215
|
// Determine the index of preload according to the direction
|
|
267
|
-
|
|
268
|
-
|
|
269
216
|
let preloadIndex = currentIndex + (direction === "prev" ? -1 : 1) * preLoadGap;
|
|
270
|
-
|
|
271
217
|
if (preloadIndex < 0 || preloadIndex >= imgSrc.length) {
|
|
272
218
|
if (infinite) {
|
|
273
219
|
preloadIndex = (preloadIndex + imgSrc.length) % imgSrc.length;
|
|
274
220
|
} else {
|
|
275
221
|
return;
|
|
276
222
|
}
|
|
277
|
-
}
|
|
223
|
+
}
|
|
224
|
+
// 如果图片没有加载成功过,则进行预加载
|
|
278
225
|
// If the image has not been loaded successfully, preload it
|
|
279
|
-
|
|
280
|
-
|
|
281
226
|
if (!imgLoadStatus[preloadIndex]) {
|
|
282
227
|
const Img = new Image();
|
|
283
|
-
|
|
284
228
|
Img.onload = e => {
|
|
285
229
|
this.setLoadSuccessStatus(imgSrc[preloadIndex]);
|
|
286
230
|
};
|
|
287
|
-
|
|
288
231
|
Img.src = imgSrc[preloadIndex];
|
|
289
232
|
}
|
|
290
233
|
};
|
|
291
|
-
|
|
292
234
|
this.setLoadSuccessStatus = src => {
|
|
293
235
|
const {
|
|
294
236
|
imgLoadStatus
|
|
@@ -299,18 +241,17 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
299
241
|
imgLoadStatus: status
|
|
300
242
|
});
|
|
301
243
|
};
|
|
302
|
-
|
|
303
244
|
this.onImageLoad = src => {
|
|
304
245
|
const {
|
|
305
246
|
preloadAfterVisibleChange
|
|
306
247
|
} = this.getStates();
|
|
307
|
-
this.setLoadSuccessStatus(src);
|
|
248
|
+
this.setLoadSuccessStatus(src);
|
|
249
|
+
// 当 preview 中当前加载的图片加载完成后,
|
|
308
250
|
// 如果是在visible change之后的第一次加载,则启动加载该currentIndex左右preloadGap范围的图片
|
|
309
251
|
// 如果是非第一次加载,是在左右切换图片,则根据方向预先加载单张图片
|
|
310
252
|
// When the currently loaded image in Preview is loaded,
|
|
311
253
|
// - It is the first load after visible change, start loading the images in the preloadGap range around the currentIndex
|
|
312
254
|
// - It is not the first load, the image is switched left and right, and a single image is preloaded according to the direction
|
|
313
|
-
|
|
314
255
|
if (preloadAfterVisibleChange) {
|
|
315
256
|
this.preloadGapImage();
|
|
316
257
|
this.setState({
|
|
@@ -321,19 +262,13 @@ class PreviewInnerFoundation extends _foundation.default {
|
|
|
321
262
|
}
|
|
322
263
|
};
|
|
323
264
|
}
|
|
324
|
-
|
|
325
265
|
beforeShow() {
|
|
326
266
|
this._adapter.registerKeyDownListener();
|
|
327
|
-
|
|
328
267
|
this._adapter.disabledBodyScroll();
|
|
329
268
|
}
|
|
330
|
-
|
|
331
269
|
afterHide() {
|
|
332
270
|
this._adapter.unregisterKeyDownListener();
|
|
333
|
-
|
|
334
271
|
this._adapter.enabledBodyScroll();
|
|
335
272
|
}
|
|
336
|
-
|
|
337
273
|
}
|
|
338
|
-
|
|
339
274
|
exports.default = PreviewInnerFoundation;
|