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.
Files changed (416) hide show
  1. package/dist/index.cjs +13065 -0
  2. package/dist/index.cjs.map +1 -0
  3. package/dist/index.css +1683 -0
  4. package/dist/index.js +13033 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.cjs +7 -0
  7. package/dist/index.min.cjs.map +1 -0
  8. package/dist/index.min.js +7 -0
  9. package/dist/index.min.js.map +1 -0
  10. package/dist/pb-ui.js +13061 -0
  11. package/dist/pb-ui.js.map +1 -0
  12. package/dist/pb-ui.min.js +7 -0
  13. package/dist/pb-ui.min.js.map +1 -0
  14. package/es/core/Pagebuilder/PagebuilderClass.d.ts +15 -0
  15. package/es/core/Pagebuilder/PagebuilderClass.js +42 -0
  16. package/es/core/Pagebuilder/index.d.ts +3 -0
  17. package/es/core/Pagebuilder/index.js +96 -0
  18. package/es/core/Pagebuilder/type.d.ts +55 -0
  19. package/es/core/Pagebuilder/type.js +1 -0
  20. package/es/core/components/SxpPageCore/index.d.ts +12 -0
  21. package/es/core/components/SxpPageCore/index.js +26 -0
  22. package/es/core/components/SxpPageRender/ExpandableText.d.ts +14 -0
  23. package/es/core/components/SxpPageRender/ExpandableText.js +52 -0
  24. package/es/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +6 -0
  25. package/es/core/components/SxpPageRender/FingerSwipeTip/index.js +19 -0
  26. package/es/core/components/SxpPageRender/Hashtag/index.d.ts +12 -0
  27. package/es/core/components/SxpPageRender/Hashtag/index.js +40 -0
  28. package/es/core/components/SxpPageRender/LikeButton/index.d.ts +11 -0
  29. package/es/core/components/SxpPageRender/LikeButton/index.js +58 -0
  30. package/es/core/components/SxpPageRender/Modal/index.d.ts +11 -0
  31. package/es/core/components/SxpPageRender/Modal/index.js +48 -0
  32. package/es/core/components/SxpPageRender/Navbar.d.ts +9 -0
  33. package/es/core/components/SxpPageRender/Navbar.js +10 -0
  34. package/es/core/components/SxpPageRender/Nudge/index.d.ts +24 -0
  35. package/es/core/components/SxpPageRender/Nudge/index.js +13 -0
  36. package/es/core/components/SxpPageRender/PictureGroup/Picture.d.ts +8 -0
  37. package/es/core/components/SxpPageRender/PictureGroup/Picture.js +54 -0
  38. package/es/core/components/SxpPageRender/PictureGroup/index.d.ts +13 -0
  39. package/es/core/components/SxpPageRender/PictureGroup/index.js +31 -0
  40. package/es/core/components/SxpPageRender/Popup/index.d.ts +3 -0
  41. package/es/core/components/SxpPageRender/Popup/index.js +62 -0
  42. package/es/core/components/SxpPageRender/RenderCard.d.ts +11 -0
  43. package/es/core/components/SxpPageRender/RenderCard.js +43 -0
  44. package/es/core/components/SxpPageRender/ToggleButton/index.d.ts +10 -0
  45. package/es/core/components/SxpPageRender/ToggleButton/index.js +13 -0
  46. package/es/core/components/SxpPageRender/VideoWidget/index.d.ts +12 -0
  47. package/es/core/components/SxpPageRender/VideoWidget/index.js +219 -0
  48. package/es/core/components/SxpPageRender/WaterFall/List.d.ts +4 -0
  49. package/es/core/components/SxpPageRender/WaterFall/List.js +183 -0
  50. package/es/core/components/SxpPageRender/WaterFall/WaterfallList.d.ts +4 -0
  51. package/es/core/components/SxpPageRender/WaterFall/WaterfallList.js +319 -0
  52. package/es/core/components/SxpPageRender/WaterFall/index.d.ts +7 -0
  53. package/es/core/components/SxpPageRender/WaterFall/index.js +101 -0
  54. package/es/core/components/SxpPageRender/WaterFall/preview.json +1242 -0
  55. package/es/core/components/SxpPageRender/fakeData.d.ts +130 -0
  56. package/es/core/components/SxpPageRender/fakeData.js +899 -0
  57. package/es/core/components/SxpPageRender/index.d.ts +57 -0
  58. package/es/core/components/SxpPageRender/index.js +378 -0
  59. package/es/core/components/SxpPageRender/typing.d.ts +66 -0
  60. package/es/core/components/SxpPageRender/typing.js +1 -0
  61. package/es/core/components/SxpPageRender/useIconLink.d.ts +1 -0
  62. package/es/core/components/SxpPageRender/useIconLink.js +13 -0
  63. package/es/core/context/DataSourceProvider.d.ts +17 -0
  64. package/es/core/context/DataSourceProvider.js +45 -0
  65. package/es/core/context/EditorContext.d.ts +83 -0
  66. package/es/core/context/EditorContext.js +147 -0
  67. package/es/core/context/EditorDataProvider.d.ts +20 -0
  68. package/es/core/context/EditorDataProvider.js +23 -0
  69. package/es/core/context/SxpDataSourceProvider.d.ts +94 -0
  70. package/es/core/context/SxpDataSourceProvider.js +208 -0
  71. package/es/core/create.d.ts +37 -0
  72. package/es/core/create.js +4 -0
  73. package/es/core/hoc/withBindDataSource.d.ts +6 -0
  74. package/es/core/hoc/withBindDataSource.js +61 -0
  75. package/es/core/hooks/index.d.ts +4 -0
  76. package/es/core/hooks/index.js +4 -0
  77. package/es/core/hooks/useCurrentNode.d.ts +10 -0
  78. package/es/core/hooks/useCurrentNode.js +11 -0
  79. package/es/core/hooks/useDataSource.d.ts +2 -0
  80. package/es/core/hooks/useDataSource.js +6 -0
  81. package/es/core/hooks/useEditor.d.ts +1 -0
  82. package/es/core/hooks/useEditor.js +5 -0
  83. package/es/core/hooks/useEventReport.d.ts +5 -0
  84. package/es/core/hooks/useEventReport.js +73 -0
  85. package/es/core/hooks/useOnScreen.d.ts +2 -0
  86. package/es/core/hooks/useOnScreen.js +19 -0
  87. package/es/core/hooks/useSxpDataSource.d.ts +1 -0
  88. package/es/core/hooks/useSxpDataSource.js +5 -0
  89. package/es/core/index.d.ts +3 -0
  90. package/es/core/index.js +1 -0
  91. package/es/core/schema.d.ts +58 -0
  92. package/es/core/schema.js +1 -0
  93. package/es/core/utils/event.d.ts +7 -0
  94. package/es/core/utils/event.js +8 -0
  95. package/es/core/utils/getDataByDS.d.ts +6 -0
  96. package/es/core/utils/getDataByDS.js +39 -0
  97. package/es/core/utils/getSxpTokenInfo.d.ts +2 -0
  98. package/es/core/utils/getSxpTokenInfo.js +26 -0
  99. package/es/core/utils/localStore.d.ts +5 -0
  100. package/es/core/utils/localStore.js +22 -0
  101. package/es/core/utils/materials.d.ts +11 -0
  102. package/es/core/utils/materials.js +31 -0
  103. package/es/core/utils/sessionStore.d.ts +3 -0
  104. package/es/core/utils/sessionStore.js +26 -0
  105. package/es/core/utils/tool.d.ts +5 -0
  106. package/es/core/utils/tool.js +48 -0
  107. package/es/core/utils/unzip.d.ts +1 -0
  108. package/es/core/utils/unzip.js +10 -0
  109. package/es/index.d.ts +11 -0
  110. package/es/index.js +13 -0
  111. package/es/materials/index.d.ts +1 -0
  112. package/es/materials/index.js +1 -0
  113. package/es/materials/sxp/HashTag/index.d.ts +14 -0
  114. package/es/materials/sxp/HashTag/index.js +6 -0
  115. package/es/materials/sxp/HashTag/material.d.ts +2 -0
  116. package/es/materials/sxp/HashTag/material.js +52 -0
  117. package/es/materials/sxp/HashTag/settingRender.d.ts +125 -0
  118. package/es/materials/sxp/HashTag/settingRender.js +157 -0
  119. package/es/materials/sxp/defaultSetting.d.ts +11 -0
  120. package/es/materials/sxp/defaultSetting.js +7 -0
  121. package/es/materials/sxp/index.d.ts +3 -0
  122. package/es/materials/sxp/index.js +3 -0
  123. package/es/materials/sxp/popup/AppointForm/index.d.ts +18 -0
  124. package/es/materials/sxp/popup/AppointForm/index.js +76 -0
  125. package/es/materials/sxp/popup/AppointForm/interactionRender.d.ts +8 -0
  126. package/es/materials/sxp/popup/AppointForm/interactionRender.js +11 -0
  127. package/es/materials/sxp/popup/AppointForm/material.d.ts +2 -0
  128. package/es/materials/sxp/popup/AppointForm/material.js +35 -0
  129. package/es/materials/sxp/popup/AppointForm/settingRender.d.ts +68 -0
  130. package/es/materials/sxp/popup/AppointForm/settingRender.js +93 -0
  131. package/es/materials/sxp/popup/CommodityDetail/index.d.ts +34 -0
  132. package/es/materials/sxp/popup/CommodityDetail/index.js +110 -0
  133. package/es/materials/sxp/popup/CommodityDetail/material.d.ts +2 -0
  134. package/es/materials/sxp/popup/CommodityDetail/material.js +51 -0
  135. package/es/materials/sxp/popup/CommodityDetail/settingRender.d.ts +137 -0
  136. package/es/materials/sxp/popup/CommodityDetail/settingRender.js +171 -0
  137. package/es/materials/sxp/popup/CommodityDetailDiro/index.d.ts +19 -0
  138. package/es/materials/sxp/popup/CommodityDetailDiro/index.js +163 -0
  139. package/es/materials/sxp/popup/CommodityDetailDiro/material.d.ts +2 -0
  140. package/es/materials/sxp/popup/CommodityDetailDiro/material.js +16 -0
  141. package/es/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +35 -0
  142. package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +134 -0
  143. package/es/materials/sxp/popup/CommodityDetailDiroNew/material.d.ts +2 -0
  144. package/es/materials/sxp/popup/CommodityDetailDiroNew/material.js +61 -0
  145. package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +137 -0
  146. package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +175 -0
  147. package/es/materials/sxp/popup/Prompt/index.d.ts +11 -0
  148. package/es/materials/sxp/popup/Prompt/index.js +20 -0
  149. package/es/materials/sxp/popup/Prompt/interactionRender.d.ts +8 -0
  150. package/es/materials/sxp/popup/Prompt/interactionRender.js +11 -0
  151. package/es/materials/sxp/popup/Prompt/material.d.ts +2 -0
  152. package/es/materials/sxp/popup/Prompt/material.js +28 -0
  153. package/es/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
  154. package/es/materials/sxp/popup/Prompt/settingRender.js +18 -0
  155. package/es/materials/sxp/popup/index.d.ts +4 -0
  156. package/es/materials/sxp/popup/index.js +4 -0
  157. package/es/materials/sxp/template/Appoint/index.d.ts +15 -0
  158. package/es/materials/sxp/template/Appoint/index.js +16 -0
  159. package/es/materials/sxp/template/Appoint/interactionRender.d.ts +8 -0
  160. package/es/materials/sxp/template/Appoint/interactionRender.js +11 -0
  161. package/es/materials/sxp/template/Appoint/material.d.ts +2 -0
  162. package/es/materials/sxp/template/Appoint/material.js +46 -0
  163. package/es/materials/sxp/template/Commodity/index.d.ts +15 -0
  164. package/es/materials/sxp/template/Commodity/index.js +27 -0
  165. package/es/materials/sxp/template/Commodity/interactionRender.d.ts +8 -0
  166. package/es/materials/sxp/template/Commodity/interactionRender.js +11 -0
  167. package/es/materials/sxp/template/Commodity/material.d.ts +2 -0
  168. package/es/materials/sxp/template/Commodity/material.js +52 -0
  169. package/es/materials/sxp/template/CommodityDiro/index.d.ts +15 -0
  170. package/es/materials/sxp/template/CommodityDiro/index.js +27 -0
  171. package/es/materials/sxp/template/CommodityDiro/interactionRender.d.ts +8 -0
  172. package/es/materials/sxp/template/CommodityDiro/interactionRender.js +11 -0
  173. package/es/materials/sxp/template/CommodityDiro/material.d.ts +2 -0
  174. package/es/materials/sxp/template/CommodityDiro/material.js +52 -0
  175. package/es/materials/sxp/template/CommodityDiroNew/index.d.ts +15 -0
  176. package/es/materials/sxp/template/CommodityDiroNew/index.js +27 -0
  177. package/es/materials/sxp/template/CommodityDiroNew/interactionRender.d.ts +8 -0
  178. package/es/materials/sxp/template/CommodityDiroNew/interactionRender.js +11 -0
  179. package/es/materials/sxp/template/CommodityDiroNew/material.d.ts +2 -0
  180. package/es/materials/sxp/template/CommodityDiroNew/material.js +53 -0
  181. package/es/materials/sxp/template/Link/index.d.ts +14 -0
  182. package/es/materials/sxp/template/Link/index.js +32 -0
  183. package/es/materials/sxp/template/Link/material.d.ts +2 -0
  184. package/es/materials/sxp/template/Link/material.js +44 -0
  185. package/es/materials/sxp/template/MultiCommodity/index.d.ts +16 -0
  186. package/es/materials/sxp/template/MultiCommodity/index.js +52 -0
  187. package/es/materials/sxp/template/MultiCommodity/interactionRender.d.ts +8 -0
  188. package/es/materials/sxp/template/MultiCommodity/interactionRender.js +11 -0
  189. package/es/materials/sxp/template/MultiCommodity/material.d.ts +2 -0
  190. package/es/materials/sxp/template/MultiCommodity/material.js +52 -0
  191. package/es/materials/sxp/template/MultiCommodityDiro/index.d.ts +16 -0
  192. package/es/materials/sxp/template/MultiCommodityDiro/index.js +51 -0
  193. package/es/materials/sxp/template/MultiCommodityDiro/interactionRender.d.ts +8 -0
  194. package/es/materials/sxp/template/MultiCommodityDiro/interactionRender.js +11 -0
  195. package/es/materials/sxp/template/MultiCommodityDiro/material.d.ts +2 -0
  196. package/es/materials/sxp/template/MultiCommodityDiro/material.js +52 -0
  197. package/es/materials/sxp/template/MultiCommodityDiroNew/index.d.ts +16 -0
  198. package/es/materials/sxp/template/MultiCommodityDiroNew/index.js +52 -0
  199. package/es/materials/sxp/template/MultiCommodityDiroNew/interactionRender.d.ts +8 -0
  200. package/es/materials/sxp/template/MultiCommodityDiroNew/interactionRender.js +11 -0
  201. package/es/materials/sxp/template/MultiCommodityDiroNew/material.d.ts +2 -0
  202. package/es/materials/sxp/template/MultiCommodityDiroNew/material.js +53 -0
  203. package/es/materials/sxp/template/components/EventProvider.d.ts +13 -0
  204. package/es/materials/sxp/template/components/EventProvider.js +47 -0
  205. package/es/materials/sxp/template/components/Img.d.ts +10 -0
  206. package/es/materials/sxp/template/components/Img.js +19 -0
  207. package/es/materials/sxp/template/components/Scroll.d.ts +10 -0
  208. package/es/materials/sxp/template/components/Scroll.js +10 -0
  209. package/es/materials/sxp/template/components/settingRender.d.ts +129 -0
  210. package/es/materials/sxp/template/components/settingRender.js +219 -0
  211. package/es/materials/sxp/template/components/typing.d.ts +6 -0
  212. package/es/materials/sxp/template/components/typing.js +1 -0
  213. package/es/materials/sxp/template/index.d.ts +8 -0
  214. package/es/materials/sxp/template/index.js +8 -0
  215. package/lib/core/Pagebuilder/PagebuilderClass.d.ts +15 -0
  216. package/lib/core/Pagebuilder/PagebuilderClass.js +45 -0
  217. package/lib/core/Pagebuilder/index.d.ts +3 -0
  218. package/lib/core/Pagebuilder/index.js +99 -0
  219. package/lib/core/Pagebuilder/type.d.ts +55 -0
  220. package/lib/core/Pagebuilder/type.js +2 -0
  221. package/lib/core/components/SxpPageCore/index.d.ts +12 -0
  222. package/lib/core/components/SxpPageCore/index.js +29 -0
  223. package/lib/core/components/SxpPageRender/ExpandableText.d.ts +14 -0
  224. package/lib/core/components/SxpPageRender/ExpandableText.js +55 -0
  225. package/lib/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +6 -0
  226. package/lib/core/components/SxpPageRender/FingerSwipeTip/index.js +22 -0
  227. package/lib/core/components/SxpPageRender/Hashtag/index.d.ts +12 -0
  228. package/lib/core/components/SxpPageRender/Hashtag/index.js +43 -0
  229. package/lib/core/components/SxpPageRender/LikeButton/index.d.ts +11 -0
  230. package/lib/core/components/SxpPageRender/LikeButton/index.js +60 -0
  231. package/lib/core/components/SxpPageRender/Modal/index.d.ts +11 -0
  232. package/lib/core/components/SxpPageRender/Modal/index.js +51 -0
  233. package/lib/core/components/SxpPageRender/Navbar.d.ts +9 -0
  234. package/lib/core/components/SxpPageRender/Navbar.js +13 -0
  235. package/lib/core/components/SxpPageRender/Nudge/index.d.ts +24 -0
  236. package/lib/core/components/SxpPageRender/Nudge/index.js +16 -0
  237. package/lib/core/components/SxpPageRender/PictureGroup/Picture.d.ts +8 -0
  238. package/lib/core/components/SxpPageRender/PictureGroup/Picture.js +57 -0
  239. package/lib/core/components/SxpPageRender/PictureGroup/index.d.ts +13 -0
  240. package/lib/core/components/SxpPageRender/PictureGroup/index.js +34 -0
  241. package/lib/core/components/SxpPageRender/Popup/index.d.ts +3 -0
  242. package/lib/core/components/SxpPageRender/Popup/index.js +65 -0
  243. package/lib/core/components/SxpPageRender/RenderCard.d.ts +11 -0
  244. package/lib/core/components/SxpPageRender/RenderCard.js +46 -0
  245. package/lib/core/components/SxpPageRender/ToggleButton/index.d.ts +10 -0
  246. package/lib/core/components/SxpPageRender/ToggleButton/index.js +16 -0
  247. package/lib/core/components/SxpPageRender/VideoWidget/index.d.ts +12 -0
  248. package/lib/core/components/SxpPageRender/VideoWidget/index.js +222 -0
  249. package/lib/core/components/SxpPageRender/WaterFall/List.d.ts +4 -0
  250. package/lib/core/components/SxpPageRender/WaterFall/List.js +186 -0
  251. package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.d.ts +4 -0
  252. package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.js +322 -0
  253. package/lib/core/components/SxpPageRender/WaterFall/index.d.ts +7 -0
  254. package/lib/core/components/SxpPageRender/WaterFall/index.js +104 -0
  255. package/lib/core/components/SxpPageRender/WaterFall/preview.json +1242 -0
  256. package/lib/core/components/SxpPageRender/fakeData.d.ts +130 -0
  257. package/lib/core/components/SxpPageRender/fakeData.js +902 -0
  258. package/lib/core/components/SxpPageRender/index.d.ts +57 -0
  259. package/lib/core/components/SxpPageRender/index.js +381 -0
  260. package/lib/core/components/SxpPageRender/typing.d.ts +66 -0
  261. package/lib/core/components/SxpPageRender/typing.js +2 -0
  262. package/lib/core/components/SxpPageRender/useIconLink.d.ts +1 -0
  263. package/lib/core/components/SxpPageRender/useIconLink.js +17 -0
  264. package/lib/core/context/DataSourceProvider.d.ts +17 -0
  265. package/lib/core/context/DataSourceProvider.js +48 -0
  266. package/lib/core/context/EditorContext.d.ts +83 -0
  267. package/lib/core/context/EditorContext.js +151 -0
  268. package/lib/core/context/EditorDataProvider.d.ts +20 -0
  269. package/lib/core/context/EditorDataProvider.js +28 -0
  270. package/lib/core/context/SxpDataSourceProvider.d.ts +94 -0
  271. package/lib/core/context/SxpDataSourceProvider.js +211 -0
  272. package/lib/core/create.d.ts +37 -0
  273. package/lib/core/create.js +8 -0
  274. package/lib/core/hoc/withBindDataSource.d.ts +6 -0
  275. package/lib/core/hoc/withBindDataSource.js +63 -0
  276. package/lib/core/hooks/index.d.ts +4 -0
  277. package/lib/core/hooks/index.js +7 -0
  278. package/lib/core/hooks/useCurrentNode.d.ts +10 -0
  279. package/lib/core/hooks/useCurrentNode.js +14 -0
  280. package/lib/core/hooks/useDataSource.d.ts +2 -0
  281. package/lib/core/hooks/useDataSource.js +9 -0
  282. package/lib/core/hooks/useEditor.d.ts +1 -0
  283. package/lib/core/hooks/useEditor.js +9 -0
  284. package/lib/core/hooks/useEventReport.d.ts +5 -0
  285. package/lib/core/hooks/useEventReport.js +77 -0
  286. package/lib/core/hooks/useOnScreen.d.ts +2 -0
  287. package/lib/core/hooks/useOnScreen.js +22 -0
  288. package/lib/core/hooks/useSxpDataSource.d.ts +1 -0
  289. package/lib/core/hooks/useSxpDataSource.js +9 -0
  290. package/lib/core/index.d.ts +3 -0
  291. package/lib/core/index.js +5 -0
  292. package/lib/core/schema.d.ts +58 -0
  293. package/lib/core/schema.js +2 -0
  294. package/lib/core/utils/event.d.ts +7 -0
  295. package/lib/core/utils/event.js +12 -0
  296. package/lib/core/utils/getDataByDS.d.ts +6 -0
  297. package/lib/core/utils/getDataByDS.js +41 -0
  298. package/lib/core/utils/getSxpTokenInfo.d.ts +2 -0
  299. package/lib/core/utils/getSxpTokenInfo.js +30 -0
  300. package/lib/core/utils/localStore.d.ts +5 -0
  301. package/lib/core/utils/localStore.js +28 -0
  302. package/lib/core/utils/materials.d.ts +11 -0
  303. package/lib/core/utils/materials.js +37 -0
  304. package/lib/core/utils/sessionStore.d.ts +3 -0
  305. package/lib/core/utils/sessionStore.js +32 -0
  306. package/lib/core/utils/tool.d.ts +5 -0
  307. package/lib/core/utils/tool.js +54 -0
  308. package/lib/core/utils/unzip.d.ts +1 -0
  309. package/lib/core/utils/unzip.js +15 -0
  310. package/lib/index.d.ts +11 -0
  311. package/lib/index.js +22 -0
  312. package/lib/materials/index.d.ts +1 -0
  313. package/lib/materials/index.js +4 -0
  314. package/lib/materials/sxp/HashTag/index.d.ts +14 -0
  315. package/lib/materials/sxp/HashTag/index.js +9 -0
  316. package/lib/materials/sxp/HashTag/material.d.ts +2 -0
  317. package/lib/materials/sxp/HashTag/material.js +56 -0
  318. package/lib/materials/sxp/HashTag/settingRender.d.ts +125 -0
  319. package/lib/materials/sxp/HashTag/settingRender.js +159 -0
  320. package/lib/materials/sxp/defaultSetting.d.ts +11 -0
  321. package/lib/materials/sxp/defaultSetting.js +10 -0
  322. package/lib/materials/sxp/index.d.ts +3 -0
  323. package/lib/materials/sxp/index.js +6 -0
  324. package/lib/materials/sxp/popup/AppointForm/index.d.ts +18 -0
  325. package/lib/materials/sxp/popup/AppointForm/index.js +78 -0
  326. package/lib/materials/sxp/popup/AppointForm/interactionRender.d.ts +8 -0
  327. package/lib/materials/sxp/popup/AppointForm/interactionRender.js +13 -0
  328. package/lib/materials/sxp/popup/AppointForm/material.d.ts +2 -0
  329. package/lib/materials/sxp/popup/AppointForm/material.js +39 -0
  330. package/lib/materials/sxp/popup/AppointForm/settingRender.d.ts +68 -0
  331. package/lib/materials/sxp/popup/AppointForm/settingRender.js +95 -0
  332. package/lib/materials/sxp/popup/CommodityDetail/index.d.ts +34 -0
  333. package/lib/materials/sxp/popup/CommodityDetail/index.js +112 -0
  334. package/lib/materials/sxp/popup/CommodityDetail/material.d.ts +2 -0
  335. package/lib/materials/sxp/popup/CommodityDetail/material.js +55 -0
  336. package/lib/materials/sxp/popup/CommodityDetail/settingRender.d.ts +137 -0
  337. package/lib/materials/sxp/popup/CommodityDetail/settingRender.js +173 -0
  338. package/lib/materials/sxp/popup/CommodityDetailDiro/index.d.ts +19 -0
  339. package/lib/materials/sxp/popup/CommodityDetailDiro/index.js +165 -0
  340. package/lib/materials/sxp/popup/CommodityDetailDiro/material.d.ts +2 -0
  341. package/lib/materials/sxp/popup/CommodityDetailDiro/material.js +20 -0
  342. package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +35 -0
  343. package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +136 -0
  344. package/lib/materials/sxp/popup/CommodityDetailDiroNew/material.d.ts +2 -0
  345. package/lib/materials/sxp/popup/CommodityDetailDiroNew/material.js +65 -0
  346. package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +137 -0
  347. package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +177 -0
  348. package/lib/materials/sxp/popup/Prompt/index.d.ts +11 -0
  349. package/lib/materials/sxp/popup/Prompt/index.js +22 -0
  350. package/lib/materials/sxp/popup/Prompt/interactionRender.d.ts +8 -0
  351. package/lib/materials/sxp/popup/Prompt/interactionRender.js +13 -0
  352. package/lib/materials/sxp/popup/Prompt/material.d.ts +2 -0
  353. package/lib/materials/sxp/popup/Prompt/material.js +32 -0
  354. package/lib/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
  355. package/lib/materials/sxp/popup/Prompt/settingRender.js +20 -0
  356. package/lib/materials/sxp/popup/index.d.ts +4 -0
  357. package/lib/materials/sxp/popup/index.js +7 -0
  358. package/lib/materials/sxp/template/Appoint/index.d.ts +15 -0
  359. package/lib/materials/sxp/template/Appoint/index.js +18 -0
  360. package/lib/materials/sxp/template/Appoint/interactionRender.d.ts +8 -0
  361. package/lib/materials/sxp/template/Appoint/interactionRender.js +13 -0
  362. package/lib/materials/sxp/template/Appoint/material.d.ts +2 -0
  363. package/lib/materials/sxp/template/Appoint/material.js +50 -0
  364. package/lib/materials/sxp/template/Commodity/index.d.ts +15 -0
  365. package/lib/materials/sxp/template/Commodity/index.js +29 -0
  366. package/lib/materials/sxp/template/Commodity/interactionRender.d.ts +8 -0
  367. package/lib/materials/sxp/template/Commodity/interactionRender.js +13 -0
  368. package/lib/materials/sxp/template/Commodity/material.d.ts +2 -0
  369. package/lib/materials/sxp/template/Commodity/material.js +56 -0
  370. package/lib/materials/sxp/template/CommodityDiro/index.d.ts +15 -0
  371. package/lib/materials/sxp/template/CommodityDiro/index.js +29 -0
  372. package/lib/materials/sxp/template/CommodityDiro/interactionRender.d.ts +8 -0
  373. package/lib/materials/sxp/template/CommodityDiro/interactionRender.js +13 -0
  374. package/lib/materials/sxp/template/CommodityDiro/material.d.ts +2 -0
  375. package/lib/materials/sxp/template/CommodityDiro/material.js +56 -0
  376. package/lib/materials/sxp/template/CommodityDiroNew/index.d.ts +15 -0
  377. package/lib/materials/sxp/template/CommodityDiroNew/index.js +29 -0
  378. package/lib/materials/sxp/template/CommodityDiroNew/interactionRender.d.ts +8 -0
  379. package/lib/materials/sxp/template/CommodityDiroNew/interactionRender.js +13 -0
  380. package/lib/materials/sxp/template/CommodityDiroNew/material.d.ts +2 -0
  381. package/lib/materials/sxp/template/CommodityDiroNew/material.js +57 -0
  382. package/lib/materials/sxp/template/Link/index.d.ts +14 -0
  383. package/lib/materials/sxp/template/Link/index.js +34 -0
  384. package/lib/materials/sxp/template/Link/material.d.ts +2 -0
  385. package/lib/materials/sxp/template/Link/material.js +48 -0
  386. package/lib/materials/sxp/template/MultiCommodity/index.d.ts +16 -0
  387. package/lib/materials/sxp/template/MultiCommodity/index.js +54 -0
  388. package/lib/materials/sxp/template/MultiCommodity/interactionRender.d.ts +8 -0
  389. package/lib/materials/sxp/template/MultiCommodity/interactionRender.js +13 -0
  390. package/lib/materials/sxp/template/MultiCommodity/material.d.ts +2 -0
  391. package/lib/materials/sxp/template/MultiCommodity/material.js +56 -0
  392. package/lib/materials/sxp/template/MultiCommodityDiro/index.d.ts +16 -0
  393. package/lib/materials/sxp/template/MultiCommodityDiro/index.js +53 -0
  394. package/lib/materials/sxp/template/MultiCommodityDiro/interactionRender.d.ts +8 -0
  395. package/lib/materials/sxp/template/MultiCommodityDiro/interactionRender.js +13 -0
  396. package/lib/materials/sxp/template/MultiCommodityDiro/material.d.ts +2 -0
  397. package/lib/materials/sxp/template/MultiCommodityDiro/material.js +56 -0
  398. package/lib/materials/sxp/template/MultiCommodityDiroNew/index.d.ts +16 -0
  399. package/lib/materials/sxp/template/MultiCommodityDiroNew/index.js +54 -0
  400. package/lib/materials/sxp/template/MultiCommodityDiroNew/interactionRender.d.ts +8 -0
  401. package/lib/materials/sxp/template/MultiCommodityDiroNew/interactionRender.js +13 -0
  402. package/lib/materials/sxp/template/MultiCommodityDiroNew/material.d.ts +2 -0
  403. package/lib/materials/sxp/template/MultiCommodityDiroNew/material.js +57 -0
  404. package/lib/materials/sxp/template/components/EventProvider.d.ts +13 -0
  405. package/lib/materials/sxp/template/components/EventProvider.js +49 -0
  406. package/lib/materials/sxp/template/components/Img.d.ts +10 -0
  407. package/lib/materials/sxp/template/components/Img.js +22 -0
  408. package/lib/materials/sxp/template/components/Scroll.d.ts +10 -0
  409. package/lib/materials/sxp/template/components/Scroll.js +13 -0
  410. package/lib/materials/sxp/template/components/settingRender.d.ts +129 -0
  411. package/lib/materials/sxp/template/components/settingRender.js +221 -0
  412. package/lib/materials/sxp/template/components/typing.d.ts +6 -0
  413. package/lib/materials/sxp/template/components/typing.js +2 -0
  414. package/lib/materials/sxp/template/index.d.ts +8 -0
  415. package/lib/materials/sxp/template/index.js +11 -0
  416. package/package.json +1 -1
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ import { IEditorContext } from '../../../../core/context/EditorContext';
3
+ import { RecItemType } from '../../../../core/components/SxpPageRender/typing';
4
+ import './index.less';
5
+ export interface ICommodityDetailDiroProps {
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
+ index?: number;
17
+ }
18
+ declare const _default: React.NamedExoticComponent<ICommodityDetailDiroProps>;
19
+ export default _default;
@@ -0,0 +1,165 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const css_1 = require("@emotion/css");
5
+ const react_1 = tslib_1.__importStar(require("react"));
6
+ const hooks_1 = require("../../../../core/hooks");
7
+ require("./index.less");
8
+ const modules_1 = require("swiper/modules");
9
+ const react_2 = require("swiper/react");
10
+ const arrow_png_1 = tslib_1.__importDefault(require("./arrow.png"));
11
+ const useEventReport_1 = require("../../../../core/hooks/useEventReport");
12
+ const CommodityDetailDiro = (_a) => {
13
+ var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
14
+ var { style, isDefault, rec, viewTime, isPost, bottom_image, index } = _a, props = tslib_1.__rest(_a, ["style", "isDefault", "rec", "viewTime", "isPost", "bottom_image", "index"]);
15
+ const [spread, setSpread] = (0, react_1.useState)(true);
16
+ const { sxpParameter } = (0, hooks_1.useSxpDataSource)();
17
+ const { popupDetailData, bffEventReport, isPreview, swiperRef, waterFallData } = (0, hooks_1.useSxpDataSource)();
18
+ const { jumpToWeb, productView } = (0, useEventReport_1.useEventReport)();
19
+ const scrollRef = (0, react_1.useRef)(null);
20
+ const touchRef = (0, react_1.useRef)(null);
21
+ const touchMoveRef = (0, react_1.useRef)(null);
22
+ const [stopSlide, setStopSlide] = (0, react_1.useState)(false);
23
+ const [isBottom, setIsBottom] = (0, react_1.useState)(false);
24
+ const [isTop, setIsTop] = (0, react_1.useState)(true);
25
+ const curTimeRef = (0, react_1.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
+ (0, react_1.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 = (0, react_1.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 '$7,000';
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
+ (0, react_1.useEffect)(() => {
65
+ var _a, _b;
66
+ console.log((_a = scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) === null || _a === void 0 ? void 0 : _a.scrollHeight, window.innerHeight);
67
+ 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) {
68
+ setStopSlide(true);
69
+ }
70
+ }, [scrollRef]);
71
+ (0, react_1.useEffect)(() => {
72
+ const handleScroll = () => {
73
+ if (scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current) {
74
+ const { scrollTop, scrollHeight, clientHeight } = scrollRef.current;
75
+ const isBottom = scrollTop + clientHeight === scrollHeight;
76
+ if (isBottom) {
77
+ setIsBottom(true);
78
+ }
79
+ else {
80
+ setIsBottom(false);
81
+ }
82
+ if (scrollTop === 0) {
83
+ setIsTop(true);
84
+ }
85
+ else {
86
+ setIsTop(false);
87
+ }
88
+ }
89
+ };
90
+ if (scrollRef.current) {
91
+ scrollRef.current.addEventListener('scroll', handleScroll);
92
+ }
93
+ return () => {
94
+ if (scrollRef.current) {
95
+ scrollRef.current.removeEventListener('scroll', handleScroll);
96
+ }
97
+ };
98
+ }, [scrollRef]);
99
+ const handleTouchStart = (event) => {
100
+ event.stopPropagation();
101
+ touchRef.current = event.touches[0].clientY;
102
+ touchMoveRef.current = true;
103
+ };
104
+ const handleTouchMove = (event) => {
105
+ var _a, _b, _c, _d;
106
+ if (touchMoveRef.current) {
107
+ touchMoveRef.current = false;
108
+ const currentY = event.touches[0].clientY;
109
+ const diff = touchRef.current - currentY;
110
+ if (diff > 0 && (isBottom || !stopSlide)) {
111
+ (_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();
112
+ }
113
+ else if (diff < 0 && (isTop || !stopSlide)) {
114
+ (_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();
115
+ }
116
+ }
117
+ };
118
+ return (react_1.default.createElement("div", { className: 'pb-commondityDiro' },
119
+ react_1.default.createElement("div", Object.assign({ ref: scrollRef, className: (0, css_1.css)(Object.assign({}, style)) }, props, { onTouchStart: handleTouchStart, onTouchMove: (e) => {
120
+ e.stopPropagation();
121
+ handleTouchMove(e);
122
+ } }),
123
+ product && ((_f = product === null || product === void 0 ? void 0 : product.homePage) === null || _f === void 0 ? void 0 : _f.length) > 0 && (react_1.default.createElement(react_2.Swiper, { height: width, modules: [modules_1.Pagination, modules_1.Autoplay], pagination: { clickable: true, bulletActiveClass: 'swipe-item-active-bullet' }, loop: true, autoplay: {
124
+ delay: 3000
125
+ } }, (_g = product === null || product === void 0 ? void 0 : product.homePage) === null || _g === void 0 ? void 0 : _g.map((src) => {
126
+ return (react_1.default.createElement(react_2.SwiperSlide, { key: src },
127
+ react_1.default.createElement("div", { style: {
128
+ overflow: 'hidden',
129
+ width,
130
+ height: width
131
+ } },
132
+ react_1.default.createElement("img", { src: src, style: { height: '100%', width: '100%', objectFit: 'cover' } }))));
133
+ }))),
134
+ !((_h = product === null || product === void 0 ? void 0 : product.homePage) === null || _h === void 0 ? void 0 : _h.length) && (react_1.default.createElement("div", { className: (0, css_1.css)({
135
+ position: 'relative',
136
+ height: 0,
137
+ width: '100%',
138
+ paddingBottom: '100%',
139
+ overflow: 'hidden'
140
+ }) },
141
+ react_1.default.createElement("img", { className: (0, css_1.css)({
142
+ position: 'absolute',
143
+ left: 0,
144
+ top: 0,
145
+ objectFit: 'cover',
146
+ width: '100%'
147
+ }), src: (_j = sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _j !== void 0 ? _j : bottom_image, alt: '' }))),
148
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-content' },
149
+ react_1.default.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'),
150
+ react_1.default.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'),
151
+ react_1.default.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'),
152
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-content-line' }),
153
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-content-price' }, priceText)),
154
+ react_1.default.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) === '') },
155
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-desc-collapse', onClick: handleClickCollapse },
156
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-desc-collapse-title' }, "DESCRIPTION"),
157
+ react_1.default.createElement("img", { className: `pb-commondityDiro-desc-collapse-icon ${spread ? 'pb-commondityDiro-desc-collapse-iconActive' : ''}`, src: arrow_png_1.default, alt: '' })),
158
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-desc-info', hidden: !spread }, (product === null || product === void 0 ? void 0 : product.info) ||
159
+ '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.')),
160
+ (!product || (product === null || product === void 0 ? void 0 : product.link)) && (react_1.default.createElement(react_1.default.Fragment, null,
161
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-h90' }),
162
+ react_1.default.createElement("div", { className: 'pb-commondityDiro-bottom' },
163
+ react_1.default.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')))))));
164
+ };
165
+ exports.default = (0, react_1.memo)(CommodityDetailDiro);
@@ -0,0 +1,2 @@
1
+ declare const CommodityDetailDiro: import("../../../../core/create").MaterialComponet<import(".").ICommodityDetailDiroProps>;
2
+ export { CommodityDetailDiro };
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CommodityDetailDiro = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const _1 = tslib_1.__importDefault(require("."));
6
+ const create_1 = require("../../../../core/create");
7
+ const CommodityDetailDiro = (0, create_1.createMaterial)(_1.default, {
8
+ displayName: '商品详情',
9
+ icon: '',
10
+ category: 'popup',
11
+ type: 'CommodityDetailDiro',
12
+ defaulSetting: {
13
+ props: {},
14
+ style: {}
15
+ },
16
+ w: 100,
17
+ h: 40,
18
+ sort: 1
19
+ });
20
+ exports.CommodityDetailDiro = 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,136 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const css_1 = require("@emotion/css");
5
+ const react_1 = tslib_1.__importStar(require("react"));
6
+ const hooks_1 = require("../../../../core/hooks");
7
+ require("./index.less");
8
+ const modules_1 = require("swiper/modules");
9
+ const react_2 = require("swiper/react");
10
+ const Modal_1 = tslib_1.__importDefault(require("../../../../core/components/SxpPageRender/Modal"));
11
+ const ExpandableText_1 = tslib_1.__importDefault(require("../../../../core/components/SxpPageRender/ExpandableText"));
12
+ const useEventReport_1 = require("../../../../core/hooks/useEventReport");
13
+ const CommodityDetailDiroNew = (_a) => {
14
+ var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
15
+ var { style, isDefault, rec, viewTime, isPost, bottom_image, tipText, swiper, commodityStyles, buttonStyle, index } = _a, props = tslib_1.__rest(_a, ["style", "isDefault", "rec", "viewTime", "isPost", "bottom_image", "tipText", "swiper", "commodityStyles", "buttonStyle", "index"]);
16
+ const [spread, setSpread] = (0, react_1.useState)(true);
17
+ const { sxpParameter } = (0, hooks_1.useSxpDataSource)();
18
+ const { popupDetailData, bffEventReport, isPreview, swiperRef, waterFallData } = (0, hooks_1.useSxpDataSource)();
19
+ const { jumpToWeb, productView } = (0, useEventReport_1.useEventReport)();
20
+ const scrollRef = (0, react_1.useRef)(null);
21
+ const touchRef = (0, react_1.useRef)(null);
22
+ const touchMoveRef = (0, react_1.useRef)(null);
23
+ const [stopSlide, setStopSlide] = (0, react_1.useState)(false);
24
+ const [isBottom, setIsBottom] = (0, react_1.useState)(false);
25
+ const [isTop, setIsTop] = (0, react_1.useState)(true);
26
+ const [showModal, setShowModal] = (0, react_1.useState)(false);
27
+ const curTimeRef = (0, react_1.useRef)(null);
28
+ const data = isPost ? rec : popupDetailData;
29
+ 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;
30
+ 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;
31
+ const position = isPost ? index : popupDetailData === null || popupDetailData === void 0 ? void 0 : popupDetailData.index;
32
+ const handleLink = () => {
33
+ if (product === null || product === void 0 ? void 0 : product.link) {
34
+ jumpToWeb(data, product, cta, position);
35
+ if (!isPost) {
36
+ productView(data, product, cta, viewTime || curTimeRef.current, position);
37
+ }
38
+ window.location.href = window.getJointUtmLink(product.link);
39
+ }
40
+ };
41
+ (0, react_1.useEffect)(() => {
42
+ const initTime = () => {
43
+ curTimeRef.current = new Date();
44
+ };
45
+ initTime();
46
+ window.addEventListener('pageshow', initTime);
47
+ return () => {
48
+ window.removeEventListener('pageshow', initTime);
49
+ };
50
+ }, []);
51
+ const priceText = (0, react_1.useMemo)(() => {
52
+ var _a, _b, _c, _d, _e;
53
+ if ((product === null || product === void 0 ? void 0 : product.currency) && (product === null || product === void 0 ? void 0 : product.price)) {
54
+ 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', {
55
+ minimumFractionDigits: 0
56
+ })) !== null && _e !== void 0 ? _e : ''}`;
57
+ }
58
+ else {
59
+ return '£102,300.00';
60
+ }
61
+ }, [product === null || product === void 0 ? void 0 : product.price, product === null || product === void 0 ? void 0 : product.currency]);
62
+ const width = isPreview ? 375 : window.innerWidth;
63
+ const handleClickCollapse = () => {
64
+ setSpread(!spread);
65
+ };
66
+ const handleTouchStart = (event) => {
67
+ event.stopPropagation();
68
+ touchRef.current = event.touches[0].clientY;
69
+ touchMoveRef.current = true;
70
+ };
71
+ const handleTouchMove = (event) => {
72
+ var _a, _b, _c, _d;
73
+ if (touchMoveRef.current) {
74
+ touchMoveRef.current = false;
75
+ const currentY = event.touches[0].clientY;
76
+ const diff = touchRef.current - currentY;
77
+ if (diff > 0 && (isBottom || !stopSlide)) {
78
+ (_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();
79
+ }
80
+ else if (diff < 0 && (isTop || !stopSlide)) {
81
+ (_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();
82
+ }
83
+ }
84
+ };
85
+ const productInfoText = ({ isPost }) => {
86
+ return (react_1.default.createElement("div", { hidden: !!product && (!(product === null || product === void 0 ? void 0 : product.info) || (product === null || product === void 0 ? void 0 : product.info) === '') },
87
+ react_1.default.createElement(ExpandableText_1.default, { 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) ||
88
+ `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
89
+ Made in Italy` })));
90
+ };
91
+ return (react_1.default.createElement("div", { className: 'pb-commondityDiroNew' },
92
+ react_1.default.createElement("div", Object.assign({ ref: scrollRef, className: (0, css_1.css)(Object.assign({}, style)) }, props),
93
+ product && ((_f = product === null || product === void 0 ? void 0 : product.homePage) === null || _f === void 0 ? void 0 : _f.length) > 0 && (react_1.default.createElement(react_2.Swiper, { height: width, modules: [modules_1.Pagination, modules_1.Autoplay], pagination: {
94
+ clickable: true,
95
+ bulletActiveClass: 'commondityDiroNew-swipe-item-active-bullet',
96
+ clickableClass: (swiper === null || swiper === void 0 ? void 0 : swiper.dotsAlign) === 'left'
97
+ ? 'commondityDiroNew-swiper-clickable-left'
98
+ : 'commondityDiroNew-swiper-clickable-center'
99
+ }, loop: true, autoplay: {
100
+ delay: (swiper === null || swiper === void 0 ? void 0 : swiper.delay) * 1000
101
+ } }, (_g = product === null || product === void 0 ? void 0 : product.homePage) === null || _g === void 0 ? void 0 : _g.map((src) => {
102
+ return (react_1.default.createElement(react_2.SwiperSlide, { key: src },
103
+ react_1.default.createElement("div", { style: {
104
+ overflow: 'hidden',
105
+ width,
106
+ height: width
107
+ } },
108
+ react_1.default.createElement("img", { src: src, style: { height: '100%', width: '100%', objectFit: 'cover' } }))));
109
+ }))),
110
+ !((_h = product === null || product === void 0 ? void 0 : product.homePage) === null || _h === void 0 ? void 0 : _h.length) && (react_1.default.createElement("div", { className: (0, css_1.css)({
111
+ position: 'relative',
112
+ height: 0,
113
+ width: '100%',
114
+ paddingBottom: '100%',
115
+ overflow: 'hidden'
116
+ }) },
117
+ react_1.default.createElement("img", { className: (0, css_1.css)({
118
+ position: 'absolute',
119
+ left: 0,
120
+ top: 0,
121
+ objectFit: 'cover',
122
+ width: '100%'
123
+ }), src: (_j = sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.bottom_image) !== null && _j !== void 0 ? _j : bottom_image, alt: '' }))),
124
+ react_1.default.createElement("div", { className: 'pb-commondityDiroNew-content' },
125
+ react_1.default.createElement("div", { className: 'pb-commondityDiroNew-content-top' },
126
+ react_1.default.createElement("div", { className: 'pb-commondityDiroNew-content-top-left' },
127
+ react_1.default.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'),
128
+ react_1.default.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')),
129
+ react_1.default.createElement("div", { className: 'pb-commondityDiroNew-content-top-right' },
130
+ react_1.default.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),
131
+ react_1.default.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 : '税费'))),
132
+ (!product || (product === null || product === void 0 ? void 0 : product.link)) && (react_1.default.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')),
133
+ productInfoText({ isPost }))),
134
+ react_1.default.createElement(Modal_1.default, { visible: showModal, onClose: () => setShowModal(false) }, productInfoText({ isPost: false }))));
135
+ };
136
+ exports.default = (0, react_1.memo)(CommodityDetailDiroNew);
@@ -0,0 +1,2 @@
1
+ declare const CommodityDetailDiroNew: import("../../../../core/create").MaterialComponet<import(".").ICommodityDetailDiroNewProps>;
2
+ export { CommodityDetailDiroNew };
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CommodityDetailDiroNew = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const settingRender_1 = tslib_1.__importDefault(require("./settingRender"));
6
+ const _1 = tslib_1.__importDefault(require("."));
7
+ const create_1 = require("../../../../core/create");
8
+ const CommodityDetailDiroNew = (0, create_1.createMaterial)(_1.default, {
9
+ displayName: '商品详情',
10
+ icon: '',
11
+ category: 'popup',
12
+ type: 'CommodityDetailDiroNew',
13
+ related: {
14
+ settingRender: settingRender_1.default
15
+ },
16
+ defaulSetting: {
17
+ props: {
18
+ swiper: {
19
+ dotsAlign: 'left',
20
+ delay: 3
21
+ },
22
+ commodityStyles: {
23
+ price: {
24
+ color: '#000',
25
+ fontWeight: 'bold',
26
+ fontSize: 13
27
+ },
28
+ title: {
29
+ color: '#000',
30
+ fontSize: 13
31
+ },
32
+ collection: {
33
+ color: '#757575',
34
+ fontSize: 13
35
+ },
36
+ info: {
37
+ color: '#757575',
38
+ fontSize: 13
39
+ },
40
+ taxInfo: {
41
+ color: '#000',
42
+ fontWeight: 'bold',
43
+ fontSize: 13,
44
+ textAlign: 'right'
45
+ }
46
+ },
47
+ buttonStyle: {
48
+ backgroundColor: '#000',
49
+ fontSize: 12,
50
+ height: 52,
51
+ fontWeight: 'bold',
52
+ textAlign: 'center',
53
+ color: '#fff',
54
+ borderRadius: 25,
55
+ marginTop: 16,
56
+ marginBottom: 16
57
+ }
58
+ },
59
+ style: {}
60
+ },
61
+ w: 100,
62
+ h: 40,
63
+ sort: 1
64
+ });
65
+ exports.CommodityDetailDiroNew = 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;