pb-sxp-ui 1.0.17 → 1.0.19
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/dist/index.cjs +13065 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +1683 -0
- package/dist/index.js +13033 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.cjs +7 -0
- package/dist/index.min.cjs.map +1 -0
- package/dist/index.min.js +7 -0
- package/dist/index.min.js.map +1 -0
- package/dist/pb-ui.js +13061 -0
- package/dist/pb-ui.js.map +1 -0
- package/dist/pb-ui.min.js +7 -0
- package/dist/pb-ui.min.js.map +1 -0
- package/es/core/Pagebuilder/PagebuilderClass.d.ts +15 -0
- package/es/core/Pagebuilder/PagebuilderClass.js +42 -0
- package/es/core/Pagebuilder/index.d.ts +3 -0
- package/es/core/Pagebuilder/index.js +96 -0
- package/es/core/Pagebuilder/type.d.ts +55 -0
- package/es/core/Pagebuilder/type.js +1 -0
- package/es/core/components/SxpPageCore/index.d.ts +12 -0
- package/es/core/components/SxpPageCore/index.js +26 -0
- package/es/core/components/SxpPageRender/ExpandableText.d.ts +14 -0
- package/es/core/components/SxpPageRender/ExpandableText.js +52 -0
- package/es/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +6 -0
- package/es/core/components/SxpPageRender/FingerSwipeTip/index.js +19 -0
- package/es/core/components/SxpPageRender/Hashtag/index.d.ts +12 -0
- package/es/core/components/SxpPageRender/Hashtag/index.js +40 -0
- package/es/core/components/SxpPageRender/LikeButton/index.d.ts +11 -0
- package/es/core/components/SxpPageRender/LikeButton/index.js +58 -0
- package/es/core/components/SxpPageRender/Modal/index.d.ts +11 -0
- package/es/core/components/SxpPageRender/Modal/index.js +48 -0
- package/es/core/components/SxpPageRender/Navbar.d.ts +9 -0
- package/es/core/components/SxpPageRender/Navbar.js +10 -0
- package/es/core/components/SxpPageRender/Nudge/index.d.ts +24 -0
- package/es/core/components/SxpPageRender/Nudge/index.js +13 -0
- package/es/core/components/SxpPageRender/PictureGroup/Picture.d.ts +8 -0
- package/es/core/components/SxpPageRender/PictureGroup/Picture.js +54 -0
- package/es/core/components/SxpPageRender/PictureGroup/index.d.ts +13 -0
- package/es/core/components/SxpPageRender/PictureGroup/index.js +31 -0
- package/es/core/components/SxpPageRender/Popup/index.d.ts +3 -0
- package/es/core/components/SxpPageRender/Popup/index.js +62 -0
- package/es/core/components/SxpPageRender/RenderCard.d.ts +11 -0
- package/es/core/components/SxpPageRender/RenderCard.js +43 -0
- package/es/core/components/SxpPageRender/ToggleButton/index.d.ts +10 -0
- package/es/core/components/SxpPageRender/ToggleButton/index.js +13 -0
- package/es/core/components/SxpPageRender/VideoWidget/index.d.ts +12 -0
- package/es/core/components/SxpPageRender/VideoWidget/index.js +219 -0
- package/es/core/components/SxpPageRender/WaterFall/List.d.ts +4 -0
- package/es/core/components/SxpPageRender/WaterFall/List.js +183 -0
- package/es/core/components/SxpPageRender/WaterFall/WaterfallList.d.ts +4 -0
- package/es/core/components/SxpPageRender/WaterFall/WaterfallList.js +319 -0
- package/es/core/components/SxpPageRender/WaterFall/index.d.ts +7 -0
- package/es/core/components/SxpPageRender/WaterFall/index.js +101 -0
- package/es/core/components/SxpPageRender/WaterFall/preview.json +1242 -0
- package/es/core/components/SxpPageRender/fakeData.d.ts +130 -0
- package/es/core/components/SxpPageRender/fakeData.js +899 -0
- package/es/core/components/SxpPageRender/index.d.ts +57 -0
- package/es/core/components/SxpPageRender/index.js +378 -0
- package/es/core/components/SxpPageRender/typing.d.ts +66 -0
- package/es/core/components/SxpPageRender/typing.js +1 -0
- package/es/core/components/SxpPageRender/useIconLink.d.ts +1 -0
- package/es/core/components/SxpPageRender/useIconLink.js +13 -0
- package/es/core/context/DataSourceProvider.d.ts +17 -0
- package/es/core/context/DataSourceProvider.js +45 -0
- package/es/core/context/EditorContext.d.ts +83 -0
- package/es/core/context/EditorContext.js +147 -0
- package/es/core/context/EditorDataProvider.d.ts +20 -0
- package/es/core/context/EditorDataProvider.js +23 -0
- package/es/core/context/SxpDataSourceProvider.d.ts +94 -0
- package/es/core/context/SxpDataSourceProvider.js +208 -0
- package/es/core/create.d.ts +37 -0
- package/es/core/create.js +4 -0
- package/es/core/hoc/withBindDataSource.d.ts +6 -0
- package/es/core/hoc/withBindDataSource.js +61 -0
- package/es/core/hooks/index.d.ts +4 -0
- package/es/core/hooks/index.js +4 -0
- package/es/core/hooks/useCurrentNode.d.ts +10 -0
- package/es/core/hooks/useCurrentNode.js +11 -0
- package/es/core/hooks/useDataSource.d.ts +2 -0
- package/es/core/hooks/useDataSource.js +6 -0
- package/es/core/hooks/useEditor.d.ts +1 -0
- package/es/core/hooks/useEditor.js +5 -0
- package/es/core/hooks/useEventReport.d.ts +5 -0
- package/es/core/hooks/useEventReport.js +73 -0
- package/es/core/hooks/useOnScreen.d.ts +2 -0
- package/es/core/hooks/useOnScreen.js +19 -0
- package/es/core/hooks/useSxpDataSource.d.ts +1 -0
- package/es/core/hooks/useSxpDataSource.js +5 -0
- package/es/core/index.d.ts +3 -0
- package/es/core/index.js +1 -0
- package/es/core/schema.d.ts +58 -0
- package/es/core/schema.js +1 -0
- package/es/core/utils/event.d.ts +7 -0
- package/es/core/utils/event.js +8 -0
- package/es/core/utils/getDataByDS.d.ts +6 -0
- package/es/core/utils/getDataByDS.js +39 -0
- package/es/core/utils/getSxpTokenInfo.d.ts +2 -0
- package/es/core/utils/getSxpTokenInfo.js +26 -0
- package/es/core/utils/localStore.d.ts +5 -0
- package/es/core/utils/localStore.js +22 -0
- package/es/core/utils/materials.d.ts +11 -0
- package/es/core/utils/materials.js +31 -0
- package/es/core/utils/sessionStore.d.ts +3 -0
- package/es/core/utils/sessionStore.js +26 -0
- package/es/core/utils/tool.d.ts +5 -0
- package/es/core/utils/tool.js +48 -0
- package/es/core/utils/unzip.d.ts +1 -0
- package/es/core/utils/unzip.js +10 -0
- package/es/index.d.ts +11 -0
- package/es/index.js +13 -0
- package/es/materials/index.d.ts +1 -0
- package/es/materials/index.js +1 -0
- package/es/materials/sxp/HashTag/index.d.ts +14 -0
- package/es/materials/sxp/HashTag/index.js +6 -0
- package/es/materials/sxp/HashTag/material.d.ts +2 -0
- package/es/materials/sxp/HashTag/material.js +52 -0
- package/es/materials/sxp/HashTag/settingRender.d.ts +125 -0
- package/es/materials/sxp/HashTag/settingRender.js +157 -0
- package/es/materials/sxp/defaultSetting.d.ts +11 -0
- package/es/materials/sxp/defaultSetting.js +7 -0
- package/es/materials/sxp/index.d.ts +3 -0
- package/es/materials/sxp/index.js +3 -0
- package/es/materials/sxp/popup/AppointForm/index.d.ts +18 -0
- package/es/materials/sxp/popup/AppointForm/index.js +76 -0
- package/es/materials/sxp/popup/AppointForm/interactionRender.d.ts +8 -0
- package/es/materials/sxp/popup/AppointForm/interactionRender.js +11 -0
- package/es/materials/sxp/popup/AppointForm/material.d.ts +2 -0
- package/es/materials/sxp/popup/AppointForm/material.js +35 -0
- package/es/materials/sxp/popup/AppointForm/settingRender.d.ts +68 -0
- package/es/materials/sxp/popup/AppointForm/settingRender.js +93 -0
- package/es/materials/sxp/popup/CommodityDetail/index.d.ts +34 -0
- package/es/materials/sxp/popup/CommodityDetail/index.js +110 -0
- package/es/materials/sxp/popup/CommodityDetail/material.d.ts +2 -0
- package/es/materials/sxp/popup/CommodityDetail/material.js +51 -0
- package/es/materials/sxp/popup/CommodityDetail/settingRender.d.ts +137 -0
- package/es/materials/sxp/popup/CommodityDetail/settingRender.js +171 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/index.d.ts +19 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/index.js +163 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/material.d.ts +2 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/material.js +16 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +35 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +134 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/material.d.ts +2 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/material.js +61 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +137 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +175 -0
- package/es/materials/sxp/popup/Prompt/index.d.ts +11 -0
- package/es/materials/sxp/popup/Prompt/index.js +20 -0
- package/es/materials/sxp/popup/Prompt/interactionRender.d.ts +8 -0
- package/es/materials/sxp/popup/Prompt/interactionRender.js +11 -0
- package/es/materials/sxp/popup/Prompt/material.d.ts +2 -0
- package/es/materials/sxp/popup/Prompt/material.js +28 -0
- package/es/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
- package/es/materials/sxp/popup/Prompt/settingRender.js +18 -0
- package/es/materials/sxp/popup/index.d.ts +4 -0
- package/es/materials/sxp/popup/index.js +4 -0
- package/es/materials/sxp/template/Appoint/index.d.ts +15 -0
- package/es/materials/sxp/template/Appoint/index.js +16 -0
- package/es/materials/sxp/template/Appoint/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/Appoint/interactionRender.js +11 -0
- package/es/materials/sxp/template/Appoint/material.d.ts +2 -0
- package/es/materials/sxp/template/Appoint/material.js +46 -0
- package/es/materials/sxp/template/Commodity/index.d.ts +15 -0
- package/es/materials/sxp/template/Commodity/index.js +27 -0
- package/es/materials/sxp/template/Commodity/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/Commodity/interactionRender.js +11 -0
- package/es/materials/sxp/template/Commodity/material.d.ts +2 -0
- package/es/materials/sxp/template/Commodity/material.js +52 -0
- package/es/materials/sxp/template/CommodityDiro/index.d.ts +15 -0
- package/es/materials/sxp/template/CommodityDiro/index.js +27 -0
- package/es/materials/sxp/template/CommodityDiro/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/CommodityDiro/interactionRender.js +11 -0
- package/es/materials/sxp/template/CommodityDiro/material.d.ts +2 -0
- package/es/materials/sxp/template/CommodityDiro/material.js +52 -0
- package/es/materials/sxp/template/CommodityDiroNew/index.d.ts +15 -0
- package/es/materials/sxp/template/CommodityDiroNew/index.js +27 -0
- package/es/materials/sxp/template/CommodityDiroNew/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/CommodityDiroNew/interactionRender.js +11 -0
- package/es/materials/sxp/template/CommodityDiroNew/material.d.ts +2 -0
- package/es/materials/sxp/template/CommodityDiroNew/material.js +53 -0
- package/es/materials/sxp/template/Link/index.d.ts +14 -0
- package/es/materials/sxp/template/Link/index.js +32 -0
- package/es/materials/sxp/template/Link/material.d.ts +2 -0
- package/es/materials/sxp/template/Link/material.js +44 -0
- package/es/materials/sxp/template/MultiCommodity/index.d.ts +16 -0
- package/es/materials/sxp/template/MultiCommodity/index.js +52 -0
- package/es/materials/sxp/template/MultiCommodity/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/MultiCommodity/interactionRender.js +11 -0
- package/es/materials/sxp/template/MultiCommodity/material.d.ts +2 -0
- package/es/materials/sxp/template/MultiCommodity/material.js +52 -0
- package/es/materials/sxp/template/MultiCommodityDiro/index.d.ts +16 -0
- package/es/materials/sxp/template/MultiCommodityDiro/index.js +51 -0
- package/es/materials/sxp/template/MultiCommodityDiro/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/MultiCommodityDiro/interactionRender.js +11 -0
- package/es/materials/sxp/template/MultiCommodityDiro/material.d.ts +2 -0
- package/es/materials/sxp/template/MultiCommodityDiro/material.js +52 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/index.d.ts +16 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/index.js +52 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/interactionRender.js +11 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/material.d.ts +2 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/material.js +53 -0
- package/es/materials/sxp/template/components/EventProvider.d.ts +13 -0
- package/es/materials/sxp/template/components/EventProvider.js +47 -0
- package/es/materials/sxp/template/components/Img.d.ts +10 -0
- package/es/materials/sxp/template/components/Img.js +19 -0
- package/es/materials/sxp/template/components/Scroll.d.ts +10 -0
- package/es/materials/sxp/template/components/Scroll.js +10 -0
- package/es/materials/sxp/template/components/settingRender.d.ts +129 -0
- package/es/materials/sxp/template/components/settingRender.js +219 -0
- package/es/materials/sxp/template/components/typing.d.ts +6 -0
- package/es/materials/sxp/template/components/typing.js +1 -0
- package/es/materials/sxp/template/index.d.ts +8 -0
- package/es/materials/sxp/template/index.js +8 -0
- package/lib/core/Pagebuilder/PagebuilderClass.d.ts +15 -0
- package/lib/core/Pagebuilder/PagebuilderClass.js +45 -0
- package/lib/core/Pagebuilder/index.d.ts +3 -0
- package/lib/core/Pagebuilder/index.js +99 -0
- package/lib/core/Pagebuilder/type.d.ts +55 -0
- package/lib/core/Pagebuilder/type.js +2 -0
- package/lib/core/components/SxpPageCore/index.d.ts +12 -0
- package/lib/core/components/SxpPageCore/index.js +29 -0
- package/lib/core/components/SxpPageRender/ExpandableText.d.ts +14 -0
- package/lib/core/components/SxpPageRender/ExpandableText.js +55 -0
- package/lib/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +6 -0
- package/lib/core/components/SxpPageRender/FingerSwipeTip/index.js +22 -0
- package/lib/core/components/SxpPageRender/Hashtag/index.d.ts +12 -0
- package/lib/core/components/SxpPageRender/Hashtag/index.js +43 -0
- package/lib/core/components/SxpPageRender/LikeButton/index.d.ts +11 -0
- package/lib/core/components/SxpPageRender/LikeButton/index.js +60 -0
- package/lib/core/components/SxpPageRender/Modal/index.d.ts +11 -0
- package/lib/core/components/SxpPageRender/Modal/index.js +51 -0
- package/lib/core/components/SxpPageRender/Navbar.d.ts +9 -0
- package/lib/core/components/SxpPageRender/Navbar.js +13 -0
- package/lib/core/components/SxpPageRender/Nudge/index.d.ts +24 -0
- package/lib/core/components/SxpPageRender/Nudge/index.js +16 -0
- package/lib/core/components/SxpPageRender/PictureGroup/Picture.d.ts +8 -0
- package/lib/core/components/SxpPageRender/PictureGroup/Picture.js +57 -0
- package/lib/core/components/SxpPageRender/PictureGroup/index.d.ts +13 -0
- package/lib/core/components/SxpPageRender/PictureGroup/index.js +34 -0
- package/lib/core/components/SxpPageRender/Popup/index.d.ts +3 -0
- package/lib/core/components/SxpPageRender/Popup/index.js +65 -0
- package/lib/core/components/SxpPageRender/RenderCard.d.ts +11 -0
- package/lib/core/components/SxpPageRender/RenderCard.js +46 -0
- package/lib/core/components/SxpPageRender/ToggleButton/index.d.ts +10 -0
- package/lib/core/components/SxpPageRender/ToggleButton/index.js +16 -0
- package/lib/core/components/SxpPageRender/VideoWidget/index.d.ts +12 -0
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +222 -0
- package/lib/core/components/SxpPageRender/WaterFall/List.d.ts +4 -0
- package/lib/core/components/SxpPageRender/WaterFall/List.js +186 -0
- package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.d.ts +4 -0
- package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.js +322 -0
- package/lib/core/components/SxpPageRender/WaterFall/index.d.ts +7 -0
- package/lib/core/components/SxpPageRender/WaterFall/index.js +104 -0
- package/lib/core/components/SxpPageRender/WaterFall/preview.json +1242 -0
- package/lib/core/components/SxpPageRender/fakeData.d.ts +130 -0
- package/lib/core/components/SxpPageRender/fakeData.js +902 -0
- package/lib/core/components/SxpPageRender/index.d.ts +57 -0
- package/lib/core/components/SxpPageRender/index.js +381 -0
- package/lib/core/components/SxpPageRender/typing.d.ts +66 -0
- package/lib/core/components/SxpPageRender/typing.js +2 -0
- package/lib/core/components/SxpPageRender/useIconLink.d.ts +1 -0
- package/lib/core/components/SxpPageRender/useIconLink.js +17 -0
- package/lib/core/context/DataSourceProvider.d.ts +17 -0
- package/lib/core/context/DataSourceProvider.js +48 -0
- package/lib/core/context/EditorContext.d.ts +83 -0
- package/lib/core/context/EditorContext.js +151 -0
- package/lib/core/context/EditorDataProvider.d.ts +20 -0
- package/lib/core/context/EditorDataProvider.js +28 -0
- package/lib/core/context/SxpDataSourceProvider.d.ts +94 -0
- package/lib/core/context/SxpDataSourceProvider.js +211 -0
- package/lib/core/create.d.ts +37 -0
- package/lib/core/create.js +8 -0
- package/lib/core/hoc/withBindDataSource.d.ts +6 -0
- package/lib/core/hoc/withBindDataSource.js +63 -0
- package/lib/core/hooks/index.d.ts +4 -0
- package/lib/core/hooks/index.js +7 -0
- package/lib/core/hooks/useCurrentNode.d.ts +10 -0
- package/lib/core/hooks/useCurrentNode.js +14 -0
- package/lib/core/hooks/useDataSource.d.ts +2 -0
- package/lib/core/hooks/useDataSource.js +9 -0
- package/lib/core/hooks/useEditor.d.ts +1 -0
- package/lib/core/hooks/useEditor.js +9 -0
- package/lib/core/hooks/useEventReport.d.ts +5 -0
- package/lib/core/hooks/useEventReport.js +77 -0
- package/lib/core/hooks/useOnScreen.d.ts +2 -0
- package/lib/core/hooks/useOnScreen.js +22 -0
- package/lib/core/hooks/useSxpDataSource.d.ts +1 -0
- package/lib/core/hooks/useSxpDataSource.js +9 -0
- package/lib/core/index.d.ts +3 -0
- package/lib/core/index.js +5 -0
- package/lib/core/schema.d.ts +58 -0
- package/lib/core/schema.js +2 -0
- package/lib/core/utils/event.d.ts +7 -0
- package/lib/core/utils/event.js +12 -0
- package/lib/core/utils/getDataByDS.d.ts +6 -0
- package/lib/core/utils/getDataByDS.js +41 -0
- package/lib/core/utils/getSxpTokenInfo.d.ts +2 -0
- package/lib/core/utils/getSxpTokenInfo.js +30 -0
- package/lib/core/utils/localStore.d.ts +5 -0
- package/lib/core/utils/localStore.js +28 -0
- package/lib/core/utils/materials.d.ts +11 -0
- package/lib/core/utils/materials.js +37 -0
- package/lib/core/utils/sessionStore.d.ts +3 -0
- package/lib/core/utils/sessionStore.js +32 -0
- package/lib/core/utils/tool.d.ts +5 -0
- package/lib/core/utils/tool.js +54 -0
- package/lib/core/utils/unzip.d.ts +1 -0
- package/lib/core/utils/unzip.js +15 -0
- package/lib/index.d.ts +11 -0
- package/lib/index.js +22 -0
- package/lib/materials/index.d.ts +1 -0
- package/lib/materials/index.js +4 -0
- package/lib/materials/sxp/HashTag/index.d.ts +14 -0
- package/lib/materials/sxp/HashTag/index.js +9 -0
- package/lib/materials/sxp/HashTag/material.d.ts +2 -0
- package/lib/materials/sxp/HashTag/material.js +56 -0
- package/lib/materials/sxp/HashTag/settingRender.d.ts +125 -0
- package/lib/materials/sxp/HashTag/settingRender.js +159 -0
- package/lib/materials/sxp/defaultSetting.d.ts +11 -0
- package/lib/materials/sxp/defaultSetting.js +10 -0
- package/lib/materials/sxp/index.d.ts +3 -0
- package/lib/materials/sxp/index.js +6 -0
- package/lib/materials/sxp/popup/AppointForm/index.d.ts +18 -0
- package/lib/materials/sxp/popup/AppointForm/index.js +78 -0
- package/lib/materials/sxp/popup/AppointForm/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/popup/AppointForm/interactionRender.js +13 -0
- package/lib/materials/sxp/popup/AppointForm/material.d.ts +2 -0
- package/lib/materials/sxp/popup/AppointForm/material.js +39 -0
- package/lib/materials/sxp/popup/AppointForm/settingRender.d.ts +68 -0
- package/lib/materials/sxp/popup/AppointForm/settingRender.js +95 -0
- package/lib/materials/sxp/popup/CommodityDetail/index.d.ts +34 -0
- package/lib/materials/sxp/popup/CommodityDetail/index.js +112 -0
- package/lib/materials/sxp/popup/CommodityDetail/material.d.ts +2 -0
- package/lib/materials/sxp/popup/CommodityDetail/material.js +55 -0
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.d.ts +137 -0
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.js +173 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/index.d.ts +19 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/index.js +165 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/material.d.ts +2 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/material.js +20 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +35 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +136 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/material.d.ts +2 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/material.js +65 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +137 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +177 -0
- package/lib/materials/sxp/popup/Prompt/index.d.ts +11 -0
- package/lib/materials/sxp/popup/Prompt/index.js +22 -0
- package/lib/materials/sxp/popup/Prompt/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/popup/Prompt/interactionRender.js +13 -0
- package/lib/materials/sxp/popup/Prompt/material.d.ts +2 -0
- package/lib/materials/sxp/popup/Prompt/material.js +32 -0
- package/lib/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
- package/lib/materials/sxp/popup/Prompt/settingRender.js +20 -0
- package/lib/materials/sxp/popup/index.d.ts +4 -0
- package/lib/materials/sxp/popup/index.js +7 -0
- package/lib/materials/sxp/template/Appoint/index.d.ts +15 -0
- package/lib/materials/sxp/template/Appoint/index.js +18 -0
- package/lib/materials/sxp/template/Appoint/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/Appoint/interactionRender.js +13 -0
- package/lib/materials/sxp/template/Appoint/material.d.ts +2 -0
- package/lib/materials/sxp/template/Appoint/material.js +50 -0
- package/lib/materials/sxp/template/Commodity/index.d.ts +15 -0
- package/lib/materials/sxp/template/Commodity/index.js +29 -0
- package/lib/materials/sxp/template/Commodity/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/Commodity/interactionRender.js +13 -0
- package/lib/materials/sxp/template/Commodity/material.d.ts +2 -0
- package/lib/materials/sxp/template/Commodity/material.js +56 -0
- package/lib/materials/sxp/template/CommodityDiro/index.d.ts +15 -0
- package/lib/materials/sxp/template/CommodityDiro/index.js +29 -0
- package/lib/materials/sxp/template/CommodityDiro/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/CommodityDiro/interactionRender.js +13 -0
- package/lib/materials/sxp/template/CommodityDiro/material.d.ts +2 -0
- package/lib/materials/sxp/template/CommodityDiro/material.js +56 -0
- package/lib/materials/sxp/template/CommodityDiroNew/index.d.ts +15 -0
- package/lib/materials/sxp/template/CommodityDiroNew/index.js +29 -0
- package/lib/materials/sxp/template/CommodityDiroNew/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/CommodityDiroNew/interactionRender.js +13 -0
- package/lib/materials/sxp/template/CommodityDiroNew/material.d.ts +2 -0
- package/lib/materials/sxp/template/CommodityDiroNew/material.js +57 -0
- package/lib/materials/sxp/template/Link/index.d.ts +14 -0
- package/lib/materials/sxp/template/Link/index.js +34 -0
- package/lib/materials/sxp/template/Link/material.d.ts +2 -0
- package/lib/materials/sxp/template/Link/material.js +48 -0
- package/lib/materials/sxp/template/MultiCommodity/index.d.ts +16 -0
- package/lib/materials/sxp/template/MultiCommodity/index.js +54 -0
- package/lib/materials/sxp/template/MultiCommodity/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/MultiCommodity/interactionRender.js +13 -0
- package/lib/materials/sxp/template/MultiCommodity/material.d.ts +2 -0
- package/lib/materials/sxp/template/MultiCommodity/material.js +56 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/index.d.ts +16 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/index.js +53 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/interactionRender.js +13 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/material.d.ts +2 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/material.js +56 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/index.d.ts +16 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/index.js +54 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/interactionRender.js +13 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/material.d.ts +2 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/material.js +57 -0
- package/lib/materials/sxp/template/components/EventProvider.d.ts +13 -0
- package/lib/materials/sxp/template/components/EventProvider.js +49 -0
- package/lib/materials/sxp/template/components/Img.d.ts +10 -0
- package/lib/materials/sxp/template/components/Img.js +22 -0
- package/lib/materials/sxp/template/components/Scroll.d.ts +10 -0
- package/lib/materials/sxp/template/components/Scroll.js +13 -0
- package/lib/materials/sxp/template/components/settingRender.d.ts +129 -0
- package/lib/materials/sxp/template/components/settingRender.js +221 -0
- package/lib/materials/sxp/template/components/typing.d.ts +6 -0
- package/lib/materials/sxp/template/components/typing.js +2 -0
- package/lib/materials/sxp/template/index.d.ts +8 -0
- package/lib/materials/sxp/template/index.js +11 -0
- package/package.json +1 -1
@@ -0,0 +1,163 @@
|
|
1
|
+
import { __rest } from "tslib";
|
2
|
+
import { css } from '@emotion/css';
|
3
|
+
import React, { memo, useEffect, useMemo, useRef, useState } from 'react';
|
4
|
+
import { useSxpDataSource } from '../../../../core/hooks';
|
5
|
+
import './index.less';
|
6
|
+
import { Autoplay, Pagination } from 'swiper/modules';
|
7
|
+
import { Swiper, SwiperSlide } from 'swiper/react';
|
8
|
+
import arrow from './arrow.png';
|
9
|
+
import { useEventReport } from '../../../../core/hooks/useEventReport';
|
10
|
+
const CommodityDetailDiro = (_a) => {
|
11
|
+
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
12
|
+
var { style, isDefault, rec, viewTime, isPost, bottom_image, index } = _a, props = __rest(_a, ["style", "isDefault", "rec", "viewTime", "isPost", "bottom_image", "index"]);
|
13
|
+
const [spread, setSpread] = useState(true);
|
14
|
+
const { sxpParameter } = useSxpDataSource();
|
15
|
+
const { popupDetailData, bffEventReport, isPreview, swiperRef, waterFallData } = useSxpDataSource();
|
16
|
+
const { jumpToWeb, productView } = useEventReport();
|
17
|
+
const scrollRef = useRef(null);
|
18
|
+
const touchRef = useRef(null);
|
19
|
+
const touchMoveRef = useRef(null);
|
20
|
+
const [stopSlide, setStopSlide] = useState(false);
|
21
|
+
const [isBottom, setIsBottom] = useState(false);
|
22
|
+
const [isTop, setIsTop] = useState(true);
|
23
|
+
const curTimeRef = useRef(null);
|
24
|
+
const data = isPost ? rec : popupDetailData;
|
25
|
+
const product = isPost ? data === null || data === void 0 ? void 0 : data.product : (_b = data === null || data === void 0 ? void 0 : data.video) === null || _b === void 0 ? void 0 : _b.bindProduct;
|
26
|
+
const cta = isPost ? (_c = data === null || data === void 0 ? void 0 : data.product) === null || _c === void 0 ? void 0 : _c.bindCta : (_e = (_d = data === null || data === void 0 ? void 0 : data.video) === null || _d === void 0 ? void 0 : _d.bindProduct) === null || _e === void 0 ? void 0 : _e.bindCta;
|
27
|
+
const position = isPost ? index : popupDetailData === null || popupDetailData === void 0 ? void 0 : popupDetailData.index;
|
28
|
+
const handleLink = () => {
|
29
|
+
if (product === null || product === void 0 ? void 0 : product.link) {
|
30
|
+
jumpToWeb(data, product, cta, position);
|
31
|
+
if (!isPost) {
|
32
|
+
productView(data, product, cta, viewTime || curTimeRef.current, position);
|
33
|
+
}
|
34
|
+
window.location.href = window.getJointUtmLink(product.link);
|
35
|
+
}
|
36
|
+
};
|
37
|
+
useEffect(() => {
|
38
|
+
const initTime = () => {
|
39
|
+
curTimeRef.current = new Date();
|
40
|
+
};
|
41
|
+
initTime();
|
42
|
+
window.addEventListener('pageshow', initTime);
|
43
|
+
return () => {
|
44
|
+
window.removeEventListener('pageshow', initTime);
|
45
|
+
};
|
46
|
+
}, []);
|
47
|
+
const priceText = useMemo(() => {
|
48
|
+
var _a, _b, _c, _d, _e;
|
49
|
+
if ((product === null || product === void 0 ? void 0 : product.currency) && (product === null || product === void 0 ? void 0 : product.price)) {
|
50
|
+
return `${(_c = (_b = (_a = product === null || product === void 0 ? void 0 : product.currency) === null || _a === void 0 ? void 0 : _a.split('-')[1]) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== null && _c !== void 0 ? _c : ''}${(_e = (_d = product === null || product === void 0 ? void 0 : product.price) === null || _d === void 0 ? void 0 : _d.toLocaleString('zh', {
|
51
|
+
minimumFractionDigits: 0
|
52
|
+
})) !== null && _e !== void 0 ? _e : ''}`;
|
53
|
+
}
|
54
|
+
else {
|
55
|
+
return '$7,000';
|
56
|
+
}
|
57
|
+
}, [product === null || product === void 0 ? void 0 : product.price, product === null || product === void 0 ? void 0 : product.currency]);
|
58
|
+
const width = isPreview ? 375 : window.innerWidth;
|
59
|
+
const handleClickCollapse = () => {
|
60
|
+
setSpread(!spread);
|
61
|
+
};
|
62
|
+
useEffect(() => {
|
63
|
+
var _a, _b;
|
64
|
+
console.log((_a = scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) === null || _a === void 0 ? void 0 : _a.scrollHeight, window.innerHeight);
|
65
|
+
if ((scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) && ((_b = scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) === null || _b === void 0 ? void 0 : _b.scrollHeight) > window.innerHeight) {
|
66
|
+
setStopSlide(true);
|
67
|
+
}
|
68
|
+
}, [scrollRef]);
|
69
|
+
useEffect(() => {
|
70
|
+
const handleScroll = () => {
|
71
|
+
if (scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) {
|
72
|
+
const { scrollTop, scrollHeight, clientHeight } = scrollRef.current;
|
73
|
+
const isBottom = scrollTop + clientHeight === scrollHeight;
|
74
|
+
if (isBottom) {
|
75
|
+
setIsBottom(true);
|
76
|
+
}
|
77
|
+
else {
|
78
|
+
setIsBottom(false);
|
79
|
+
}
|
80
|
+
if (scrollTop === 0) {
|
81
|
+
setIsTop(true);
|
82
|
+
}
|
83
|
+
else {
|
84
|
+
setIsTop(false);
|
85
|
+
}
|
86
|
+
}
|
87
|
+
};
|
88
|
+
if (scrollRef.current) {
|
89
|
+
scrollRef.current.addEventListener('scroll', handleScroll);
|
90
|
+
}
|
91
|
+
return () => {
|
92
|
+
if (scrollRef.current) {
|
93
|
+
scrollRef.current.removeEventListener('scroll', handleScroll);
|
94
|
+
}
|
95
|
+
};
|
96
|
+
}, [scrollRef]);
|
97
|
+
const handleTouchStart = (event) => {
|
98
|
+
event.stopPropagation();
|
99
|
+
touchRef.current = event.touches[0].clientY;
|
100
|
+
touchMoveRef.current = true;
|
101
|
+
};
|
102
|
+
const handleTouchMove = (event) => {
|
103
|
+
var _a, _b, _c, _d;
|
104
|
+
if (touchMoveRef.current) {
|
105
|
+
touchMoveRef.current = false;
|
106
|
+
const currentY = event.touches[0].clientY;
|
107
|
+
const diff = touchRef.current - currentY;
|
108
|
+
if (diff > 0 && (isBottom || !stopSlide)) {
|
109
|
+
(_b = (_a = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _a === void 0 ? void 0 : _a.swiper) === null || _b === void 0 ? void 0 : _b.slideNext();
|
110
|
+
}
|
111
|
+
else if (diff < 0 && (isTop || !stopSlide)) {
|
112
|
+
(_d = (_c = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _c === void 0 ? void 0 : _c.swiper) === null || _d === void 0 ? void 0 : _d.slidePrev();
|
113
|
+
}
|
114
|
+
}
|
115
|
+
};
|
116
|
+
return (React.createElement("div", { className: 'pb-commondityDiro' },
|
117
|
+
React.createElement("div", Object.assign({ ref: scrollRef, className: css(Object.assign({}, style)) }, props, { onTouchStart: handleTouchStart, onTouchMove: (e) => {
|
118
|
+
e.stopPropagation();
|
119
|
+
handleTouchMove(e);
|
120
|
+
} }),
|
121
|
+
product && ((_f = product === null || product === void 0 ? void 0 : product.homePage) === null || _f === void 0 ? void 0 : _f.length) > 0 && (React.createElement(Swiper, { height: width, modules: [Pagination, Autoplay], pagination: { clickable: true, bulletActiveClass: 'swipe-item-active-bullet' }, loop: true, autoplay: {
|
122
|
+
delay: 3000
|
123
|
+
} }, (_g = product === null || product === void 0 ? void 0 : product.homePage) === null || _g === void 0 ? void 0 : _g.map((src) => {
|
124
|
+
return (React.createElement(SwiperSlide, { key: src },
|
125
|
+
React.createElement("div", { style: {
|
126
|
+
overflow: 'hidden',
|
127
|
+
width,
|
128
|
+
height: width
|
129
|
+
} },
|
130
|
+
React.createElement("img", { src: src, style: { height: '100%', width: '100%', objectFit: 'cover' } }))));
|
131
|
+
}))),
|
132
|
+
!((_h = product === null || product === void 0 ? void 0 : product.homePage) === null || _h === void 0 ? void 0 : _h.length) && (React.createElement("div", { className: css({
|
133
|
+
position: 'relative',
|
134
|
+
height: 0,
|
135
|
+
width: '100%',
|
136
|
+
paddingBottom: '100%',
|
137
|
+
overflow: 'hidden'
|
138
|
+
}) },
|
139
|
+
React.createElement("img", { className: css({
|
140
|
+
position: 'absolute',
|
141
|
+
left: 0,
|
142
|
+
top: 0,
|
143
|
+
objectFit: 'cover',
|
144
|
+
width: '100%'
|
145
|
+
}), src: (_j = sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _j !== void 0 ? _j : bottom_image, alt: '' }))),
|
146
|
+
React.createElement("div", { className: 'pb-commondityDiro-content' },
|
147
|
+
React.createElement("div", { className: 'pb-commondityDiro-content-title' }, (_k = product === null || product === void 0 ? void 0 : product.title) !== null && _k !== void 0 ? _k : 'MEDIUM LADY D-LITE BAG'),
|
148
|
+
React.createElement("div", { className: 'pb-commondityDiro-content-collection', hidden: !!product && (!(product === null || product === void 0 ? void 0 : product.collection) || (product === null || product === void 0 ? void 0 : product.collection) === '') }, (product === null || product === void 0 ? void 0 : product.collection) || 'Gold-Tone and White Butterfly Zodiac Embroidery'),
|
149
|
+
React.createElement("div", { className: 'pb-commondityDiro-content-scrollRef', hidden: !!product && !(product === null || product === void 0 ? void 0 : product.itemId) }, (product === null || product === void 0 ? void 0 : product.itemId) ? `Reference: ${product === null || product === void 0 ? void 0 : product.itemId}` : 'Reference: M0565OESU_M01E'),
|
150
|
+
React.createElement("div", { className: 'pb-commondityDiro-content-line' }),
|
151
|
+
React.createElement("div", { className: 'pb-commondityDiro-content-price' }, priceText)),
|
152
|
+
React.createElement("div", { className: 'pb-commondityDiro-desc', hidden: !!product && (!(product === null || product === void 0 ? void 0 : product.info) || (product === null || product === void 0 ? void 0 : product.info) === '') },
|
153
|
+
React.createElement("div", { className: 'pb-commondityDiro-desc-collapse', onClick: handleClickCollapse },
|
154
|
+
React.createElement("div", { className: 'pb-commondityDiro-desc-collapse-title' }, "DESCRIPTION"),
|
155
|
+
React.createElement("img", { className: `pb-commondityDiro-desc-collapse-icon ${spread ? 'pb-commondityDiro-desc-collapse-iconActive' : ''}`, src: arrow, alt: '' })),
|
156
|
+
React.createElement("div", { className: 'pb-commondityDiro-desc-info', hidden: !spread }, (product === null || product === void 0 ? void 0 : product.info) ||
|
157
|
+
'The Lady D-Lite bag combines classic elegance with House modernity. The style is fully embroidered with a gold-tone and white Butterfly Zodiac motif by Pietro Ruffo, showcasing a constellation enhanced by astrological signs and adorned with butterflies. A Christian Dior Paris signature adorns the front, while D.I.O.R. charms in pale gold-finish metal further enhance and highlight the silhouette. Featuring a wide, removable embroidered shoulder strap, the medium Lady D-Lite bag can be carried by hand or worn crossbody.')),
|
158
|
+
(!product || (product === null || product === void 0 ? void 0 : product.link)) && (React.createElement(React.Fragment, null,
|
159
|
+
React.createElement("div", { className: 'pb-commondityDiro-h90' }),
|
160
|
+
React.createElement("div", { className: 'pb-commondityDiro-bottom' },
|
161
|
+
React.createElement("button", { onClick: handleLink, className: 'pb-commondityDiro-bottom-btn' }, (_l = cta === null || cta === void 0 ? void 0 : cta.enTitle) !== null && _l !== void 0 ? _l : 'SHOP NOW')))))));
|
162
|
+
};
|
163
|
+
export default memo(CommodityDetailDiro);
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import CommodityDetailDiroComponent from '.';
|
2
|
+
import { createMaterial } from '../../../../core/create';
|
3
|
+
const CommodityDetailDiro = createMaterial(CommodityDetailDiroComponent, {
|
4
|
+
displayName: '商品详情',
|
5
|
+
icon: '',
|
6
|
+
category: 'popup',
|
7
|
+
type: 'CommodityDetailDiro',
|
8
|
+
defaulSetting: {
|
9
|
+
props: {},
|
10
|
+
style: {}
|
11
|
+
},
|
12
|
+
w: 100,
|
13
|
+
h: 40,
|
14
|
+
sort: 1
|
15
|
+
});
|
16
|
+
export { CommodityDetailDiro };
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import React, { CSSProperties } from 'react';
|
2
|
+
import { IEditorContext } from '../../../../core/context/EditorContext';
|
3
|
+
import { RecItemType } from '../../../../core/components/SxpPageRender/typing';
|
4
|
+
import './index.less';
|
5
|
+
export interface ICommodityDetailDiroNewProps {
|
6
|
+
content?: string;
|
7
|
+
style?: Record<string, any>;
|
8
|
+
bgImg?: Record<string, any> | string;
|
9
|
+
onClick?: () => void;
|
10
|
+
schema?: IEditorContext['schema'];
|
11
|
+
isDefault?: boolean;
|
12
|
+
rec?: RecItemType;
|
13
|
+
viewTime?: any;
|
14
|
+
isPost?: boolean;
|
15
|
+
bottom_image?: string;
|
16
|
+
tipText?: {
|
17
|
+
foldText?: string;
|
18
|
+
unfoldText?: string;
|
19
|
+
};
|
20
|
+
swiper: {
|
21
|
+
dotsAlign: 'left' | 'center';
|
22
|
+
delay: number;
|
23
|
+
};
|
24
|
+
commodityStyles?: {
|
25
|
+
title: CSSProperties;
|
26
|
+
collection: CSSProperties;
|
27
|
+
price: CSSProperties;
|
28
|
+
taxInfo: CSSProperties;
|
29
|
+
info: CSSProperties;
|
30
|
+
};
|
31
|
+
buttonStyle?: CSSProperties;
|
32
|
+
index?: number;
|
33
|
+
}
|
34
|
+
declare const _default: React.NamedExoticComponent<ICommodityDetailDiroNewProps>;
|
35
|
+
export default _default;
|
@@ -0,0 +1,134 @@
|
|
1
|
+
import { __rest } from "tslib";
|
2
|
+
import { css } from '@emotion/css';
|
3
|
+
import React, { memo, useEffect, useMemo, useRef, useState } from 'react';
|
4
|
+
import { useSxpDataSource } from '../../../../core/hooks';
|
5
|
+
import './index.less';
|
6
|
+
import { Autoplay, Pagination } from 'swiper/modules';
|
7
|
+
import { Swiper, SwiperSlide } from 'swiper/react';
|
8
|
+
import Modal from '../../../../core/components/SxpPageRender/Modal';
|
9
|
+
import ExpandableText from '../../../../core/components/SxpPageRender/ExpandableText';
|
10
|
+
import { useEventReport } from '../../../../core/hooks/useEventReport';
|
11
|
+
const CommodityDetailDiroNew = (_a) => {
|
12
|
+
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
13
|
+
var { style, isDefault, rec, viewTime, isPost, bottom_image, tipText, swiper, commodityStyles, buttonStyle, index } = _a, props = __rest(_a, ["style", "isDefault", "rec", "viewTime", "isPost", "bottom_image", "tipText", "swiper", "commodityStyles", "buttonStyle", "index"]);
|
14
|
+
const [spread, setSpread] = useState(true);
|
15
|
+
const { sxpParameter } = useSxpDataSource();
|
16
|
+
const { popupDetailData, bffEventReport, isPreview, swiperRef, waterFallData } = useSxpDataSource();
|
17
|
+
const { jumpToWeb, productView } = useEventReport();
|
18
|
+
const scrollRef = useRef(null);
|
19
|
+
const touchRef = useRef(null);
|
20
|
+
const touchMoveRef = useRef(null);
|
21
|
+
const [stopSlide, setStopSlide] = useState(false);
|
22
|
+
const [isBottom, setIsBottom] = useState(false);
|
23
|
+
const [isTop, setIsTop] = useState(true);
|
24
|
+
const [showModal, setShowModal] = useState(false);
|
25
|
+
const curTimeRef = useRef(null);
|
26
|
+
const data = isPost ? rec : popupDetailData;
|
27
|
+
const product = isPost ? data === null || data === void 0 ? void 0 : data.product : (_b = data === null || data === void 0 ? void 0 : data.video) === null || _b === void 0 ? void 0 : _b.bindProduct;
|
28
|
+
const cta = isPost ? (_c = data === null || data === void 0 ? void 0 : data.product) === null || _c === void 0 ? void 0 : _c.bindCta : (_e = (_d = data === null || data === void 0 ? void 0 : data.video) === null || _d === void 0 ? void 0 : _d.bindProduct) === null || _e === void 0 ? void 0 : _e.bindCta;
|
29
|
+
const position = isPost ? index : popupDetailData === null || popupDetailData === void 0 ? void 0 : popupDetailData.index;
|
30
|
+
const handleLink = () => {
|
31
|
+
if (product === null || product === void 0 ? void 0 : product.link) {
|
32
|
+
jumpToWeb(data, product, cta, position);
|
33
|
+
if (!isPost) {
|
34
|
+
productView(data, product, cta, viewTime || curTimeRef.current, position);
|
35
|
+
}
|
36
|
+
window.location.href = window.getJointUtmLink(product.link);
|
37
|
+
}
|
38
|
+
};
|
39
|
+
useEffect(() => {
|
40
|
+
const initTime = () => {
|
41
|
+
curTimeRef.current = new Date();
|
42
|
+
};
|
43
|
+
initTime();
|
44
|
+
window.addEventListener('pageshow', initTime);
|
45
|
+
return () => {
|
46
|
+
window.removeEventListener('pageshow', initTime);
|
47
|
+
};
|
48
|
+
}, []);
|
49
|
+
const priceText = useMemo(() => {
|
50
|
+
var _a, _b, _c, _d, _e;
|
51
|
+
if ((product === null || product === void 0 ? void 0 : product.currency) && (product === null || product === void 0 ? void 0 : product.price)) {
|
52
|
+
return `${(_c = (_b = (_a = product === null || product === void 0 ? void 0 : product.currency) === null || _a === void 0 ? void 0 : _a.split('-')[1]) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== null && _c !== void 0 ? _c : ''}${(_e = (_d = product === null || product === void 0 ? void 0 : product.price) === null || _d === void 0 ? void 0 : _d.toLocaleString('zh', {
|
53
|
+
minimumFractionDigits: 0
|
54
|
+
})) !== null && _e !== void 0 ? _e : ''}`;
|
55
|
+
}
|
56
|
+
else {
|
57
|
+
return '£102,300.00';
|
58
|
+
}
|
59
|
+
}, [product === null || product === void 0 ? void 0 : product.price, product === null || product === void 0 ? void 0 : product.currency]);
|
60
|
+
const width = isPreview ? 375 : window.innerWidth;
|
61
|
+
const handleClickCollapse = () => {
|
62
|
+
setSpread(!spread);
|
63
|
+
};
|
64
|
+
const handleTouchStart = (event) => {
|
65
|
+
event.stopPropagation();
|
66
|
+
touchRef.current = event.touches[0].clientY;
|
67
|
+
touchMoveRef.current = true;
|
68
|
+
};
|
69
|
+
const handleTouchMove = (event) => {
|
70
|
+
var _a, _b, _c, _d;
|
71
|
+
if (touchMoveRef.current) {
|
72
|
+
touchMoveRef.current = false;
|
73
|
+
const currentY = event.touches[0].clientY;
|
74
|
+
const diff = touchRef.current - currentY;
|
75
|
+
if (diff > 0 && (isBottom || !stopSlide)) {
|
76
|
+
(_b = (_a = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _a === void 0 ? void 0 : _a.swiper) === null || _b === void 0 ? void 0 : _b.slideNext();
|
77
|
+
}
|
78
|
+
else if (diff < 0 && (isTop || !stopSlide)) {
|
79
|
+
(_d = (_c = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _c === void 0 ? void 0 : _c.swiper) === null || _d === void 0 ? void 0 : _d.slidePrev();
|
80
|
+
}
|
81
|
+
}
|
82
|
+
};
|
83
|
+
const productInfoText = ({ isPost }) => {
|
84
|
+
return (React.createElement("div", { hidden: !!product && (!(product === null || product === void 0 ? void 0 : product.info) || (product === null || product === void 0 ? void 0 : product.info) === '') },
|
85
|
+
React.createElement(ExpandableText, { isPost: isPost, onClick: () => setShowModal(true), className: 'pb-commondityDiroNew-info', style: commodityStyles === null || commodityStyles === void 0 ? void 0 : commodityStyles.info, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (product === null || product === void 0 ? void 0 : product.info) ||
|
86
|
+
`Unveiled at the Spring-Summer 2023 fashion show, the Dior Toujours bag is distinguished by a casual and practical design. Crafted in black calfskin with Macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize essentials. Its leather strap closure keeps items secure while the D of the CD Lock closure twists to adjust the sides and enhance the bag's silhouette. The leather handles can be adjusted using the small notches in order to be able to carry the large bag by hand or wear it over the shoulder. CD Lock and strap closures D.I.O.R. charms Removable interior pouch Adjustable leather handles Dust bag included
|
87
|
+
Made in Italy` })));
|
88
|
+
};
|
89
|
+
return (React.createElement("div", { className: 'pb-commondityDiroNew' },
|
90
|
+
React.createElement("div", Object.assign({ ref: scrollRef, className: css(Object.assign({}, style)) }, props),
|
91
|
+
product && ((_f = product === null || product === void 0 ? void 0 : product.homePage) === null || _f === void 0 ? void 0 : _f.length) > 0 && (React.createElement(Swiper, { height: width, modules: [Pagination, Autoplay], pagination: {
|
92
|
+
clickable: true,
|
93
|
+
bulletActiveClass: 'commondityDiroNew-swipe-item-active-bullet',
|
94
|
+
clickableClass: (swiper === null || swiper === void 0 ? void 0 : swiper.dotsAlign) === 'left'
|
95
|
+
? 'commondityDiroNew-swiper-clickable-left'
|
96
|
+
: 'commondityDiroNew-swiper-clickable-center'
|
97
|
+
}, loop: true, autoplay: {
|
98
|
+
delay: (swiper === null || swiper === void 0 ? void 0 : swiper.delay) * 1000
|
99
|
+
} }, (_g = product === null || product === void 0 ? void 0 : product.homePage) === null || _g === void 0 ? void 0 : _g.map((src) => {
|
100
|
+
return (React.createElement(SwiperSlide, { key: src },
|
101
|
+
React.createElement("div", { style: {
|
102
|
+
overflow: 'hidden',
|
103
|
+
width,
|
104
|
+
height: width
|
105
|
+
} },
|
106
|
+
React.createElement("img", { src: src, style: { height: '100%', width: '100%', objectFit: 'cover' } }))));
|
107
|
+
}))),
|
108
|
+
!((_h = product === null || product === void 0 ? void 0 : product.homePage) === null || _h === void 0 ? void 0 : _h.length) && (React.createElement("div", { className: css({
|
109
|
+
position: 'relative',
|
110
|
+
height: 0,
|
111
|
+
width: '100%',
|
112
|
+
paddingBottom: '100%',
|
113
|
+
overflow: 'hidden'
|
114
|
+
}) },
|
115
|
+
React.createElement("img", { className: css({
|
116
|
+
position: 'absolute',
|
117
|
+
left: 0,
|
118
|
+
top: 0,
|
119
|
+
objectFit: 'cover',
|
120
|
+
width: '100%'
|
121
|
+
}), src: (_j = sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _j !== void 0 ? _j : bottom_image, alt: '' }))),
|
122
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content' },
|
123
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content-top' },
|
124
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content-top-left' },
|
125
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content-top-left-title', style: commodityStyles === null || commodityStyles === void 0 ? void 0 : commodityStyles.title }, (_k = product === null || product === void 0 ? void 0 : product.title) !== null && _k !== void 0 ? _k : 'Large Dior Toujours Bag'),
|
126
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content-collection', hidden: !!product && (!(product === null || product === void 0 ? void 0 : product.collection) || (product === null || product === void 0 ? void 0 : product.collection) === ''), style: commodityStyles === null || commodityStyles === void 0 ? void 0 : commodityStyles.collection }, (product === null || product === void 0 ? void 0 : product.collection) || 'Black Macrocannage Calfskin')),
|
127
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content-top-right' },
|
128
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content-top-right-price', hidden: !!product && !(product === null || product === void 0 ? void 0 : product.price), style: commodityStyles === null || commodityStyles === void 0 ? void 0 : commodityStyles.price }, priceText),
|
129
|
+
React.createElement("div", { className: 'pb-commondityDiroNew-content-top-right-price', hidden: !!product && !(product === null || product === void 0 ? void 0 : product.taxInfo), style: commodityStyles === null || commodityStyles === void 0 ? void 0 : commodityStyles.taxInfo }, (_l = product === null || product === void 0 ? void 0 : product.taxInfo) !== null && _l !== void 0 ? _l : '税费'))),
|
130
|
+
(!product || (product === null || product === void 0 ? void 0 : product.link)) && (React.createElement("button", { onClick: handleLink, className: 'pb-commondityDiroNew-btn', style: buttonStyle }, (_m = cta === null || cta === void 0 ? void 0 : cta.enTitle) !== null && _m !== void 0 ? _m : 'Shop now')),
|
131
|
+
productInfoText({ isPost }))),
|
132
|
+
React.createElement(Modal, { visible: showModal, onClose: () => setShowModal(false) }, productInfoText({ isPost: false }))));
|
133
|
+
};
|
134
|
+
export default memo(CommodityDetailDiroNew);
|
@@ -0,0 +1,61 @@
|
|
1
|
+
import settingRender from './settingRender';
|
2
|
+
import CommodityDetailDiroNewComponent from '.';
|
3
|
+
import { createMaterial } from '../../../../core/create';
|
4
|
+
const CommodityDetailDiroNew = createMaterial(CommodityDetailDiroNewComponent, {
|
5
|
+
displayName: '商品详情',
|
6
|
+
icon: '',
|
7
|
+
category: 'popup',
|
8
|
+
type: 'CommodityDetailDiroNew',
|
9
|
+
related: {
|
10
|
+
settingRender
|
11
|
+
},
|
12
|
+
defaulSetting: {
|
13
|
+
props: {
|
14
|
+
swiper: {
|
15
|
+
dotsAlign: 'left',
|
16
|
+
delay: 3
|
17
|
+
},
|
18
|
+
commodityStyles: {
|
19
|
+
price: {
|
20
|
+
color: '#000',
|
21
|
+
fontWeight: 'bold',
|
22
|
+
fontSize: 13
|
23
|
+
},
|
24
|
+
title: {
|
25
|
+
color: '#000',
|
26
|
+
fontSize: 13
|
27
|
+
},
|
28
|
+
collection: {
|
29
|
+
color: '#757575',
|
30
|
+
fontSize: 13
|
31
|
+
},
|
32
|
+
info: {
|
33
|
+
color: '#757575',
|
34
|
+
fontSize: 13
|
35
|
+
},
|
36
|
+
taxInfo: {
|
37
|
+
color: '#000',
|
38
|
+
fontWeight: 'bold',
|
39
|
+
fontSize: 13,
|
40
|
+
textAlign: 'right'
|
41
|
+
}
|
42
|
+
},
|
43
|
+
buttonStyle: {
|
44
|
+
backgroundColor: '#000',
|
45
|
+
fontSize: 12,
|
46
|
+
height: 52,
|
47
|
+
fontWeight: 'bold',
|
48
|
+
textAlign: 'center',
|
49
|
+
color: '#fff',
|
50
|
+
borderRadius: 25,
|
51
|
+
marginTop: 16,
|
52
|
+
marginBottom: 16
|
53
|
+
}
|
54
|
+
},
|
55
|
+
style: {}
|
56
|
+
},
|
57
|
+
w: 100,
|
58
|
+
h: 40,
|
59
|
+
sort: 1
|
60
|
+
});
|
61
|
+
export { CommodityDetailDiroNew };
|
@@ -0,0 +1,137 @@
|
|
1
|
+
declare const _default: ({
|
2
|
+
title: string;
|
3
|
+
child: ({
|
4
|
+
type: string;
|
5
|
+
label: string;
|
6
|
+
options: {
|
7
|
+
label: string;
|
8
|
+
value: string;
|
9
|
+
}[];
|
10
|
+
name: string[];
|
11
|
+
addonAfter?: undefined;
|
12
|
+
} | {
|
13
|
+
type: string;
|
14
|
+
name: string[];
|
15
|
+
addonAfter: string;
|
16
|
+
label?: undefined;
|
17
|
+
options?: undefined;
|
18
|
+
})[];
|
19
|
+
} | {
|
20
|
+
title: string;
|
21
|
+
child: {
|
22
|
+
name: string[];
|
23
|
+
type: string;
|
24
|
+
child: ({
|
25
|
+
label: string;
|
26
|
+
type: string;
|
27
|
+
options: {
|
28
|
+
label: string;
|
29
|
+
value: string;
|
30
|
+
}[];
|
31
|
+
name: string[];
|
32
|
+
initialValue: string;
|
33
|
+
child?: undefined;
|
34
|
+
} | {
|
35
|
+
type: string;
|
36
|
+
label: string;
|
37
|
+
child: ({
|
38
|
+
type: string;
|
39
|
+
name: string[];
|
40
|
+
options?: undefined;
|
41
|
+
initialValue?: undefined;
|
42
|
+
addonAfter?: undefined;
|
43
|
+
} | {
|
44
|
+
type: string;
|
45
|
+
options: {
|
46
|
+
label: string;
|
47
|
+
value: string;
|
48
|
+
}[];
|
49
|
+
name: string[];
|
50
|
+
initialValue: string;
|
51
|
+
addonAfter?: undefined;
|
52
|
+
} | {
|
53
|
+
type: string;
|
54
|
+
addonAfter: string;
|
55
|
+
name: string[];
|
56
|
+
options?: undefined;
|
57
|
+
initialValue?: undefined;
|
58
|
+
})[];
|
59
|
+
options?: undefined;
|
60
|
+
name?: undefined;
|
61
|
+
initialValue?: undefined;
|
62
|
+
} | {
|
63
|
+
label: string;
|
64
|
+
type: string;
|
65
|
+
options?: undefined;
|
66
|
+
name?: undefined;
|
67
|
+
initialValue?: undefined;
|
68
|
+
child?: undefined;
|
69
|
+
} | {
|
70
|
+
label: string;
|
71
|
+
type: string;
|
72
|
+
name: string[];
|
73
|
+
options?: undefined;
|
74
|
+
initialValue?: undefined;
|
75
|
+
child?: undefined;
|
76
|
+
})[];
|
77
|
+
}[];
|
78
|
+
} | {
|
79
|
+
title: string;
|
80
|
+
child: ({
|
81
|
+
type: string;
|
82
|
+
label: string;
|
83
|
+
name: string[];
|
84
|
+
initialValue: string;
|
85
|
+
child?: undefined;
|
86
|
+
} | {
|
87
|
+
type: string;
|
88
|
+
label: string;
|
89
|
+
child: ({
|
90
|
+
type: string;
|
91
|
+
name: string[];
|
92
|
+
max: number;
|
93
|
+
addonAfter?: undefined;
|
94
|
+
} | {
|
95
|
+
type: string;
|
96
|
+
name: string[];
|
97
|
+
addonAfter: string;
|
98
|
+
max: number;
|
99
|
+
})[];
|
100
|
+
name?: undefined;
|
101
|
+
initialValue?: undefined;
|
102
|
+
} | {
|
103
|
+
type: string;
|
104
|
+
name: string[];
|
105
|
+
label?: undefined;
|
106
|
+
initialValue?: undefined;
|
107
|
+
child?: undefined;
|
108
|
+
} | {
|
109
|
+
type: string;
|
110
|
+
label: string;
|
111
|
+
child: ({
|
112
|
+
type: string;
|
113
|
+
name: string[];
|
114
|
+
initialValue: string;
|
115
|
+
options?: undefined;
|
116
|
+
addonAfter?: undefined;
|
117
|
+
} | {
|
118
|
+
type: string;
|
119
|
+
name: string[];
|
120
|
+
options: {
|
121
|
+
label: string;
|
122
|
+
value: string;
|
123
|
+
}[];
|
124
|
+
initialValue: string;
|
125
|
+
addonAfter?: undefined;
|
126
|
+
} | {
|
127
|
+
type: string;
|
128
|
+
name: string[];
|
129
|
+
addonAfter: string;
|
130
|
+
initialValue?: undefined;
|
131
|
+
options?: undefined;
|
132
|
+
})[];
|
133
|
+
name?: undefined;
|
134
|
+
initialValue?: undefined;
|
135
|
+
})[];
|
136
|
+
})[];
|
137
|
+
export default _default;
|