@pinnacle0/web-ui 0.3.35 → 0.3.36
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/config/jest-stubs/style-stub.js +13 -0
- package/config/jest.config.ts +57 -0
- package/config/tsconfig.script.json +12 -0
- package/config/tsconfig.src.json +15 -0
- package/config/tsconfig.test.json +20 -0
- package/package.json +1 -1
- package/script/build.ts +103 -0
- package/script/format.ts +7 -0
- package/script/start-mobile.ts +13 -0
- package/script/start.ts +31 -0
- package/{admin → src/admin}/AdminApp/Default/NavigatorSide/index.less +0 -0
- package/src/admin/AdminApp/Default/NavigatorSide/index.tsx +68 -0
- package/src/admin/AdminApp/Default/SoundSwitch.tsx +32 -0
- package/{admin → src/admin}/AdminApp/Default/SquareLogo/index.less +0 -0
- package/src/admin/AdminApp/Default/SquareLogo/index.tsx +32 -0
- package/src/admin/AdminApp/Menu.tsx +154 -0
- package/src/admin/AdminApp/Navigator.tsx +186 -0
- package/src/admin/AdminApp/NotFound.tsx +24 -0
- package/src/admin/AdminApp/RouteSwitch.tsx +61 -0
- package/src/admin/AdminApp/WithErrorBoundary.tsx +36 -0
- package/{admin → src/admin}/AdminApp/asset/alert.mp3 +0 -0
- package/src/admin/AdminApp/context.ts +13 -0
- package/{admin → src/admin}/AdminApp/index.less +0 -0
- package/src/admin/AdminApp/index.tsx +96 -0
- package/src/admin/AdminPage/Filter.tsx +76 -0
- package/src/admin/AdminPage/Result.tsx +41 -0
- package/src/admin/AdminPage/SaveBar.tsx +33 -0
- package/src/admin/AdminPage/Summary.tsx +15 -0
- package/src/admin/AdminPage/TopBar.tsx +15 -0
- package/{admin → src/admin}/AdminPage/index.less +0 -0
- package/src/admin/AdminPage/index.tsx +29 -0
- package/src/admin/AdminPermissionSelector.tsx +299 -0
- package/{admin → src/admin}/RichEditor/index.less +0 -0
- package/src/admin/RichEditor/index.tsx +123 -0
- package/src/core/Amount/AmountPercentage.tsx +27 -0
- package/{core → src/core}/Amount/index.less +0 -0
- package/src/core/Amount/index.tsx +71 -0
- package/src/core/AmountConditionInput.tsx +63 -0
- package/src/core/AmountRangeInput.tsx +66 -0
- package/src/core/AuthenticationCodeInput.tsx +85 -0
- package/src/core/AutoCompleteInput.tsx +16 -0
- package/{core → src/core}/Badge/index.less +0 -0
- package/src/core/Badge/index.tsx +15 -0
- package/src/core/BoolRadio.tsx +62 -0
- package/src/core/BoolSelect.tsx +50 -0
- package/src/core/BoolSwitch.tsx +37 -0
- package/{core → src/core}/Breadcrumb/index.less +0 -0
- package/src/core/Breadcrumb/index.tsx +46 -0
- package/{core → src/core}/Button/index.less +0 -0
- package/src/core/Button/index.tsx +59 -0
- package/src/core/Card.tsx +16 -0
- package/src/core/Carousel.tsx +19 -0
- package/{core → src/core}/Carousel3D/index.less +0 -0
- package/src/core/Carousel3D/index.tsx +150 -0
- package/src/core/Cascader/InitialNullable.tsx +20 -0
- package/src/core/Cascader/Nullable.tsx +28 -0
- package/{core → src/core}/Cascader/index.less +0 -0
- package/src/core/Cascader/index.tsx +93 -0
- package/{core → src/core}/Checkbox/index.less +0 -0
- package/src/core/Checkbox/index.tsx +24 -0
- package/src/core/Collapse.tsx +19 -0
- package/src/core/Countdown/SlidingDigit.tsx +39 -0
- package/{core → src/core}/Countdown/index.less +0 -0
- package/src/core/Countdown/index.tsx +125 -0
- package/{core → src/core}/DarkOverlay/index.less +0 -0
- package/src/core/DarkOverlay/index.tsx +24 -0
- package/src/core/DateCalendar.tsx +106 -0
- package/{core → src/core}/DatePicker/index.less +0 -0
- package/src/core/DatePicker/index.tsx +54 -0
- package/{core → src/core}/DateRangePicker/index.less +0 -0
- package/src/core/DateRangePicker/index.tsx +58 -0
- package/{core → src/core}/DateTimePicker/index.less +0 -0
- package/src/core/DateTimePicker/index.tsx +61 -0
- package/{core → src/core}/DateTimeRangePicker/index.less +0 -0
- package/src/core/DateTimeRangePicker/index.tsx +60 -0
- package/{core → src/core}/Descriptions/index.less +0 -0
- package/src/core/Descriptions/index.tsx +45 -0
- package/src/core/DocumentTitle.tsx +58 -0
- package/src/core/Drawer.tsx +14 -0
- package/src/core/Dropdown.tsx +10 -0
- package/src/core/EnumCheckboxGroup/Map.tsx +21 -0
- package/src/core/EnumCheckboxGroup/index.tsx +23 -0
- package/src/core/EnumRadio/InitialNullable.tsx +24 -0
- package/src/core/EnumRadio/Map.tsx +21 -0
- package/src/core/EnumRadio/Nullable.tsx +31 -0
- package/src/core/EnumRadio/index.tsx +45 -0
- package/src/core/EnumSelect/InitialNullable.tsx +20 -0
- package/src/core/EnumSelect/Map.tsx +21 -0
- package/src/core/EnumSelect/Nullable.tsx +31 -0
- package/{core → src/core}/EnumSelect/index.less +0 -0
- package/src/core/EnumSelect/index.tsx +74 -0
- package/src/core/FlatList/VirtualFlatList/Item.tsx +28 -0
- package/{core → src/core}/FlatList/VirtualFlatList/index.less +0 -0
- package/src/core/FlatList/VirtualFlatList/index.tsx +142 -0
- package/src/core/FlatList/VirtualFlatList/type.ts +26 -0
- package/src/core/FlatList/index.tsx +95 -0
- package/{core → src/core}/FlatList/shared/Footer/index.less +0 -0
- package/src/core/FlatList/shared/Footer/index.tsx +23 -0
- package/src/core/FlatList/shared/GetRowKey.ts +11 -0
- package/{core → src/core}/FlatList/shared/Spinner/index.less +0 -0
- package/src/core/FlatList/shared/Spinner/index.tsx +18 -0
- package/src/core/FlatList/shared/Wrapper/Loading.tsx +17 -0
- package/{core → src/core}/FlatList/shared/Wrapper/index.less +0 -0
- package/src/core/FlatList/shared/Wrapper/index.tsx +123 -0
- package/src/core/FlatList/shared/hooks/useBounceSwipe.ts +120 -0
- package/src/core/FlatList/shared/hooks/useElementScrollState.ts +43 -0
- package/src/core/FlatList/shared/hooks/useLoadingWithDelay.ts +40 -0
- package/src/core/FlatList/type.tsx +56 -0
- package/{core → src/core}/Foldable/index.less +0 -0
- package/src/core/Foldable/index.tsx +38 -0
- package/src/core/Form/Item.tsx +87 -0
- package/src/core/Form/context.ts +16 -0
- package/{core → src/core}/Form/index.less +0 -0
- package/src/core/Form/index.tsx +109 -0
- package/src/core/Grid.tsx +7 -0
- package/{core → src/core}/HTMLContent/index.less +0 -0
- package/src/core/HTMLContent/index.tsx +17 -0
- package/{core → src/core}/ImageUploader/index.less +0 -0
- package/src/core/ImageUploader/index.tsx +104 -0
- package/{core → src/core}/Input/index.less +0 -0
- package/src/core/Input/index.tsx +63 -0
- package/src/core/LabelledSelect.tsx +15 -0
- package/src/core/Link.tsx +57 -0
- package/src/core/LocalImporter.tsx +62 -0
- package/src/core/LocaleProvider.tsx +31 -0
- package/src/core/LocaleSelect.tsx +36 -0
- package/{core → src/core}/Markdown/index.less +0 -0
- package/src/core/Markdown/index.tsx +42 -0
- package/{core → src/core}/Modal/index.less +0 -0
- package/src/core/Modal/index.tsx +37 -0
- package/{core → src/core}/MultipleCascader/index.less +0 -0
- package/src/core/MultipleCascader/index.tsx +114 -0
- package/src/core/MultipleEnumSelect.tsx +28 -0
- package/src/core/MultipleSelector/TablePopover.tsx +62 -0
- package/src/core/MultipleSelector/index.tsx +106 -0
- package/{core → src/core}/MutableTable/index.less +0 -0
- package/src/core/MutableTable/index.tsx +151 -0
- package/src/core/NumberInput/NumberInputPercentage.tsx +103 -0
- package/{core → src/core}/NumberInput/index.less +0 -0
- package/src/core/NumberInput/index.tsx +192 -0
- package/src/core/NumberInput/util.ts +55 -0
- package/{core → src/core}/OverflowableText/index.less +0 -0
- package/src/core/OverflowableText/index.tsx +66 -0
- package/{core → src/core}/PagedList/index.less +0 -0
- package/src/core/PagedList/index.tsx +93 -0
- package/{core → src/core}/Pagination/index.less +0 -0
- package/src/core/Pagination/index.tsx +59 -0
- package/{core → src/core}/Popover/index.less +0 -0
- package/src/core/Popover/index.tsx +15 -0
- package/src/core/Progress.tsx +14 -0
- package/{core → src/core}/Radio/index.less +0 -0
- package/src/core/Radio/index.tsx +21 -0
- package/src/core/RelativeTime.tsx +59 -0
- package/src/core/ResizeObserver.tsx +2 -0
- package/src/core/SearchableSelect.tsx +17 -0
- package/{core → src/core}/Select/index.less +0 -0
- package/src/core/Select/index.tsx +25 -0
- package/src/core/SignedAmountInput.tsx +59 -0
- package/src/core/Skeleton.tsx +14 -0
- package/src/core/Slider/RangeSlider.tsx +17 -0
- package/{core → src/core}/Slider/index.less +0 -0
- package/src/core/Slider/index.tsx +50 -0
- package/src/core/Space.tsx +14 -0
- package/src/core/Spin.tsx +25 -0
- package/{core → src/core}/StepFormContainer/index.less +0 -0
- package/src/core/StepFormContainer/index.tsx +66 -0
- package/{core → src/core}/Steps/index.less +0 -0
- package/src/core/Steps/index.tsx +17 -0
- package/{core → src/core}/Table/index.less +0 -0
- package/src/core/Table/index.tsx +221 -0
- package/src/core/Tabs/Single.tsx +25 -0
- package/{core → src/core}/Tabs/index.less +0 -0
- package/src/core/Tabs/index.tsx +82 -0
- package/src/core/Tag.tsx +17 -0
- package/{core → src/core}/TagInput/index.less +0 -0
- package/src/core/TagInput/index.tsx +94 -0
- package/src/core/Tags.tsx +34 -0
- package/{core → src/core}/TimePicker/index.less +0 -0
- package/src/core/TimePicker/index.tsx +44 -0
- package/{core → src/core}/TimeRangePicker/index.less +0 -0
- package/src/core/TimeRangePicker/index.tsx +42 -0
- package/src/core/Tooltip.tsx +17 -0
- package/{core → src/core}/TypedTabs/index.less +0 -0
- package/src/core/TypedTabs/index.tsx +43 -0
- package/src/core/Uploader.tsx +118 -0
- package/{core → src/core}/VerticalMarquee/index.less +0 -0
- package/src/core/VerticalMarquee/index.tsx +51 -0
- package/src/core/VirtualTable/TableHeader.tsx +41 -0
- package/src/core/VirtualTable/TableRow.tsx +90 -0
- package/src/core/VirtualTable/hooks/useColumnWidths.ts +24 -0
- package/src/core/VirtualTable/hooks/useDebounce.ts +18 -0
- package/src/core/VirtualTable/hooks/useLayout.tsx +58 -0
- package/src/core/VirtualTable/hooks/useRowExpand.tsx +27 -0
- package/src/core/VirtualTable/hooks/useRowSelection.tsx +72 -0
- package/src/core/VirtualTable/hooks/useScrollBarSize.ts +23 -0
- package/src/core/VirtualTable/hooks/useScrollToEdge.ts +36 -0
- package/src/core/VirtualTable/hooks/useStickyPosition.ts +28 -0
- package/src/core/VirtualTable/hooks/useTransformColumn.ts +19 -0
- package/{core → src/core}/VirtualTable/index.less +0 -0
- package/src/core/VirtualTable/index.tsx +143 -0
- package/src/core/VirtualTable/type.ts +59 -0
- package/{core → src/core}/WithExplanation/index.less +0 -0
- package/src/core/WithExplanation/index.tsx +47 -0
- package/src/core/WithTooltipList.tsx +89 -0
- package/src/core/YearMonthSelector.tsx +53 -0
- package/{css → src/css}/global.less +0 -0
- package/{css → src/css}/variable.less +0 -0
- package/src/hooks/useOrientationMode.ts +18 -0
- package/src/hooks/useSwipe/controller.ts +133 -0
- package/src/hooks/useSwipe/index.ts +11 -0
- package/src/hooks/useSwipe/type.ts +45 -0
- package/src/hooks/useTransform.ts +78 -0
- package/src/internal/ArrayUtil.ts +53 -0
- package/src/internal/ExpirableLocalStorage.ts +262 -0
- package/src/internal/Memo.ts +28 -0
- package/src/internal/NumberUtil.ts +38 -0
- package/src/internal/StorageHelper.ts +152 -0
- package/src/internal/TextUtil.ts +11 -0
- package/src/internal/i18n/admin/en.ts +18 -0
- package/src/internal/i18n/admin/index.ts +13 -0
- package/src/internal/i18n/admin/zh.ts +18 -0
- package/src/internal/i18n/core/en.ts +37 -0
- package/src/internal/i18n/core/index.ts +13 -0
- package/src/internal/i18n/core/zh.ts +37 -0
- package/src/internal/i18n/util/en.ts +9 -0
- package/src/internal/i18n/util/index.ts +13 -0
- package/src/internal/i18n/util/zh.ts +9 -0
- package/src/internal/type.ts +12 -0
- package/src/util/AdminNavigatorBase.ts +99 -0
- package/src/util/BrowserBookmarkUtil.ts +24 -0
- package/src/util/BrowserUtil.ts +122 -0
- package/src/util/CanvasUtil.ts +61 -0
- package/src/util/ClassNames.ts +2 -0
- package/src/util/Clipboard.ts +61 -0
- package/src/util/ExpirableLocalStorageUtil.ts +3 -0
- package/src/util/ExportUtil.ts +34 -0
- package/src/util/ImportUtil.ts +41 -0
- package/src/util/LocalStorageUtil.ts +3 -0
- package/src/util/LocaleUtil.ts +47 -0
- package/{util → src/util}/MediaUtil/index.less +0 -0
- package/src/util/MediaUtil/index.tsx +69 -0
- package/{util → src/util}/MessageUtil/index.less +0 -0
- package/src/util/MessageUtil/index.tsx +23 -0
- package/{util → src/util}/ModalUtil/index.less +0 -0
- package/src/util/ModalUtil/index.tsx +179 -0
- package/src/util/NotificationUtil.tsx +42 -0
- package/src/util/OrientationUtil.ts +51 -0
- package/src/util/PromptUtil/PromptBody.tsx +62 -0
- package/{util → src/util}/PromptUtil/index.less +0 -0
- package/src/util/PromptUtil/index.tsx +50 -0
- package/src/util/RecentUsedStorageUtil.ts +46 -0
- package/src/util/SessionStorageUtil.ts +3 -0
- package/src/util/SwipeUtil.ts +25 -0
- package/src/util/UploadUtil/index.ts +73 -0
- package/src/util/UploadUtil/type.ts +46 -0
- package/test/mobile-ui-test/package.json +5 -0
- package/test/mobile-ui-test/src/component/FlatListDemo/fetch.ts +18 -0
- package/test/mobile-ui-test/src/component/FlatListDemo/index.less +22 -0
- package/test/mobile-ui-test/src/component/FlatListDemo/index.tsx +149 -0
- package/test/mobile-ui-test/src/component/Main.tsx +6 -0
- package/test/mobile-ui-test/src/index.html +12 -0
- package/test/mobile-ui-test/src/index.less +18 -0
- package/test/mobile-ui-test/src/index.tsx +6 -0
- package/test/mobile-ui-test/static/robots.txt +2 -0
- package/test/mobile-ui-test/tsconfig.json +4 -0
- package/test/ui-test/package.json +5 -0
- package/test/ui-test/src/asset/logo.png +0 -0
- package/test/ui-test/src/component/DemoHelper/index.less +33 -0
- package/test/ui-test/src/component/DemoHelper/index.tsx +55 -0
- package/test/ui-test/src/component/Main.tsx +33 -0
- package/test/ui-test/src/component/WebUILogo.tsx +7 -0
- package/test/ui-test/src/component/WebUINavigatorSide.tsx +20 -0
- package/test/ui-test/src/component/admin/ConfigPageDemo.tsx +39 -0
- package/test/ui-test/src/component/admin/NavigationHistoryDemo.tsx +30 -0
- package/test/ui-test/src/component/admin/PermissionSelectorDemo.tsx +65 -0
- package/test/ui-test/src/component/admin/RenderErrorDemo.tsx +5 -0
- package/test/ui-test/src/component/admin/ResultPageDemo.tsx +13 -0
- package/test/ui-test/src/component/admin/RichEditorDemo.tsx +20 -0
- package/test/ui-test/src/component/admin/SeparateTabDetailDemo.tsx +44 -0
- package/test/ui-test/src/component/admin/TablePageDemo.tsx +85 -0
- package/test/ui-test/src/component/core/AmountDemo.tsx +117 -0
- package/test/ui-test/src/component/core/ButtonDemo/__tests__/__snapshots__/dom-snapshot.test.tsx.snap +12 -0
- package/test/ui-test/src/component/core/ButtonDemo/__tests__/dom-snapshot.test.tsx +10 -0
- package/test/ui-test/src/component/core/ButtonDemo/__tests__/smoke.test.tsx +71 -0
- package/test/ui-test/src/component/core/ButtonDemo/index.tsx +39 -0
- package/test/ui-test/src/component/core/CalendarDemo.tsx +98 -0
- package/test/ui-test/src/component/core/CarouselDemo/index.tsx +51 -0
- package/test/ui-test/src/component/core/CascaderDemo/index.tsx +120 -0
- package/test/ui-test/src/component/core/FoldableDemo.tsx +31 -0
- package/test/ui-test/src/component/core/FormDemo.tsx +204 -0
- package/test/ui-test/src/component/core/InputDemo/index.tsx +123 -0
- package/test/ui-test/src/component/core/MiscellaneousDemo/TagInputDemo.tsx +8 -0
- package/test/ui-test/src/component/core/MiscellaneousDemo/index.tsx +157 -0
- package/test/ui-test/src/component/core/ModalDemo/index.tsx +75 -0
- package/test/ui-test/src/component/core/OverflowableTextDemo.tsx +78 -0
- package/test/ui-test/src/component/core/RelativeTimeDemo.tsx +35 -0
- package/test/ui-test/src/component/core/SelectDemo/index.tsx +141 -0
- package/test/ui-test/src/component/core/SliderDemo.tsx +44 -0
- package/test/ui-test/src/component/core/StepContainerDemo.tsx +53 -0
- package/test/ui-test/src/component/core/TableDemo.tsx +81 -0
- package/test/ui-test/src/component/core/TabsDemo.tsx +136 -0
- package/test/ui-test/src/component/core/UploaderImporterDemo.tsx +52 -0
- package/test/ui-test/src/component/core/VirtualTableDemo.tsx +232 -0
- package/test/ui-test/src/dummy/dummyCallback.ts +13 -0
- package/test/ui-test/src/dummy/dummyList.ts +63 -0
- package/test/ui-test/src/dummy/dummyTableData.tsx +60 -0
- package/test/ui-test/src/dummy/dummyUpload.tsx +43 -0
- package/test/ui-test/src/index.html +11 -0
- package/test/ui-test/src/index.tsx +5 -0
- package/test/ui-test/src/type.ts +8 -0
- package/test/ui-test/src/util/NavigationService.tsx +217 -0
- package/test/ui-test/src/util/withUncontrolledInitialValue.tsx +14 -0
- package/test/ui-test/static/robots.txt +2 -0
- package/test/ui-test/tsconfig.json +3 -0
- package/test/unit-test/ClassNames.test.ts +17 -0
- package/test/unit-test/ExpirableLocalStorageUtil.test.ts +42 -0
- package/test/unit-test/NumberInput.util.test.ts +344 -0
- package/test/unit-test/NumberUtil.test.ts +57 -0
- package/test/unit-test/TextUtil.test.ts +10 -0
- package/tsconfig.json +15 -0
- package/admin/AdminApp/Default/NavigatorSide/index.d.ts +0 -20
- package/admin/AdminApp/Default/NavigatorSide/index.js +0 -74
- package/admin/AdminApp/Default/NavigatorSide/index.js.map +0 -1
- package/admin/AdminApp/Default/SoundSwitch.d.ts +0 -14
- package/admin/AdminApp/Default/SoundSwitch.js +0 -41
- package/admin/AdminApp/Default/SoundSwitch.js.map +0 -1
- package/admin/AdminApp/Default/SquareLogo/index.d.ts +0 -15
- package/admin/AdminApp/Default/SquareLogo/index.js +0 -39
- package/admin/AdminApp/Default/SquareLogo/index.js.map +0 -1
- package/admin/AdminApp/Menu.d.ts +0 -52
- package/admin/AdminApp/Menu.js +0 -174
- package/admin/AdminApp/Menu.js.map +0 -1
- package/admin/AdminApp/Navigator.d.ts +0 -30
- package/admin/AdminApp/Navigator.js +0 -200
- package/admin/AdminApp/Navigator.js.map +0 -1
- package/admin/AdminApp/NotFound.d.ts +0 -10
- package/admin/AdminApp/NotFound.js +0 -37
- package/admin/AdminApp/NotFound.js.map +0 -1
- package/admin/AdminApp/RouteSwitch.d.ts +0 -19
- package/admin/AdminApp/RouteSwitch.js +0 -64
- package/admin/AdminApp/RouteSwitch.js.map +0 -1
- package/admin/AdminApp/WithErrorBoundary.d.ts +0 -15
- package/admin/AdminApp/WithErrorBoundary.js +0 -39
- package/admin/AdminApp/WithErrorBoundary.js.map +0 -1
- package/admin/AdminApp/context.d.ts +0 -7
- package/admin/AdminApp/context.js +0 -7
- package/admin/AdminApp/context.js.map +0 -1
- package/admin/AdminApp/index.d.ts +0 -39
- package/admin/AdminApp/index.js +0 -76
- package/admin/AdminApp/index.js.map +0 -1
- package/admin/AdminPage/Filter.d.ts +0 -23
- package/admin/AdminPage/Filter.js +0 -60
- package/admin/AdminPage/Filter.js.map +0 -1
- package/admin/AdminPage/Result.d.ts +0 -19
- package/admin/AdminPage/Result.js +0 -43
- package/admin/AdminPage/Result.js.map +0 -1
- package/admin/AdminPage/SaveBar.d.ts +0 -10
- package/admin/AdminPage/SaveBar.js +0 -37
- package/admin/AdminPage/SaveBar.js.map +0 -1
- package/admin/AdminPage/Summary.d.ts +0 -9
- package/admin/AdminPage/Summary.js +0 -30
- package/admin/AdminPage/Summary.js.map +0 -1
- package/admin/AdminPage/TopBar.d.ts +0 -9
- package/admin/AdminPage/TopBar.js +0 -30
- package/admin/AdminPage/TopBar.js.map +0 -1
- package/admin/AdminPage/index.d.ts +0 -21
- package/admin/AdminPage/index.js +0 -42
- package/admin/AdminPage/index.js.map +0 -1
- package/admin/AdminPermissionSelector.d.ts +0 -45
- package/admin/AdminPermissionSelector.js +0 -213
- package/admin/AdminPermissionSelector.js.map +0 -1
- package/admin/RichEditor/index.d.ts +0 -34
- package/admin/RichEditor/index.js +0 -104
- package/admin/RichEditor/index.js.map +0 -1
- package/core/Amount/AmountPercentage.d.ts +0 -19
- package/core/Amount/AmountPercentage.js +0 -54
- package/core/Amount/AmountPercentage.js.map +0 -1
- package/core/Amount/index.d.ts +0 -26
- package/core/Amount/index.js +0 -65
- package/core/Amount/index.js.map +0 -1
- package/core/AmountConditionInput.d.ts +0 -28
- package/core/AmountConditionInput.js +0 -66
- package/core/AmountConditionInput.js.map +0 -1
- package/core/AmountRangeInput.d.ts +0 -23
- package/core/AmountRangeInput.js +0 -59
- package/core/AmountRangeInput.js.map +0 -1
- package/core/AuthenticationCodeInput.d.ts +0 -25
- package/core/AuthenticationCodeInput.js +0 -149
- package/core/AuthenticationCodeInput.js.map +0 -1
- package/core/AutoCompleteInput.d.ts +0 -10
- package/core/AutoCompleteInput.js +0 -43
- package/core/AutoCompleteInput.js.map +0 -1
- package/core/Badge/index.d.ts +0 -10
- package/core/Badge/index.js +0 -43
- package/core/Badge/index.js.map +0 -1
- package/core/BoolRadio.d.ts +0 -20
- package/core/BoolRadio.js +0 -49
- package/core/BoolRadio.js.map +0 -1
- package/core/BoolSelect.d.ts +0 -19
- package/core/BoolSelect.js +0 -48
- package/core/BoolSelect.js.map +0 -1
- package/core/BoolSwitch.d.ts +0 -17
- package/core/BoolSwitch.js +0 -56
- package/core/BoolSwitch.js.map +0 -1
- package/core/Breadcrumb/index.d.ts +0 -17
- package/core/Breadcrumb/index.js +0 -45
- package/core/Breadcrumb/index.js.map +0 -1
- package/core/Button/index.d.ts +0 -37
- package/core/Button/index.js +0 -60
- package/core/Button/index.js.map +0 -1
- package/core/Card.d.ts +0 -10
- package/core/Card.js +0 -43
- package/core/Card.js.map +0 -1
- package/core/Carousel.d.ts +0 -11
- package/core/Carousel.js +0 -54
- package/core/Carousel.js.map +0 -1
- package/core/Carousel3D/index.d.ts +0 -27
- package/core/Carousel3D/index.js +0 -116
- package/core/Carousel3D/index.js.map +0 -1
- package/core/Cascader/InitialNullable.d.ts +0 -10
- package/core/Cascader/InitialNullable.js +0 -54
- package/core/Cascader/InitialNullable.js.map +0 -1
- package/core/Cascader/Nullable.d.ts +0 -12
- package/core/Cascader/Nullable.js +0 -86
- package/core/Cascader/Nullable.js.map +0 -1
- package/core/Cascader/index.d.ts +0 -37
- package/core/Cascader/index.js +0 -117
- package/core/Cascader/index.js.map +0 -1
- package/core/Checkbox/index.d.ts +0 -15
- package/core/Checkbox/index.js +0 -47
- package/core/Checkbox/index.js.map +0 -1
- package/core/Collapse.d.ts +0 -12
- package/core/Collapse.js +0 -43
- package/core/Collapse.js.map +0 -1
- package/core/Countdown/SlidingDigit.d.ts +0 -15
- package/core/Countdown/SlidingDigit.js +0 -43
- package/core/Countdown/SlidingDigit.js.map +0 -1
- package/core/Countdown/index.d.ts +0 -39
- package/core/Countdown/index.js +0 -106
- package/core/Countdown/index.js.map +0 -1
- package/core/DarkOverlay/index.d.ts +0 -12
- package/core/DarkOverlay/index.js +0 -32
- package/core/DarkOverlay/index.js.map +0 -1
- package/core/DateCalendar.d.ts +0 -18
- package/core/DateCalendar.js +0 -85
- package/core/DateCalendar.js.map +0 -1
- package/core/DatePicker/index.d.ts +0 -18
- package/core/DatePicker/index.js +0 -53
- package/core/DatePicker/index.js.map +0 -1
- package/core/DateRangePicker/index.d.ts +0 -18
- package/core/DateRangePicker/index.js +0 -59
- package/core/DateRangePicker/index.js.map +0 -1
- package/core/DateTimePicker/index.d.ts +0 -19
- package/core/DateTimePicker/index.js +0 -59
- package/core/DateTimePicker/index.js.map +0 -1
- package/core/DateTimeRangePicker/index.d.ts +0 -20
- package/core/DateTimeRangePicker/index.js +0 -59
- package/core/DateTimeRangePicker/index.js.map +0 -1
- package/core/Descriptions/index.d.ts +0 -27
- package/core/Descriptions/index.js +0 -51
- package/core/Descriptions/index.js.map +0 -1
- package/core/DocumentTitle.d.ts +0 -28
- package/core/DocumentTitle.js +0 -53
- package/core/DocumentTitle.js.map +0 -1
- package/core/Drawer.d.ts +0 -9
- package/core/Drawer.js +0 -41
- package/core/Drawer.js.map +0 -1
- package/core/Dropdown.d.ts +0 -9
- package/core/Dropdown.js +0 -10
- package/core/Dropdown.js.map +0 -1
- package/core/EnumCheckboxGroup/Map.d.ts +0 -10
- package/core/EnumCheckboxGroup/Map.js +0 -55
- package/core/EnumCheckboxGroup/Map.js.map +0 -1
- package/core/EnumCheckboxGroup/index.d.ts +0 -12
- package/core/EnumCheckboxGroup/index.js +0 -36
- package/core/EnumCheckboxGroup/index.js.map +0 -1
- package/core/EnumRadio/InitialNullable.d.ts +0 -11
- package/core/EnumRadio/InitialNullable.js +0 -56
- package/core/EnumRadio/InitialNullable.js.map +0 -1
- package/core/EnumRadio/Map.d.ts +0 -10
- package/core/EnumRadio/Map.js +0 -55
- package/core/EnumRadio/Map.js.map +0 -1
- package/core/EnumRadio/Nullable.d.ts +0 -12
- package/core/EnumRadio/Nullable.js +0 -88
- package/core/EnumRadio/Nullable.js.map +0 -1
- package/core/EnumRadio/index.d.ts +0 -24
- package/core/EnumRadio/index.js +0 -45
- package/core/EnumRadio/index.js.map +0 -1
- package/core/EnumSelect/InitialNullable.d.ts +0 -10
- package/core/EnumSelect/InitialNullable.js +0 -54
- package/core/EnumSelect/InitialNullable.js.map +0 -1
- package/core/EnumSelect/Map.d.ts +0 -10
- package/core/EnumSelect/Map.js +0 -55
- package/core/EnumSelect/Map.js.map +0 -1
- package/core/EnumSelect/Nullable.d.ts +0 -12
- package/core/EnumSelect/Nullable.js +0 -88
- package/core/EnumSelect/Nullable.js.map +0 -1
- package/core/EnumSelect/index.d.ts +0 -29
- package/core/EnumSelect/index.js +0 -61
- package/core/EnumSelect/index.js.map +0 -1
- package/core/FlatList/VirtualFlatList/Item.d.ts +0 -11
- package/core/FlatList/VirtualFlatList/Item.js +0 -20
- package/core/FlatList/VirtualFlatList/Item.js.map +0 -1
- package/core/FlatList/VirtualFlatList/index.d.ts +0 -7
- package/core/FlatList/VirtualFlatList/index.js +0 -110
- package/core/FlatList/VirtualFlatList/index.js.map +0 -1
- package/core/FlatList/VirtualFlatList/type.d.ts +0 -20
- package/core/FlatList/VirtualFlatList/type.js +0 -2
- package/core/FlatList/VirtualFlatList/type.js.map +0 -1
- package/core/FlatList/index.d.ts +0 -3
- package/core/FlatList/index.js +0 -60
- package/core/FlatList/index.js.map +0 -1
- package/core/FlatList/shared/Footer/index.d.ts +0 -8
- package/core/FlatList/shared/Footer/index.js +0 -13
- package/core/FlatList/shared/Footer/index.js.map +0 -1
- package/core/FlatList/shared/GetRowKey.d.ts +0 -2
- package/core/FlatList/shared/GetRowKey.js +0 -12
- package/core/FlatList/shared/GetRowKey.js.map +0 -1
- package/core/FlatList/shared/Spinner/index.d.ts +0 -8
- package/core/FlatList/shared/Spinner/index.js +0 -10
- package/core/FlatList/shared/Spinner/index.js.map +0 -1
- package/core/FlatList/shared/Wrapper/Loading.d.ts +0 -8
- package/core/FlatList/shared/Wrapper/Loading.js +0 -7
- package/core/FlatList/shared/Wrapper/Loading.js.map +0 -1
- package/core/FlatList/shared/Wrapper/index.d.ts +0 -14
- package/core/FlatList/shared/Wrapper/index.js +0 -109
- package/core/FlatList/shared/Wrapper/index.js.map +0 -1
- package/core/FlatList/shared/hooks/useBounceSwipe.d.ts +0 -22
- package/core/FlatList/shared/hooks/useBounceSwipe.js +0 -111
- package/core/FlatList/shared/hooks/useBounceSwipe.js.map +0 -1
- package/core/FlatList/shared/hooks/useElementScrollState.d.ts +0 -8
- package/core/FlatList/shared/hooks/useElementScrollState.js +0 -38
- package/core/FlatList/shared/hooks/useElementScrollState.js.map +0 -1
- package/core/FlatList/shared/hooks/useLoadingWithDelay.d.ts +0 -9
- package/core/FlatList/shared/hooks/useLoadingWithDelay.js +0 -52
- package/core/FlatList/shared/hooks/useLoadingWithDelay.js.map +0 -1
- package/core/FlatList/type.d.ts +0 -48
- package/core/FlatList/type.js +0 -2
- package/core/FlatList/type.js.map +0 -1
- package/core/Foldable/index.d.ts +0 -18
- package/core/Foldable/index.js +0 -41
- package/core/Foldable/index.js.map +0 -1
- package/core/Form/Item.d.ts +0 -29
- package/core/Form/Item.js +0 -106
- package/core/Form/Item.js.map +0 -1
- package/core/Form/context.d.ts +0 -14
- package/core/Form/context.js +0 -7
- package/core/Form/context.js.map +0 -1
- package/core/Form/index.d.ts +0 -36
- package/core/Form/index.js +0 -143
- package/core/Form/index.js.map +0 -1
- package/core/Grid.d.ts +0 -6
- package/core/Grid.js +0 -7
- package/core/Grid.js.map +0 -1
- package/core/HTMLContent/index.d.ts +0 -11
- package/core/HTMLContent/index.js +0 -32
- package/core/HTMLContent/index.js.map +0 -1
- package/core/ImageUploader/index.d.ts +0 -24
- package/core/ImageUploader/index.js +0 -148
- package/core/ImageUploader/index.js.map +0 -1
- package/core/Input/index.d.ts +0 -39
- package/core/Input/index.js +0 -88
- package/core/Input/index.js.map +0 -1
- package/core/LabelledSelect.d.ts +0 -11
- package/core/LabelledSelect.js +0 -42
- package/core/LabelledSelect.js.map +0 -1
- package/core/Link.d.ts +0 -15
- package/core/Link.js +0 -48
- package/core/Link.js.map +0 -1
- package/core/LocalImporter.d.ts +0 -21
- package/core/LocalImporter.js +0 -93
- package/core/LocalImporter.js.map +0 -1
- package/core/LocaleProvider.d.ts +0 -12
- package/core/LocaleProvider.js +0 -38
- package/core/LocaleProvider.js.map +0 -1
- package/core/LocaleSelect.d.ts +0 -11
- package/core/LocaleSelect.js +0 -45
- package/core/LocaleSelect.js.map +0 -1
- package/core/Markdown/index.d.ts +0 -20
- package/core/Markdown/index.js +0 -40
- package/core/Markdown/index.js.map +0 -1
- package/core/Modal/index.d.ts +0 -16
- package/core/Modal/index.js +0 -67
- package/core/Modal/index.js.map +0 -1
- package/core/MultipleCascader/index.d.ts +0 -31
- package/core/MultipleCascader/index.js +0 -151
- package/core/MultipleCascader/index.js.map +0 -1
- package/core/MultipleEnumSelect.d.ts +0 -17
- package/core/MultipleEnumSelect.js +0 -40
- package/core/MultipleEnumSelect.js.map +0 -1
- package/core/MultipleSelector/TablePopover.d.ts +0 -20
- package/core/MultipleSelector/TablePopover.js +0 -95
- package/core/MultipleSelector/TablePopover.js.map +0 -1
- package/core/MultipleSelector/index.d.ts +0 -33
- package/core/MultipleSelector/index.js +0 -103
- package/core/MultipleSelector/index.js.map +0 -1
- package/core/MutableTable/index.d.ts +0 -44
- package/core/MutableTable/index.js +0 -139
- package/core/MutableTable/index.js.map +0 -1
- package/core/NumberInput/NumberInputPercentage.d.ts +0 -58
- package/core/NumberInput/NumberInputPercentage.js +0 -75
- package/core/NumberInput/NumberInputPercentage.js.map +0 -1
- package/core/NumberInput/index.d.ts +0 -70
- package/core/NumberInput/index.js +0 -130
- package/core/NumberInput/index.js.map +0 -1
- package/core/NumberInput/util.d.ts +0 -34
- package/core/NumberInput/util.js +0 -57
- package/core/NumberInput/util.js.map +0 -1
- package/core/OverflowableText/index.d.ts +0 -22
- package/core/OverflowableText/index.js +0 -64
- package/core/OverflowableText/index.js.map +0 -1
- package/core/PagedList/index.d.ts +0 -27
- package/core/PagedList/index.js +0 -81
- package/core/PagedList/index.js.map +0 -1
- package/core/Pagination/index.d.ts +0 -21
- package/core/Pagination/index.js +0 -51
- package/core/Pagination/index.js.map +0 -1
- package/core/Popover/index.d.ts +0 -11
- package/core/Popover/index.js +0 -43
- package/core/Popover/index.js.map +0 -1
- package/core/Progress.d.ts +0 -10
- package/core/Progress.js +0 -42
- package/core/Progress.js.map +0 -1
- package/core/Radio/index.d.ts +0 -13
- package/core/Radio/index.js +0 -45
- package/core/Radio/index.js.map +0 -1
- package/core/RelativeTime.d.ts +0 -18
- package/core/RelativeTime.js +0 -60
- package/core/RelativeTime.js.map +0 -1
- package/core/ResizeObserver.d.ts +0 -2
- package/core/ResizeObserver.js +0 -2
- package/core/ResizeObserver.js.map +0 -1
- package/core/SearchableSelect.d.ts +0 -15
- package/core/SearchableSelect.js +0 -42
- package/core/SearchableSelect.js.map +0 -1
- package/core/Select/index.d.ts +0 -16
- package/core/Select/index.js +0 -45
- package/core/Select/index.js.map +0 -1
- package/core/SignedAmountInput.d.ts +0 -20
- package/core/SignedAmountInput.js +0 -56
- package/core/SignedAmountInput.js.map +0 -1
- package/core/Skeleton.d.ts +0 -9
- package/core/Skeleton.js +0 -42
- package/core/Skeleton.js.map +0 -1
- package/core/Slider/RangeSlider.d.ts +0 -11
- package/core/Slider/RangeSlider.js +0 -53
- package/core/Slider/RangeSlider.js.map +0 -1
- package/core/Slider/index.d.ts +0 -16
- package/core/Slider/index.js +0 -79
- package/core/Slider/index.js.map +0 -1
- package/core/Space.d.ts +0 -10
- package/core/Space.js +0 -42
- package/core/Space.js.map +0 -1
- package/core/Spin.d.ts +0 -12
- package/core/Spin.js +0 -55
- package/core/Spin.js.map +0 -1
- package/core/StepFormContainer/index.d.ts +0 -27
- package/core/StepFormContainer/index.js +0 -50
- package/core/StepFormContainer/index.js.map +0 -1
- package/core/Steps/index.d.ts +0 -11
- package/core/Steps/index.js +0 -44
- package/core/Steps/index.js.map +0 -1
- package/core/Table/index.d.ts +0 -89
- package/core/Table/index.js +0 -152
- package/core/Table/index.js.map +0 -1
- package/core/Tabs/Single.d.ts +0 -11
- package/core/Tabs/Single.js +0 -54
- package/core/Tabs/Single.js.map +0 -1
- package/core/Tabs/index.d.ts +0 -30
- package/core/Tabs/index.js +0 -96
- package/core/Tabs/index.js.map +0 -1
- package/core/Tag.d.ts +0 -11
- package/core/Tag.js +0 -42
- package/core/Tag.js.map +0 -1
- package/core/TagInput/index.d.ts +0 -27
- package/core/TagInput/index.js +0 -107
- package/core/TagInput/index.js.map +0 -1
- package/core/Tags.d.ts +0 -17
- package/core/Tags.js +0 -38
- package/core/Tags.js.map +0 -1
- package/core/TimePicker/index.d.ts +0 -17
- package/core/TimePicker/index.js +0 -46
- package/core/TimePicker/index.js.map +0 -1
- package/core/TimeRangePicker/index.d.ts +0 -17
- package/core/TimeRangePicker/index.js +0 -45
- package/core/TimeRangePicker/index.js.map +0 -1
- package/core/Tooltip.d.ts +0 -9
- package/core/Tooltip.js +0 -42
- package/core/Tooltip.js.map +0 -1
- package/core/TypedTabs/index.d.ts +0 -23
- package/core/TypedTabs/index.js +0 -76
- package/core/TypedTabs/index.js.map +0 -1
- package/core/Uploader.d.ts +0 -34
- package/core/Uploader.js +0 -97
- package/core/Uploader.js.map +0 -1
- package/core/VerticalMarquee/index.d.ts +0 -19
- package/core/VerticalMarquee/index.js +0 -51
- package/core/VerticalMarquee/index.js.map +0 -1
- package/core/VirtualTable/TableHeader.d.ts +0 -13
- package/core/VirtualTable/TableHeader.js +0 -45
- package/core/VirtualTable/TableHeader.js.map +0 -1
- package/core/VirtualTable/TableRow.d.ts +0 -21
- package/core/VirtualTable/TableRow.js +0 -59
- package/core/VirtualTable/TableRow.js.map +0 -1
- package/core/VirtualTable/hooks/useColumnWidths.d.ts +0 -11
- package/core/VirtualTable/hooks/useColumnWidths.js +0 -38
- package/core/VirtualTable/hooks/useColumnWidths.js.map +0 -1
- package/core/VirtualTable/hooks/useDebounce.d.ts +0 -1
- package/core/VirtualTable/hooks/useDebounce.js +0 -45
- package/core/VirtualTable/hooks/useDebounce.js.map +0 -1
- package/core/VirtualTable/hooks/useLayout.d.ts +0 -17
- package/core/VirtualTable/hooks/useLayout.js +0 -44
- package/core/VirtualTable/hooks/useLayout.js.map +0 -1
- package/core/VirtualTable/hooks/useRowExpand.d.ts +0 -7
- package/core/VirtualTable/hooks/useRowExpand.js +0 -20
- package/core/VirtualTable/hooks/useRowExpand.js.map +0 -1
- package/core/VirtualTable/hooks/useRowSelection.d.ts +0 -10
- package/core/VirtualTable/hooks/useRowSelection.js +0 -83
- package/core/VirtualTable/hooks/useRowSelection.js.map +0 -1
- package/core/VirtualTable/hooks/useScrollBarSize.d.ts +0 -5
- package/core/VirtualTable/hooks/useScrollBarSize.js +0 -36
- package/core/VirtualTable/hooks/useScrollBarSize.js.map +0 -1
- package/core/VirtualTable/hooks/useScrollToEdge.d.ts +0 -8
- package/core/VirtualTable/hooks/useScrollToEdge.js +0 -48
- package/core/VirtualTable/hooks/useScrollToEdge.js.map +0 -1
- package/core/VirtualTable/hooks/useStickyPosition.d.ts +0 -2
- package/core/VirtualTable/hooks/useStickyPosition.js +0 -24
- package/core/VirtualTable/hooks/useStickyPosition.js.map +0 -1
- package/core/VirtualTable/hooks/useTransformColumn.d.ts +0 -11
- package/core/VirtualTable/hooks/useTransformColumn.js +0 -9
- package/core/VirtualTable/hooks/useTransformColumn.js.map +0 -1
- package/core/VirtualTable/index.d.ts +0 -30
- package/core/VirtualTable/index.js +0 -85
- package/core/VirtualTable/index.js.map +0 -1
- package/core/VirtualTable/type.d.ts +0 -57
- package/core/VirtualTable/type.js +0 -2
- package/core/VirtualTable/type.js.map +0 -1
- package/core/WithExplanation/index.d.ts +0 -21
- package/core/WithExplanation/index.js +0 -46
- package/core/WithExplanation/index.js.map +0 -1
- package/core/WithTooltipList.d.ts +0 -23
- package/core/WithTooltipList.js +0 -64
- package/core/WithTooltipList.js.map +0 -1
- package/core/YearMonthSelector.d.ts +0 -16
- package/core/YearMonthSelector.js +0 -53
- package/core/YearMonthSelector.js.map +0 -1
- package/hooks/useOrientationMode.d.ts +0 -2
- package/hooks/useOrientationMode.js +0 -30
- package/hooks/useOrientationMode.js.map +0 -1
- package/hooks/useSwipe/controller.d.ts +0 -20
- package/hooks/useSwipe/controller.js +0 -126
- package/hooks/useSwipe/controller.js.map +0 -1
- package/hooks/useSwipe/index.d.ts +0 -3
- package/hooks/useSwipe/index.js +0 -9
- package/hooks/useSwipe/index.js.map +0 -1
- package/hooks/useSwipe/type.d.ts +0 -38
- package/hooks/useSwipe/type.js +0 -8
- package/hooks/useSwipe/type.js.map +0 -1
- package/hooks/useTransform.d.ts +0 -18
- package/hooks/useTransform.js +0 -50
- package/hooks/useTransform.js.map +0 -1
- package/internal/ArrayUtil.d.ts +0 -29
- package/internal/ArrayUtil.js +0 -76
- package/internal/ArrayUtil.js.map +0 -1
- package/internal/ExpirableLocalStorage.d.ts +0 -123
- package/internal/ExpirableLocalStorage.js +0 -245
- package/internal/ExpirableLocalStorage.js.map +0 -1
- package/internal/Memo.d.ts +0 -9
- package/internal/Memo.js +0 -31
- package/internal/Memo.js.map +0 -1
- package/internal/NumberUtil.d.ts +0 -7
- package/internal/NumberUtil.js +0 -38
- package/internal/NumberUtil.js.map +0 -1
- package/internal/StorageHelper.d.ts +0 -31
- package/internal/StorageHelper.js +0 -152
- package/internal/StorageHelper.js.map +0 -1
- package/internal/TextUtil.d.ts +0 -5
- package/internal/TextUtil.js +0 -15
- package/internal/TextUtil.js.map +0 -1
- package/internal/i18n/admin/en.d.ts +0 -18
- package/internal/i18n/admin/en.js +0 -19
- package/internal/i18n/admin/en.js.map +0 -1
- package/internal/i18n/admin/index.d.ts +0 -18
- package/internal/i18n/admin/index.js +0 -11
- package/internal/i18n/admin/index.js.map +0 -1
- package/internal/i18n/admin/zh.d.ts +0 -18
- package/internal/i18n/admin/zh.js +0 -19
- package/internal/i18n/admin/zh.js.map +0 -1
- package/internal/i18n/core/en.d.ts +0 -37
- package/internal/i18n/core/en.js +0 -38
- package/internal/i18n/core/en.js.map +0 -1
- package/internal/i18n/core/index.d.ts +0 -37
- package/internal/i18n/core/index.js +0 -11
- package/internal/i18n/core/index.js.map +0 -1
- package/internal/i18n/core/zh.d.ts +0 -37
- package/internal/i18n/core/zh.js +0 -38
- package/internal/i18n/core/zh.js.map +0 -1
- package/internal/i18n/util/en.d.ts +0 -9
- package/internal/i18n/util/en.js +0 -10
- package/internal/i18n/util/en.js.map +0 -1
- package/internal/i18n/util/index.d.ts +0 -9
- package/internal/i18n/util/index.js +0 -11
- package/internal/i18n/util/index.js.map +0 -1
- package/internal/i18n/util/zh.d.ts +0 -9
- package/internal/i18n/util/zh.js +0 -10
- package/internal/i18n/util/zh.js.map +0 -1
- package/internal/type.d.ts +0 -15
- package/internal/type.js +0 -2
- package/internal/type.js.map +0 -1
- package/util/AdminNavigatorBase.d.ts +0 -64
- package/util/AdminNavigatorBase.js +0 -101
- package/util/AdminNavigatorBase.js.map +0 -1
- package/util/BrowserBookmarkUtil.d.ts +0 -5
- package/util/BrowserBookmarkUtil.js +0 -25
- package/util/BrowserBookmarkUtil.js.map +0 -1
- package/util/BrowserUtil.d.ts +0 -31
- package/util/BrowserUtil.js +0 -154
- package/util/BrowserUtil.js.map +0 -1
- package/util/CanvasUtil.d.ts +0 -17
- package/util/CanvasUtil.js +0 -94
- package/util/CanvasUtil.js.map +0 -1
- package/util/ClassNames.d.ts +0 -2
- package/util/ClassNames.js +0 -3
- package/util/ClassNames.js.map +0 -1
- package/util/Clipboard.d.ts +0 -22
- package/util/Clipboard.js +0 -118
- package/util/Clipboard.js.map +0 -1
- package/util/ExpirableLocalStorageUtil.d.ts +0 -2
- package/util/ExpirableLocalStorageUtil.js +0 -3
- package/util/ExpirableLocalStorageUtil.js.map +0 -1
- package/util/ExportUtil.d.ts +0 -11
- package/util/ExportUtil.js +0 -28
- package/util/ExportUtil.js.map +0 -1
- package/util/ImportUtil.d.ts +0 -10
- package/util/ImportUtil.js +0 -94
- package/util/ImportUtil.js.map +0 -1
- package/util/LocalStorageUtil.d.ts +0 -2
- package/util/LocalStorageUtil.js +0 -3
- package/util/LocalStorageUtil.js.map +0 -1
- package/util/LocaleUtil.d.ts +0 -22
- package/util/LocaleUtil.js +0 -34
- package/util/LocaleUtil.js.map +0 -1
- package/util/MediaUtil/index.d.ts +0 -10
- package/util/MediaUtil/index.js +0 -60
- package/util/MediaUtil/index.js.map +0 -1
- package/util/MessageUtil/index.d.ts +0 -15
- package/util/MessageUtil/index.js +0 -29
- package/util/MessageUtil/index.js.map +0 -1
- package/util/ModalUtil/index.d.ts +0 -41
- package/util/ModalUtil/index.js +0 -145
- package/util/ModalUtil/index.js.map +0 -1
- package/util/NotificationUtil.d.ts +0 -12
- package/util/NotificationUtil.js +0 -52
- package/util/NotificationUtil.js.map +0 -1
- package/util/OrientationUtil.d.ts +0 -20
- package/util/OrientationUtil.js +0 -50
- package/util/OrientationUtil.js.map +0 -1
- package/util/PromptUtil/PromptBody.d.ts +0 -18
- package/util/PromptUtil/PromptBody.js +0 -100
- package/util/PromptUtil/PromptBody.js.map +0 -1
- package/util/PromptUtil/index.d.ts +0 -19
- package/util/PromptUtil/index.js +0 -48
- package/util/PromptUtil/index.js.map +0 -1
- package/util/RecentUsedStorageUtil.d.ts +0 -12
- package/util/RecentUsedStorageUtil.js +0 -45
- package/util/RecentUsedStorageUtil.js.map +0 -1
- package/util/SessionStorageUtil.d.ts +0 -2
- package/util/SessionStorageUtil.js +0 -3
- package/util/SessionStorageUtil.js.map +0 -1
- package/util/SwipeUtil.d.ts +0 -8
- package/util/SwipeUtil.js +0 -26
- package/util/SwipeUtil.js.map +0 -1
- package/util/UploadUtil/index.d.ts +0 -6
- package/util/UploadUtil/index.js +0 -61
- package/util/UploadUtil/index.js.map +0 -1
- package/util/UploadUtil/type.d.ts +0 -41
- package/util/UploadUtil/type.js +0 -2
- package/util/UploadUtil/type.js.map +0 -1
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {defaultRangeExtractor, useVirtual} from "react-virtual";
|
|
3
|
+
import {classNames} from "../../../util/ClassNames";
|
|
4
|
+
import {useLoadingWithDelay} from "../shared/hooks/useLoadingWithDelay";
|
|
5
|
+
import {Wrapper} from "../shared/Wrapper";
|
|
6
|
+
import {Footer} from "../shared/Footer";
|
|
7
|
+
import {GetRowKey} from "../shared/GetRowKey";
|
|
8
|
+
import {Item} from "./Item";
|
|
9
|
+
import type {VirtualFlatListProps} from "./type";
|
|
10
|
+
import type {Range} from "react-virtual";
|
|
11
|
+
import type {FooterData, LoadingType} from "../type";
|
|
12
|
+
import "./index.less";
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* VirtualizedFlatList currently only work with item without and size related animation and transition since it break the layout. This will be improve in the future
|
|
16
|
+
*/
|
|
17
|
+
export const VirtualFlatList = function <T>(props: VirtualFlatListProps<T>) {
|
|
18
|
+
const {
|
|
19
|
+
data,
|
|
20
|
+
renderItem,
|
|
21
|
+
rowKey,
|
|
22
|
+
loading,
|
|
23
|
+
bounceEffect = true,
|
|
24
|
+
className,
|
|
25
|
+
style,
|
|
26
|
+
onPullDownRefresh,
|
|
27
|
+
onPullUpLoading,
|
|
28
|
+
emptyPlaceholder,
|
|
29
|
+
contentStyle,
|
|
30
|
+
gap,
|
|
31
|
+
autoLoad = true,
|
|
32
|
+
overscan = 3,
|
|
33
|
+
hideFooter,
|
|
34
|
+
estimateSize,
|
|
35
|
+
listRef,
|
|
36
|
+
pullUpLoadingMessage,
|
|
37
|
+
endOfListMessage,
|
|
38
|
+
pullDownRefreshMessage,
|
|
39
|
+
} = props;
|
|
40
|
+
|
|
41
|
+
const listWrapperRef = React.useRef<HTMLDivElement>(null);
|
|
42
|
+
const [loadingType, setLoadingType] = React.useState<LoadingType>(null);
|
|
43
|
+
const currentRangeRef = React.useRef<Range>();
|
|
44
|
+
const previousRangeRef = React.useRef<Range>();
|
|
45
|
+
|
|
46
|
+
const loadingWithDelay = useLoadingWithDelay(loading ?? false, 300);
|
|
47
|
+
|
|
48
|
+
const listData: Array<T | FooterData> = React.useMemo(() => {
|
|
49
|
+
return hideFooter
|
|
50
|
+
? data
|
|
51
|
+
: [
|
|
52
|
+
...data,
|
|
53
|
+
{
|
|
54
|
+
loading: loadingWithDelay && loadingType === "loading",
|
|
55
|
+
ended: !onPullUpLoading,
|
|
56
|
+
endMessage: endOfListMessage,
|
|
57
|
+
loadingMessage: pullUpLoadingMessage,
|
|
58
|
+
__markedAsFooterData: true,
|
|
59
|
+
} as FooterData,
|
|
60
|
+
];
|
|
61
|
+
}, [loadingWithDelay, loadingType, endOfListMessage, onPullUpLoading, pullUpLoadingMessage, data, hideFooter]);
|
|
62
|
+
|
|
63
|
+
const rangeExtractor = React.useCallback((range: Range) => {
|
|
64
|
+
previousRangeRef.current = currentRangeRef.current ?? range;
|
|
65
|
+
currentRangeRef.current = range;
|
|
66
|
+
return defaultRangeExtractor(range);
|
|
67
|
+
}, []);
|
|
68
|
+
|
|
69
|
+
const rowVirtualizer = useVirtual({
|
|
70
|
+
size: listData.length,
|
|
71
|
+
parentRef: listWrapperRef,
|
|
72
|
+
overscan,
|
|
73
|
+
estimateSize,
|
|
74
|
+
rangeExtractor,
|
|
75
|
+
});
|
|
76
|
+
const rowVirtualizerRef = React.useRef(rowVirtualizer);
|
|
77
|
+
rowVirtualizerRef.current = rowVirtualizer;
|
|
78
|
+
|
|
79
|
+
React.useImperativeHandle(listRef, () => ({
|
|
80
|
+
measure: rowVirtualizer.measure,
|
|
81
|
+
}));
|
|
82
|
+
|
|
83
|
+
React.useEffect(() => {
|
|
84
|
+
if ((loading === undefined || loading === null) && (onPullDownRefresh || onPullUpLoading)) {
|
|
85
|
+
throw new Error("Loading must be specify when given either onPullDownRefresh or onPullUpLoading");
|
|
86
|
+
}
|
|
87
|
+
}, [onPullDownRefresh, onPullUpLoading, loading]);
|
|
88
|
+
|
|
89
|
+
// the reason why onScroll event is used to simulate auto loading instead of rangeExtractor is rangeExtractor return a wrong range when on mount
|
|
90
|
+
const onAutoLoad = () => {
|
|
91
|
+
const previousRange = previousRangeRef.current;
|
|
92
|
+
const currentRange = currentRangeRef.current;
|
|
93
|
+
if (
|
|
94
|
+
previousRange &&
|
|
95
|
+
currentRange &&
|
|
96
|
+
autoLoad &&
|
|
97
|
+
onPullUpLoading &&
|
|
98
|
+
!loadingWithDelay &&
|
|
99
|
+
// check going downward
|
|
100
|
+
previousRange.end < currentRange.end &&
|
|
101
|
+
currentRange.end > data.length - 2 - (typeof autoLoad === "number" ? autoLoad : 3)
|
|
102
|
+
) {
|
|
103
|
+
setLoadingType("loading");
|
|
104
|
+
onPullUpLoading();
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
// TODO/Alvis loading more when item can not fill the whole viewport
|
|
109
|
+
|
|
110
|
+
return (
|
|
111
|
+
<Wrapper
|
|
112
|
+
className={classNames("g-virtual-flat-list", className)}
|
|
113
|
+
bounceEffect={bounceEffect}
|
|
114
|
+
listWrapperRef={listWrapperRef}
|
|
115
|
+
loadingType={loadingType}
|
|
116
|
+
onLoadingTypeChange={setLoadingType}
|
|
117
|
+
loading={loadingWithDelay}
|
|
118
|
+
onPullDownRefresh={onPullDownRefresh}
|
|
119
|
+
onPullUpLoading={onPullUpLoading}
|
|
120
|
+
innerStyle={contentStyle}
|
|
121
|
+
style={style}
|
|
122
|
+
pullDownRefreshMessage={pullDownRefreshMessage}
|
|
123
|
+
onScroll={onAutoLoad}
|
|
124
|
+
>
|
|
125
|
+
{data.length === 0 && !loadingWithDelay ? (
|
|
126
|
+
emptyPlaceholder
|
|
127
|
+
) : (
|
|
128
|
+
<div className="list" style={{height: rowVirtualizer.totalSize}}>
|
|
129
|
+
{rowVirtualizer.virtualItems.map(virtualItem => {
|
|
130
|
+
const data = listData[virtualItem.index];
|
|
131
|
+
if (listData[virtualItem.index]?.["__markedAsFooterData"] === true) {
|
|
132
|
+
const {loading, loadingMessage, endMessage, ended} = data as FooterData;
|
|
133
|
+
return <Footer key={virtualItem.index} loading={loading} ended={ended} loadingMessage={loadingMessage} endMessage={endMessage} measure={virtualItem.measureRef} />;
|
|
134
|
+
} else {
|
|
135
|
+
return <Item key={GetRowKey(rowKey, data as T, virtualItem.index)} virtualItem={virtualItem} data={data as T} gap={gap} renderItem={renderItem} />;
|
|
136
|
+
}
|
|
137
|
+
})}
|
|
138
|
+
</div>
|
|
139
|
+
)}
|
|
140
|
+
</Wrapper>
|
|
141
|
+
);
|
|
142
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import type {FlatListItemProps, FlatListProps} from "../type";
|
|
3
|
+
|
|
4
|
+
// FlatList related type
|
|
5
|
+
export type Measure = (node: HTMLElement | null) => void;
|
|
6
|
+
|
|
7
|
+
export interface VirtualFlatListHandle {
|
|
8
|
+
measure: () => void;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface VirtualFlatListProps<T> extends Omit<FlatListProps<T>, "renderItem" | "autoLoad"> {
|
|
12
|
+
renderItem: ItemRenderer<T>;
|
|
13
|
+
/** Automatic load new data when scroll to bottom, a number {X} mean: when to scroll to last {X} items, auto load is going to be triggered */
|
|
14
|
+
autoLoad?: boolean | number;
|
|
15
|
+
/** Must wrap with React.useCallback */
|
|
16
|
+
estimateSize?: (index: number) => number;
|
|
17
|
+
/** The amount of items to load both behind and ahead of the current window range, default = 3 */
|
|
18
|
+
overscan?: number;
|
|
19
|
+
listRef?: React.RefObject<VirtualFlatListHandle>;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface VirtualFlatListItemProps<T> extends FlatListItemProps<T> {
|
|
23
|
+
measure: Measure;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export type ItemRenderer<T> = React.FunctionComponent<VirtualFlatListItemProps<T>>;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {Wrapper} from "./shared/Wrapper";
|
|
3
|
+
import type {FlatListProps, LoadingType} from "./type";
|
|
4
|
+
import {Footer} from "./shared/Footer";
|
|
5
|
+
import {useLoadingWithDelay} from "./shared/hooks/useLoadingWithDelay";
|
|
6
|
+
import {classNames} from "../../util/ClassNames";
|
|
7
|
+
import {GetRowKey} from "./shared/GetRowKey";
|
|
8
|
+
|
|
9
|
+
export const FlatList = function <T>(props: FlatListProps<T>) {
|
|
10
|
+
const {
|
|
11
|
+
data,
|
|
12
|
+
renderItem: ItemRenderer,
|
|
13
|
+
rowKey,
|
|
14
|
+
loading,
|
|
15
|
+
bounceEffect = true,
|
|
16
|
+
className,
|
|
17
|
+
style,
|
|
18
|
+
gap,
|
|
19
|
+
onPullDownRefresh,
|
|
20
|
+
onPullUpLoading,
|
|
21
|
+
contentStyle,
|
|
22
|
+
emptyPlaceholder,
|
|
23
|
+
pullDownRefreshingMessage,
|
|
24
|
+
pullUpLoadMoreMessage,
|
|
25
|
+
pullDownRefreshMessage,
|
|
26
|
+
pullUpLoadingMessage,
|
|
27
|
+
endOfListMessage,
|
|
28
|
+
hideFooter,
|
|
29
|
+
} = props;
|
|
30
|
+
|
|
31
|
+
const listWrapperRef = React.useRef<HTMLDivElement>(null);
|
|
32
|
+
const [loadingType, setLoadingType] = React.useState<LoadingType>(null);
|
|
33
|
+
const loadingWithDelay = useLoadingWithDelay(loading ?? false, 250);
|
|
34
|
+
|
|
35
|
+
React.useEffect(() => {
|
|
36
|
+
if ((loading === undefined || loading === null) && (onPullDownRefresh || onPullUpLoading)) {
|
|
37
|
+
throw new Error("Loading must be specify when given either onPullDownRefresh or onPullUpLoading");
|
|
38
|
+
}
|
|
39
|
+
}, [onPullDownRefresh, onPullUpLoading, loading]);
|
|
40
|
+
|
|
41
|
+
// Automatically loading new data when scroll near the bottom
|
|
42
|
+
const onScroll = (e: React.UIEvent) => {
|
|
43
|
+
if (!loadingWithDelay && onPullUpLoading) {
|
|
44
|
+
const {scrollHeight, scrollTop, clientHeight} = e.currentTarget;
|
|
45
|
+
if (scrollHeight * 0.8 < clientHeight + scrollTop) {
|
|
46
|
+
setLoadingType("loading");
|
|
47
|
+
onPullUpLoading?.();
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const margin = React.useMemo(
|
|
53
|
+
(): React.CSSProperties => (gap ? (typeof gap === "number" ? {margin: gap} : {marginLeft: gap.left, marginRight: gap.right, marginBottom: gap.bottom, marginTop: gap.top}) : {}),
|
|
54
|
+
[gap]
|
|
55
|
+
);
|
|
56
|
+
|
|
57
|
+
return (
|
|
58
|
+
<Wrapper
|
|
59
|
+
className={classNames("g-flat-list", className)}
|
|
60
|
+
listWrapperRef={listWrapperRef}
|
|
61
|
+
bounceEffect={bounceEffect}
|
|
62
|
+
innerStyle={contentStyle}
|
|
63
|
+
loadingType={loadingType}
|
|
64
|
+
onLoadingTypeChange={setLoadingType}
|
|
65
|
+
loading={loadingWithDelay}
|
|
66
|
+
style={style}
|
|
67
|
+
onPullDownRefresh={onPullDownRefresh}
|
|
68
|
+
onPullUpLoading={onPullUpLoading}
|
|
69
|
+
pullDownRefreshMessage={pullDownRefreshMessage}
|
|
70
|
+
pullDownRefreshingMessage={pullDownRefreshingMessage}
|
|
71
|
+
onScroll={onScroll}
|
|
72
|
+
>
|
|
73
|
+
{data.length === 0 ? (
|
|
74
|
+
emptyPlaceholder
|
|
75
|
+
) : (
|
|
76
|
+
<div className="list">
|
|
77
|
+
{data.map((d, i) => (
|
|
78
|
+
<div className="g-flat-list-item" key={GetRowKey(rowKey, d, i)} style={{...margin}}>
|
|
79
|
+
<ItemRenderer data={d} index={i} />
|
|
80
|
+
</div>
|
|
81
|
+
))}
|
|
82
|
+
{!hideFooter && (
|
|
83
|
+
<Footer
|
|
84
|
+
loading={loadingWithDelay && loadingType === "loading"}
|
|
85
|
+
ended={!onPullUpLoading}
|
|
86
|
+
loadMoreMessage={pullUpLoadMoreMessage}
|
|
87
|
+
loadingMessage={pullUpLoadingMessage}
|
|
88
|
+
endMessage={endOfListMessage}
|
|
89
|
+
/>
|
|
90
|
+
)}
|
|
91
|
+
</div>
|
|
92
|
+
)}
|
|
93
|
+
</Wrapper>
|
|
94
|
+
);
|
|
95
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type {Measure} from "../../VirtualFlatList/type";
|
|
3
|
+
import type {FooterData} from "../../type";
|
|
4
|
+
import {Spinner} from "../Spinner";
|
|
5
|
+
import "./index.less";
|
|
6
|
+
|
|
7
|
+
export interface Props extends Omit<FooterData, "__markedAsFooterData"> {
|
|
8
|
+
measure?: Measure;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const Footer = (props: Props) => {
|
|
12
|
+
const {loading, ended, loadMoreMessage, loadingMessage, endMessage, measure} = props;
|
|
13
|
+
const measureRef = React.useRef(measure);
|
|
14
|
+
measureRef.current = measure;
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<div className="g-flat-list-footer" ref={measure}>
|
|
18
|
+
{loading && (typeof loadingMessage !== "object" ? <Spinner loading message={loadingMessage ?? "loading..."} /> : loadingMessage)}
|
|
19
|
+
{ended && !loading && (endMessage ?? "All data loaded")}
|
|
20
|
+
{!ended && !loading && (loadMoreMessage ?? "Pull up to loading more")}
|
|
21
|
+
</div>
|
|
22
|
+
);
|
|
23
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type {RowKey} from "../type";
|
|
2
|
+
|
|
3
|
+
export function GetRowKey<T>(rowKey: RowKey<T>, data: T, index: number): string | number {
|
|
4
|
+
if (rowKey === "index") {
|
|
5
|
+
return index;
|
|
6
|
+
} else if (typeof rowKey === "function") {
|
|
7
|
+
return rowKey(data, index);
|
|
8
|
+
} else {
|
|
9
|
+
return data[rowKey] as any;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {Spin} from "../../../Spin";
|
|
3
|
+
import "./index.less";
|
|
4
|
+
|
|
5
|
+
interface Props {
|
|
6
|
+
loading: boolean;
|
|
7
|
+
message?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const Spinner = (props: Props) => {
|
|
11
|
+
const {loading, message} = props;
|
|
12
|
+
return (
|
|
13
|
+
<div className="g-flat-list-spinner">
|
|
14
|
+
<Spin spinning={loading} size="small" />
|
|
15
|
+
<div className="message">{message}</div>
|
|
16
|
+
</div>
|
|
17
|
+
);
|
|
18
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {Spinner} from "../Spinner";
|
|
3
|
+
|
|
4
|
+
interface Props {
|
|
5
|
+
loading: boolean;
|
|
6
|
+
message?: React.ReactElement | string;
|
|
7
|
+
loadingMessage?: React.ReactElement | string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const Loading = (props: Props) => {
|
|
11
|
+
const {loading, message, loadingMessage} = props;
|
|
12
|
+
return (
|
|
13
|
+
<div className="g-flat-list-loading">
|
|
14
|
+
{loading ? typeof loadingMessage !== "object" ? <Spinner loading={loading} message={loadingMessage ?? "loading..."} /> : loadingMessage : message ?? "Release to refresh"}
|
|
15
|
+
</div>
|
|
16
|
+
);
|
|
17
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {classNames} from "../../../../util/ClassNames";
|
|
3
|
+
import {Direction} from "../../../../hooks/useSwipe";
|
|
4
|
+
import {useTransform} from "../../../../hooks/useTransform";
|
|
5
|
+
import {useBounceSwipe} from "../hooks/useBounceSwipe";
|
|
6
|
+
import {useElementScrollState} from "../hooks/useElementScrollState";
|
|
7
|
+
import type {FlatListProps, LoadingType} from "../../type";
|
|
8
|
+
import {PULL_DOWN_REFRESH_THRESHOLD} from "../../type";
|
|
9
|
+
import {Loading} from "./Loading";
|
|
10
|
+
import "./index.less";
|
|
11
|
+
|
|
12
|
+
interface Props<T>
|
|
13
|
+
extends Pick<FlatListProps<T>, "loading" | "bounceEffect" | "onPullUpLoading" | "onPullDownRefresh" | "className" | "style" | "pullDownRefreshMessage" | "pullDownRefreshingMessage"> {
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
listWrapperRef: React.RefObject<HTMLDivElement>;
|
|
16
|
+
loadingType: LoadingType;
|
|
17
|
+
onLoadingTypeChange: (type: LoadingType) => void;
|
|
18
|
+
innerClassName?: string;
|
|
19
|
+
innerStyle?: React.CSSProperties;
|
|
20
|
+
onScroll?: (event: React.UIEvent) => void;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export const Wrapper = function <T>(props: Props<T>) {
|
|
24
|
+
const {
|
|
25
|
+
children,
|
|
26
|
+
bounceEffect,
|
|
27
|
+
listWrapperRef,
|
|
28
|
+
loadingType,
|
|
29
|
+
onLoadingTypeChange,
|
|
30
|
+
loading = false,
|
|
31
|
+
onPullDownRefresh,
|
|
32
|
+
onPullUpLoading,
|
|
33
|
+
className,
|
|
34
|
+
innerClassName,
|
|
35
|
+
style,
|
|
36
|
+
innerStyle,
|
|
37
|
+
pullDownRefreshMessage,
|
|
38
|
+
pullDownRefreshingMessage,
|
|
39
|
+
onScroll,
|
|
40
|
+
} = props;
|
|
41
|
+
const startOffsetRef = React.useRef(0);
|
|
42
|
+
|
|
43
|
+
const animatedRef = React.useRef<HTMLDivElement>(null);
|
|
44
|
+
|
|
45
|
+
const loadingTypeRef = React.useRef<LoadingType>(null);
|
|
46
|
+
loadingTypeRef.current = loadingType;
|
|
47
|
+
|
|
48
|
+
const onLoadingTypeChangeRef = React.useRef(onLoadingTypeChange);
|
|
49
|
+
onLoadingTypeChangeRef.current = onLoadingTypeChange;
|
|
50
|
+
|
|
51
|
+
const {isScrollable} = useElementScrollState(listWrapperRef);
|
|
52
|
+
const transform = useTransform(animatedRef);
|
|
53
|
+
const transformRef = React.useRef(transform);
|
|
54
|
+
transformRef.current = transform;
|
|
55
|
+
|
|
56
|
+
const reset = React.useCallback(() => {
|
|
57
|
+
startOffsetRef.current = 0;
|
|
58
|
+
}, []);
|
|
59
|
+
|
|
60
|
+
const handlers = useBounceSwipe({
|
|
61
|
+
axis: "vertical",
|
|
62
|
+
contentRef: listWrapperRef,
|
|
63
|
+
animatedRef,
|
|
64
|
+
onStart: ({delta: [, y]}) => {
|
|
65
|
+
startOffsetRef.current = y;
|
|
66
|
+
},
|
|
67
|
+
onEnd: ({delta, direction, boundary}) => {
|
|
68
|
+
if (loading) {
|
|
69
|
+
if (boundary !== "upper") {
|
|
70
|
+
transform.to({
|
|
71
|
+
y: PULL_DOWN_REFRESH_THRESHOLD,
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
} else {
|
|
75
|
+
if (Math.abs(startOffsetRef.current - delta[1]) >= PULL_DOWN_REFRESH_THRESHOLD) {
|
|
76
|
+
const scrollable = isScrollable("vertical");
|
|
77
|
+
if (boundary === "upper" || (!scrollable && direction === Direction.DOWN)) {
|
|
78
|
+
onLoadingTypeChange("refresh");
|
|
79
|
+
onPullDownRefresh?.();
|
|
80
|
+
} else {
|
|
81
|
+
onLoadingTypeChange("loading");
|
|
82
|
+
onPullUpLoading?.();
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
reset();
|
|
87
|
+
},
|
|
88
|
+
onCancel: reset,
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
const handleScroll = React.useCallback(
|
|
92
|
+
(e: React.UIEvent) => {
|
|
93
|
+
transformRef.current.clear();
|
|
94
|
+
onScroll?.(e);
|
|
95
|
+
},
|
|
96
|
+
[onScroll]
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
React.useEffect(() => {
|
|
100
|
+
if (loading) {
|
|
101
|
+
if (loadingTypeRef.current === "refresh") {
|
|
102
|
+
transformRef.current.to({
|
|
103
|
+
y: PULL_DOWN_REFRESH_THRESHOLD,
|
|
104
|
+
immediate: false,
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
} else {
|
|
108
|
+
transformRef.current.clear();
|
|
109
|
+
onLoadingTypeChangeRef.current(null);
|
|
110
|
+
}
|
|
111
|
+
}, [loading]);
|
|
112
|
+
|
|
113
|
+
return (
|
|
114
|
+
<div className={classNames(className, "g-flat-list-wrapper")} style={style} {...(bounceEffect ? handlers : {})}>
|
|
115
|
+
<div className={classNames("inner-container", innerClassName)} style={innerStyle} ref={animatedRef}>
|
|
116
|
+
<Loading loading={loading && loadingType === "refresh"} message={pullDownRefreshMessage} loadingMessage={pullDownRefreshingMessage} />
|
|
117
|
+
<div className="list-wrapper" ref={listWrapperRef} onScroll={handleScroll}>
|
|
118
|
+
{children}
|
|
119
|
+
</div>
|
|
120
|
+
</div>
|
|
121
|
+
</div>
|
|
122
|
+
);
|
|
123
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {useElementScrollState} from "./useElementScrollState";
|
|
3
|
+
import type {SwipeHookResult, SwipeState} from "../../../../hooks/useSwipe";
|
|
4
|
+
import {Direction, useSwipe} from "../../../../hooks/useSwipe";
|
|
5
|
+
import {useTransform} from "../../../../hooks/useTransform";
|
|
6
|
+
|
|
7
|
+
export type Boundary = "upper" | "lower" | null;
|
|
8
|
+
|
|
9
|
+
interface BounceSwipeState extends SwipeState {
|
|
10
|
+
// always be null when inner content is not scrollable
|
|
11
|
+
boundary: Boundary;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export type BounceSwipeHandler = (state: BounceSwipeState) => void;
|
|
15
|
+
|
|
16
|
+
type BounceSwipeHookResult = SwipeHookResult;
|
|
17
|
+
|
|
18
|
+
interface BounceSwipeHandlers {
|
|
19
|
+
onMove?: BounceSwipeHandler;
|
|
20
|
+
onStart?: BounceSwipeHandler;
|
|
21
|
+
onEnd?: BounceSwipeHandler;
|
|
22
|
+
onCancel?: BounceSwipeHandler;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
interface BounceSwipeOption extends BounceSwipeHandlers {
|
|
26
|
+
axis: "vertical" | "horizontal";
|
|
27
|
+
// Use to determine content is scrollable or not
|
|
28
|
+
contentRef: React.RefObject<HTMLElement>;
|
|
29
|
+
// Element Ref which is going to be applied bounce transform and animation
|
|
30
|
+
animatedRef: React.RefObject<HTMLElement>;
|
|
31
|
+
baseOffset?: number;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export const useBounceSwipe = (options: BounceSwipeOption): BounceSwipeHookResult => {
|
|
35
|
+
const {contentRef, animatedRef, axis, baseOffset = 0, onStart, onMove, onEnd, onCancel} = options;
|
|
36
|
+
const [boundary, setBoundary] = React.useState<Boundary>(null);
|
|
37
|
+
const transform = useTransform(animatedRef, {duration: 300, timingFunction: "cubic-bezier(0, 0.61, 0.28, 1.22)", property: "transform"});
|
|
38
|
+
const startOffsetRef = React.useRef(0);
|
|
39
|
+
|
|
40
|
+
const isX = React.useMemo(() => axis === "horizontal", [axis]);
|
|
41
|
+
const isY = React.useMemo(() => axis === "vertical", [axis]);
|
|
42
|
+
const {isScrollable, isScrollTop, isScrollBottom, isScrollLeft, isScrollRight} = useElementScrollState(contentRef);
|
|
43
|
+
|
|
44
|
+
const threshold = ({direction}: SwipeState): boolean => {
|
|
45
|
+
if (isY) {
|
|
46
|
+
return (direction === Direction.DOWN && isScrollTop()) || (direction === Direction.UP && isScrollBottom());
|
|
47
|
+
} else {
|
|
48
|
+
return (direction === Direction.RIGHT && isScrollLeft()) || (direction === Direction.LEFT && isScrollRight());
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const clearSwipe = () => {
|
|
53
|
+
startOffsetRef.current = 0;
|
|
54
|
+
setBoundary(null);
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
React.useEffect(() => {
|
|
58
|
+
// Changing overflow style to fixed laggy bounce swipe in chrome
|
|
59
|
+
if (contentRef.current) {
|
|
60
|
+
if (boundary) {
|
|
61
|
+
contentRef.current.style.overflow = "hidden";
|
|
62
|
+
} else {
|
|
63
|
+
contentRef.current.style.overflow = "auto";
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}, [boundary, contentRef]);
|
|
67
|
+
|
|
68
|
+
const getOffset = (delta: [number, number], boundary: Boundary): Readonly<[number, number]> | null => {
|
|
69
|
+
let resultOffset: Readonly<[number, number]> | null = [0, 0];
|
|
70
|
+
const limitedOffset = delta[isX ? 0 : 1] - startOffsetRef.current + baseOffset;
|
|
71
|
+
const computeResultOffset = (value: number) => [isX ? value : 0, isY ? value : 0] as const;
|
|
72
|
+
if (boundary === "upper") {
|
|
73
|
+
resultOffset = limitedOffset < 0 ? null : computeResultOffset(limitedOffset);
|
|
74
|
+
} else if (boundary === "lower") {
|
|
75
|
+
resultOffset = limitedOffset > 0 ? null : computeResultOffset(limitedOffset);
|
|
76
|
+
} else {
|
|
77
|
+
resultOffset = computeResultOffset(limitedOffset);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return resultOffset;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
const handlers = useSwipe(
|
|
84
|
+
{
|
|
85
|
+
onStart: state => {
|
|
86
|
+
const {
|
|
87
|
+
delta: [x, y],
|
|
88
|
+
direction,
|
|
89
|
+
} = state;
|
|
90
|
+
isScrollable(axis) && setBoundary(direction === Direction.DOWN ? "upper" : "lower");
|
|
91
|
+
startOffsetRef.current = isX ? x : y;
|
|
92
|
+
onStart?.({...state, boundary});
|
|
93
|
+
},
|
|
94
|
+
onMove: state => {
|
|
95
|
+
const {delta, cancel} = state;
|
|
96
|
+
const offset = getOffset(delta, boundary);
|
|
97
|
+
if (!offset) {
|
|
98
|
+
cancel();
|
|
99
|
+
} else {
|
|
100
|
+
const [x, y] = offset;
|
|
101
|
+
transform.to({x, y, immediate: true});
|
|
102
|
+
onMove?.({...state, boundary});
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
onEnd: state => {
|
|
106
|
+
onEnd?.({...state, boundary});
|
|
107
|
+
transform.clear();
|
|
108
|
+
clearSwipe();
|
|
109
|
+
},
|
|
110
|
+
onCancel: state => {
|
|
111
|
+
onCancel?.({...state, boundary});
|
|
112
|
+
transform.clear();
|
|
113
|
+
clearSwipe();
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
{threshold}
|
|
117
|
+
);
|
|
118
|
+
|
|
119
|
+
return handlers;
|
|
120
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
// need to cache scrollable results
|
|
4
|
+
|
|
5
|
+
// only change when window resize, data change, and css change
|
|
6
|
+
|
|
7
|
+
export const useElementScrollState = (ref: React.RefObject<HTMLElement | null>) => {
|
|
8
|
+
const isScrollable = React.useCallback(
|
|
9
|
+
(direction: "vertical" | "horizontal") => {
|
|
10
|
+
if (ref.current) {
|
|
11
|
+
const element = ref.current;
|
|
12
|
+
return direction === "vertical" ? element.scrollHeight > element.clientHeight : element.scrollWidth > element.clientWidth;
|
|
13
|
+
} else {
|
|
14
|
+
return false;
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
[ref]
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
const isScrollTop = React.useCallback(() => ref.current?.scrollTop === 0, [ref]);
|
|
21
|
+
const isScrollBottom = React.useCallback(() => {
|
|
22
|
+
const element = ref.current;
|
|
23
|
+
if (element) {
|
|
24
|
+
const {scrollHeight, scrollTop, clientHeight} = element;
|
|
25
|
+
return Math.ceil(scrollTop) + clientHeight >= scrollHeight;
|
|
26
|
+
} else {
|
|
27
|
+
return false;
|
|
28
|
+
}
|
|
29
|
+
}, [ref]);
|
|
30
|
+
|
|
31
|
+
const isScrollLeft = React.useCallback(() => ref.current?.scrollLeft === 0, [ref]);
|
|
32
|
+
const isScrollRight = React.useCallback(() => {
|
|
33
|
+
const element = ref.current;
|
|
34
|
+
if (element) {
|
|
35
|
+
const {scrollWidth, scrollLeft, clientWidth} = element;
|
|
36
|
+
return Math.ceil(scrollLeft) + clientWidth >= scrollWidth;
|
|
37
|
+
} else {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
}, [ref]);
|
|
41
|
+
|
|
42
|
+
return {isScrollTop, isScrollBottom, isScrollLeft, isScrollRight, isScrollable};
|
|
43
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* This hook prevent loading state causing ui to flash
|
|
5
|
+
* For instance, in real life loading only last for 50ms, so it make loading ui appear in a blink of an eye, which is not good
|
|
6
|
+
* Hook will only delay the loading state change from true to false, it force loading ui at least appear for a period of time
|
|
7
|
+
* @param loading
|
|
8
|
+
* @param delay
|
|
9
|
+
* @returns
|
|
10
|
+
*/
|
|
11
|
+
export const useLoadingWithDelay = (loading: boolean, delay: number): Readonly<boolean> => {
|
|
12
|
+
const [loadingWithDelay, setLoadingWithDelay] = React.useState(loading);
|
|
13
|
+
const startTimeRef = React.useRef<number | null>(null);
|
|
14
|
+
const setLoadingRef = React.useRef<(value: boolean) => void>();
|
|
15
|
+
|
|
16
|
+
const setLoading = React.useCallback(
|
|
17
|
+
(value: boolean) => {
|
|
18
|
+
if (value) {
|
|
19
|
+
setLoadingWithDelay(true);
|
|
20
|
+
startTimeRef.current = Date.now();
|
|
21
|
+
setTimeout(() => (startTimeRef.current = null), delay);
|
|
22
|
+
} else {
|
|
23
|
+
if (startTimeRef.current) {
|
|
24
|
+
setTimeout(() => setLoadingWithDelay(false), Math.abs(delay - (Date.now() - startTimeRef.current)));
|
|
25
|
+
} else {
|
|
26
|
+
setLoadingWithDelay(value);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
[delay]
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
setLoadingRef.current = setLoading;
|
|
34
|
+
|
|
35
|
+
React.useEffect(() => {
|
|
36
|
+
setLoadingRef.current?.(loading);
|
|
37
|
+
}, [loading]);
|
|
38
|
+
|
|
39
|
+
return loadingWithDelay;
|
|
40
|
+
};
|