@hortonstudio/main 1.2.5 → 1.2.6

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 (481) hide show
  1. package/attributes-master/.changeset/README.md +8 -0
  2. package/attributes-master/.changeset/config.json +11 -0
  3. package/attributes-master/.gitattributes +2 -0
  4. package/attributes-master/.github/ISSUE_TEMPLATE/bug_report.md +42 -0
  5. package/attributes-master/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
  6. package/attributes-master/.github/workflows/ci.yml +66 -0
  7. package/attributes-master/.github/workflows/release.yml +40 -0
  8. package/attributes-master/.prettierignore +3 -0
  9. package/attributes-master/.prettierrc +8 -0
  10. package/attributes-master/.vscode/extensions.json +3 -0
  11. package/attributes-master/.vscode/settings.json +7 -0
  12. package/attributes-master/CONTRIBUTING.md +72 -0
  13. package/attributes-master/LICENSE.md +201 -0
  14. package/attributes-master/README.md +31 -0
  15. package/attributes-master/eslint.config.js +3 -0
  16. package/attributes-master/package.json +34 -0
  17. package/attributes-master/packages/accordion/CHANGELOG.md +89 -0
  18. package/attributes-master/packages/accordion/README.md +31 -0
  19. package/attributes-master/packages/accordion/package.json +25 -0
  20. package/attributes-master/packages/accordion/src/actions/a11y.ts +39 -0
  21. package/attributes-master/packages/accordion/src/actions/classes.ts +27 -0
  22. package/attributes-master/packages/accordion/src/actions/content.ts +42 -0
  23. package/attributes-master/packages/accordion/src/actions/list.ts +36 -0
  24. package/attributes-master/packages/accordion/src/actions/query.ts +27 -0
  25. package/attributes-master/packages/accordion/src/actions/settings.ts +61 -0
  26. package/attributes-master/packages/accordion/src/factory.ts +145 -0
  27. package/attributes-master/packages/accordion/src/index.ts +3 -0
  28. package/attributes-master/packages/accordion/src/init.ts +37 -0
  29. package/attributes-master/packages/accordion/src/utils/constants.ts +62 -0
  30. package/attributes-master/packages/accordion/src/utils/helpers.ts +5 -0
  31. package/attributes-master/packages/accordion/src/utils/selectors.ts +12 -0
  32. package/attributes-master/packages/accordion/src/utils/types.ts +23 -0
  33. package/attributes-master/packages/accordion/tsconfig.json +3 -0
  34. package/attributes-master/packages/attributes/CHANGELOG.md +564 -0
  35. package/attributes-master/packages/attributes/README.md +66 -0
  36. package/attributes-master/packages/attributes/bin/build.ts +107 -0
  37. package/attributes-master/packages/attributes/bin/live-reload.js +1 -0
  38. package/attributes-master/packages/attributes/package.json +77 -0
  39. package/attributes-master/packages/attributes/playwright.config.ts +89 -0
  40. package/attributes-master/packages/attributes/src/attributes.ts +153 -0
  41. package/attributes-master/packages/attributes/src/load.ts +125 -0
  42. package/attributes-master/packages/attributes/tests/accordion.spec.ts +137 -0
  43. package/attributes-master/packages/attributes/tests/codehighlight.spec.ts +23 -0
  44. package/attributes-master/packages/attributes/tests/combobox.spec.ts +321 -0
  45. package/attributes-master/packages/attributes/tests/copyclip.spec.ts +19 -0
  46. package/attributes-master/packages/attributes/tests/displayvalues.spec.ts +48 -0
  47. package/attributes-master/packages/attributes/tests/favcustom.spec.ts +23 -0
  48. package/attributes-master/packages/attributes/tests/inject.spec.ts +40 -0
  49. package/attributes-master/packages/attributes/tests/inputactive.spec.ts +77 -0
  50. package/attributes-master/packages/attributes/tests/inputcounter.spec.ts +83 -0
  51. package/attributes-master/packages/attributes/tests/list.spec.ts +800 -0
  52. package/attributes-master/packages/attributes/tests/mirrorclick.spec.ts +22 -0
  53. package/attributes-master/packages/attributes/tests/mirrorinput.spec.ts +37 -0
  54. package/attributes-master/packages/attributes/tests/modal.spec.ts +34 -0
  55. package/attributes-master/packages/attributes/tests/numbercount.spec.ts +40 -0
  56. package/attributes-master/packages/attributes/tests/readtime.spec.ts +19 -0
  57. package/attributes-master/packages/attributes/tests/selectcustom.spec.ts +51 -0
  58. package/attributes-master/packages/attributes/tests/socialshare.spec.ts +54 -0
  59. package/attributes-master/packages/attributes/tests/starrating.spec.ts +79 -0
  60. package/attributes-master/packages/attributes/tests/toc.spec.ts +38 -0
  61. package/attributes-master/packages/attributes/tests/utils/index.ts +16 -0
  62. package/attributes-master/packages/attributes/tsconfig.json +6 -0
  63. package/attributes-master/packages/autovideo/CHANGELOG.md +182 -0
  64. package/attributes-master/packages/autovideo/README.md +31 -0
  65. package/attributes-master/packages/autovideo/package.json +22 -0
  66. package/attributes-master/packages/autovideo/src/index.ts +3 -0
  67. package/attributes-master/packages/autovideo/src/init.ts +52 -0
  68. package/attributes-master/packages/autovideo/src/types.ts +5 -0
  69. package/attributes-master/packages/autovideo/src/utils/constants.ts +4 -0
  70. package/attributes-master/packages/autovideo/tsconfig.json +3 -0
  71. package/attributes-master/packages/codehighlight/CHANGELOG.md +185 -0
  72. package/attributes-master/packages/codehighlight/README.md +27 -0
  73. package/attributes-master/packages/codehighlight/package.json +23 -0
  74. package/attributes-master/packages/codehighlight/src/actions/import.ts +50 -0
  75. package/attributes-master/packages/codehighlight/src/index.ts +3 -0
  76. package/attributes-master/packages/codehighlight/src/init.ts +53 -0
  77. package/attributes-master/packages/codehighlight/src/utils/constants.ts +24 -0
  78. package/attributes-master/packages/codehighlight/src/utils/selectors.ts +5 -0
  79. package/attributes-master/packages/codehighlight/src/utils/themes.ts +202 -0
  80. package/attributes-master/packages/codehighlight/tsconfig.json +3 -0
  81. package/attributes-master/packages/combobox/CHANGELOG.md +99 -0
  82. package/attributes-master/packages/combobox/README.md +27 -0
  83. package/attributes-master/packages/combobox/package.json +23 -0
  84. package/attributes-master/packages/combobox/src/actions/a11y.ts +29 -0
  85. package/attributes-master/packages/combobox/src/actions/body/index.ts +12 -0
  86. package/attributes-master/packages/combobox/src/actions/clearDropdown/index.ts +37 -0
  87. package/attributes-master/packages/combobox/src/actions/dropdownList/index.ts +220 -0
  88. package/attributes-master/packages/combobox/src/actions/dropdownToggle/index.ts +34 -0
  89. package/attributes-master/packages/combobox/src/actions/events.ts +75 -0
  90. package/attributes-master/packages/combobox/src/actions/input/index.ts +235 -0
  91. package/attributes-master/packages/combobox/src/actions/observe.ts +158 -0
  92. package/attributes-master/packages/combobox/src/actions/populate.ts +97 -0
  93. package/attributes-master/packages/combobox/src/actions/selectElement/index.ts +23 -0
  94. package/attributes-master/packages/combobox/src/actions/settings.ts +134 -0
  95. package/attributes-master/packages/combobox/src/actions/state.ts +34 -0
  96. package/attributes-master/packages/combobox/src/index.ts +3 -0
  97. package/attributes-master/packages/combobox/src/init.ts +52 -0
  98. package/attributes-master/packages/combobox/src/utils/constants.ts +48 -0
  99. package/attributes-master/packages/combobox/src/utils/dropdowns.ts +120 -0
  100. package/attributes-master/packages/combobox/src/utils/index.ts +1 -0
  101. package/attributes-master/packages/combobox/src/utils/selectors.ts +9 -0
  102. package/attributes-master/packages/combobox/src/utils/types.ts +14 -0
  103. package/attributes-master/packages/combobox/tsconfig.json +3 -0
  104. package/attributes-master/packages/copyclip/CHANGELOG.md +213 -0
  105. package/attributes-master/packages/copyclip/README.md +27 -0
  106. package/attributes-master/packages/copyclip/package.json +23 -0
  107. package/attributes-master/packages/copyclip/src/factory.ts +67 -0
  108. package/attributes-master/packages/copyclip/src/index.ts +3 -0
  109. package/attributes-master/packages/copyclip/src/init.ts +68 -0
  110. package/attributes-master/packages/copyclip/src/utils/constants.ts +40 -0
  111. package/attributes-master/packages/copyclip/src/utils/selectors.ts +9 -0
  112. package/attributes-master/packages/copyclip/tsconfig.json +3 -0
  113. package/attributes-master/packages/displayvalues/CHANGELOG.md +164 -0
  114. package/attributes-master/packages/displayvalues/README.md +27 -0
  115. package/attributes-master/packages/displayvalues/package.json +22 -0
  116. package/attributes-master/packages/displayvalues/src/actions/collect.ts +17 -0
  117. package/attributes-master/packages/displayvalues/src/actions/events.ts +22 -0
  118. package/attributes-master/packages/displayvalues/src/actions/sync.ts +23 -0
  119. package/attributes-master/packages/displayvalues/src/index.ts +3 -0
  120. package/attributes-master/packages/displayvalues/src/init.ts +31 -0
  121. package/attributes-master/packages/displayvalues/src/utils/constants.ts +20 -0
  122. package/attributes-master/packages/displayvalues/src/utils/selectors.ts +9 -0
  123. package/attributes-master/packages/displayvalues/src/utils/stores.ts +3 -0
  124. package/attributes-master/packages/displayvalues/tsconfig.json +3 -0
  125. package/attributes-master/packages/docs/CHANGELOG.md +108 -0
  126. package/attributes-master/packages/docs/README.md +3 -0
  127. package/attributes-master/packages/docs/bin/build.js +92 -0
  128. package/attributes-master/packages/docs/bin/live-reload.js +1 -0
  129. package/attributes-master/packages/docs/package.json +40 -0
  130. package/attributes-master/packages/docs/src/copy.ts +260 -0
  131. package/attributes-master/packages/docs/src/x-ray.ts +377 -0
  132. package/attributes-master/packages/docs/tsconfig.json +3 -0
  133. package/attributes-master/packages/favcustom/CHANGELOG.md +194 -0
  134. package/attributes-master/packages/favcustom/README.md +27 -0
  135. package/attributes-master/packages/favcustom/package.json +22 -0
  136. package/attributes-master/packages/favcustom/src/index.ts +3 -0
  137. package/attributes-master/packages/favcustom/src/init.ts +30 -0
  138. package/attributes-master/packages/favcustom/src/utils/constants.ts +10 -0
  139. package/attributes-master/packages/favcustom/src/utils/selectors.ts +5 -0
  140. package/attributes-master/packages/favcustom/tsconfig.json +3 -0
  141. package/attributes-master/packages/formsubmit/CHANGELOG.md +161 -0
  142. package/attributes-master/packages/formsubmit/README.md +51 -0
  143. package/attributes-master/packages/formsubmit/package.json +22 -0
  144. package/attributes-master/packages/formsubmit/src/actions/redirect.ts +9 -0
  145. package/attributes-master/packages/formsubmit/src/actions/reset.ts +49 -0
  146. package/attributes-master/packages/formsubmit/src/actions/submit.ts +34 -0
  147. package/attributes-master/packages/formsubmit/src/components/Form.ts +231 -0
  148. package/attributes-master/packages/formsubmit/src/factory.ts +62 -0
  149. package/attributes-master/packages/formsubmit/src/index.ts +3 -0
  150. package/attributes-master/packages/formsubmit/src/init.ts +24 -0
  151. package/attributes-master/packages/formsubmit/src/utils/attributes.ts +19 -0
  152. package/attributes-master/packages/formsubmit/src/utils/constants.ts +89 -0
  153. package/attributes-master/packages/formsubmit/src/utils/dom.ts +76 -0
  154. package/attributes-master/packages/formsubmit/src/utils/selectors.ts +9 -0
  155. package/attributes-master/packages/formsubmit/src/utils/types.ts +7 -0
  156. package/attributes-master/packages/formsubmit/tsconfig.json +3 -0
  157. package/attributes-master/packages/inject/CHANGELOG.md +117 -0
  158. package/attributes-master/packages/inject/README.md +60 -0
  159. package/attributes-master/packages/inject/package.json +22 -0
  160. package/attributes-master/packages/inject/src/actions/collect.ts +125 -0
  161. package/attributes-master/packages/inject/src/actions/css.ts +27 -0
  162. package/attributes-master/packages/inject/src/actions/prefetch.ts +44 -0
  163. package/attributes-master/packages/inject/src/factory.ts +123 -0
  164. package/attributes-master/packages/inject/src/index.ts +3 -0
  165. package/attributes-master/packages/inject/src/init.ts +22 -0
  166. package/attributes-master/packages/inject/src/utils/constants.ts +89 -0
  167. package/attributes-master/packages/inject/src/utils/helpers.ts +36 -0
  168. package/attributes-master/packages/inject/src/utils/selectors.ts +9 -0
  169. package/attributes-master/packages/inject/src/utils/types.ts +16 -0
  170. package/attributes-master/packages/inject/tsconfig.json +3 -0
  171. package/attributes-master/packages/inputactive/CHANGELOG.md +58 -0
  172. package/attributes-master/packages/inputactive/README.md +25 -0
  173. package/attributes-master/packages/inputactive/package.json +22 -0
  174. package/attributes-master/packages/inputactive/src/actions/classes.ts +43 -0
  175. package/attributes-master/packages/inputactive/src/factory.ts +24 -0
  176. package/attributes-master/packages/inputactive/src/index.ts +3 -0
  177. package/attributes-master/packages/inputactive/src/init.ts +18 -0
  178. package/attributes-master/packages/inputactive/src/utils/constants.ts +13 -0
  179. package/attributes-master/packages/inputactive/src/utils/selectors.ts +5 -0
  180. package/attributes-master/packages/inputactive/tsconfig.json +3 -0
  181. package/attributes-master/packages/inputcounter/CHANGELOG.md +110 -0
  182. package/attributes-master/packages/inputcounter/README.md +25 -0
  183. package/attributes-master/packages/inputcounter/package.json +22 -0
  184. package/attributes-master/packages/inputcounter/src/actions/a11y.ts +23 -0
  185. package/attributes-master/packages/inputcounter/src/actions/buttons.ts +61 -0
  186. package/attributes-master/packages/inputcounter/src/actions/input.ts +31 -0
  187. package/attributes-master/packages/inputcounter/src/actions/style.ts +12 -0
  188. package/attributes-master/packages/inputcounter/src/factory.ts +51 -0
  189. package/attributes-master/packages/inputcounter/src/index.ts +3 -0
  190. package/attributes-master/packages/inputcounter/src/init.ts +22 -0
  191. package/attributes-master/packages/inputcounter/src/utils/constants.ts +59 -0
  192. package/attributes-master/packages/inputcounter/src/utils/selectors.ts +9 -0
  193. package/attributes-master/packages/inputcounter/tsconfig.json +3 -0
  194. package/attributes-master/packages/list/CHANGELOG.md +185 -0
  195. package/attributes-master/packages/list/README.md +331 -0
  196. package/attributes-master/packages/list/package.json +37 -0
  197. package/attributes-master/packages/list/src/combine/index.ts +38 -0
  198. package/attributes-master/packages/list/src/components/List.ts +861 -0
  199. package/attributes-master/packages/list/src/components/ListItem.ts +229 -0
  200. package/attributes-master/packages/list/src/components/index.ts +2 -0
  201. package/attributes-master/packages/list/src/factory.ts +130 -0
  202. package/attributes-master/packages/list/src/filter/dynamic/conditions.ts +639 -0
  203. package/attributes-master/packages/list/src/filter/dynamic/groups.ts +221 -0
  204. package/attributes-master/packages/list/src/filter/dynamic/index.ts +119 -0
  205. package/attributes-master/packages/list/src/filter/dynamic/utils.ts +44 -0
  206. package/attributes-master/packages/list/src/filter/elements.ts +93 -0
  207. package/attributes-master/packages/list/src/filter/filter.ts +118 -0
  208. package/attributes-master/packages/list/src/filter/filter.worker.ts +152 -0
  209. package/attributes-master/packages/list/src/filter/index.ts +94 -0
  210. package/attributes-master/packages/list/src/filter/standard/conditions.ts +123 -0
  211. package/attributes-master/packages/list/src/filter/standard/facets.ts +253 -0
  212. package/attributes-master/packages/list/src/filter/standard/index.ts +176 -0
  213. package/attributes-master/packages/list/src/filter/standard/query.ts +111 -0
  214. package/attributes-master/packages/list/src/filter/tags.ts +314 -0
  215. package/attributes-master/packages/list/src/filter/types.ts +62 -0
  216. package/attributes-master/packages/list/src/filter/utils.ts +126 -0
  217. package/attributes-master/packages/list/src/index.ts +4 -0
  218. package/attributes-master/packages/list/src/init.ts +38 -0
  219. package/attributes-master/packages/list/src/load/all.ts +27 -0
  220. package/attributes-master/packages/list/src/load/elements.ts +39 -0
  221. package/attributes-master/packages/list/src/load/index.ts +63 -0
  222. package/attributes-master/packages/list/src/load/infinite.ts +79 -0
  223. package/attributes-master/packages/list/src/load/load.ts +191 -0
  224. package/attributes-master/packages/list/src/load/more.ts +97 -0
  225. package/attributes-master/packages/list/src/load/pagination.ts +402 -0
  226. package/attributes-master/packages/list/src/nest/index.ts +198 -0
  227. package/attributes-master/packages/list/src/prevnext/index.ts +98 -0
  228. package/attributes-master/packages/list/src/select/index.ts +56 -0
  229. package/attributes-master/packages/list/src/slider/index.ts +62 -0
  230. package/attributes-master/packages/list/src/sort/buttons.ts +96 -0
  231. package/attributes-master/packages/list/src/sort/dropdown.ts +179 -0
  232. package/attributes-master/packages/list/src/sort/index.ts +81 -0
  233. package/attributes-master/packages/list/src/sort/query.ts +63 -0
  234. package/attributes-master/packages/list/src/sort/select.ts +67 -0
  235. package/attributes-master/packages/list/src/sort/sort.ts +79 -0
  236. package/attributes-master/packages/list/src/sort/types.ts +28 -0
  237. package/attributes-master/packages/list/src/static/index.ts +73 -0
  238. package/attributes-master/packages/list/src/tabs/index.ts +97 -0
  239. package/attributes-master/packages/list/src/utils/constants.ts +728 -0
  240. package/attributes-master/packages/list/src/utils/dom.ts +108 -0
  241. package/attributes-master/packages/list/src/utils/pagination.ts +14 -0
  242. package/attributes-master/packages/list/src/utils/selectors.ts +18 -0
  243. package/attributes-master/packages/list/src/utils/store.ts +5 -0
  244. package/attributes-master/packages/list/tsconfig.json +3 -0
  245. package/attributes-master/packages/mirrorclick/CHANGELOG.md +171 -0
  246. package/attributes-master/packages/mirrorclick/README.md +25 -0
  247. package/attributes-master/packages/mirrorclick/package.json +22 -0
  248. package/attributes-master/packages/mirrorclick/src/index.ts +3 -0
  249. package/attributes-master/packages/mirrorclick/src/init.ts +35 -0
  250. package/attributes-master/packages/mirrorclick/src/utils/constants.ts +20 -0
  251. package/attributes-master/packages/mirrorclick/src/utils/selectors.ts +9 -0
  252. package/attributes-master/packages/mirrorclick/tsconfig.json +3 -0
  253. package/attributes-master/packages/mirrorinput/CHANGELOG.md +172 -0
  254. package/attributes-master/packages/mirrorinput/README.md +25 -0
  255. package/attributes-master/packages/mirrorinput/package.json +22 -0
  256. package/attributes-master/packages/mirrorinput/src/index.ts +3 -0
  257. package/attributes-master/packages/mirrorinput/src/init.ts +48 -0
  258. package/attributes-master/packages/mirrorinput/src/utils/constants.ts +15 -0
  259. package/attributes-master/packages/mirrorinput/src/utils/selectors.ts +9 -0
  260. package/attributes-master/packages/mirrorinput/tsconfig.json +3 -0
  261. package/attributes-master/packages/modal/CHANGELOG.md +94 -0
  262. package/attributes-master/packages/modal/README.md +29 -0
  263. package/attributes-master/packages/modal/package.json +23 -0
  264. package/attributes-master/packages/modal/src/actions/a11y.ts +46 -0
  265. package/attributes-master/packages/modal/src/actions/modal.ts +164 -0
  266. package/attributes-master/packages/modal/src/actions/settings.ts +21 -0
  267. package/attributes-master/packages/modal/src/factory.ts +26 -0
  268. package/attributes-master/packages/modal/src/index.ts +3 -0
  269. package/attributes-master/packages/modal/src/init.ts +22 -0
  270. package/attributes-master/packages/modal/src/utils/constants.ts +54 -0
  271. package/attributes-master/packages/modal/src/utils/selectors.ts +9 -0
  272. package/attributes-master/packages/modal/src/utils/types.ts +12 -0
  273. package/attributes-master/packages/modal/tsconfig.json +3 -0
  274. package/attributes-master/packages/numbercount/CHANGELOG.md +90 -0
  275. package/attributes-master/packages/numbercount/README.md +27 -0
  276. package/attributes-master/packages/numbercount/package.json +23 -0
  277. package/attributes-master/packages/numbercount/src/actions/a11y.ts +26 -0
  278. package/attributes-master/packages/numbercount/src/actions/animate.ts +43 -0
  279. package/attributes-master/packages/numbercount/src/actions/observe.ts +44 -0
  280. package/attributes-master/packages/numbercount/src/factory.ts +31 -0
  281. package/attributes-master/packages/numbercount/src/index.ts +3 -0
  282. package/attributes-master/packages/numbercount/src/init.ts +22 -0
  283. package/attributes-master/packages/numbercount/src/utils/constants.ts +40 -0
  284. package/attributes-master/packages/numbercount/src/utils/helpers.ts +31 -0
  285. package/attributes-master/packages/numbercount/src/utils/selectors.ts +9 -0
  286. package/attributes-master/packages/numbercount/tsconfig.json +3 -0
  287. package/attributes-master/packages/queryparam/CHANGELOG.md +118 -0
  288. package/attributes-master/packages/queryparam/README.md +25 -0
  289. package/attributes-master/packages/queryparam/package.json +22 -0
  290. package/attributes-master/packages/queryparam/src/factory.ts +51 -0
  291. package/attributes-master/packages/queryparam/src/index.ts +3 -0
  292. package/attributes-master/packages/queryparam/src/init.ts +40 -0
  293. package/attributes-master/packages/queryparam/src/utils/constants.ts +18 -0
  294. package/attributes-master/packages/queryparam/src/utils/selectors.ts +5 -0
  295. package/attributes-master/packages/queryparam/tsconfig.json +3 -0
  296. package/attributes-master/packages/rangeslider/CHANGELOG.md +236 -0
  297. package/attributes-master/packages/rangeslider/README.md +95 -0
  298. package/attributes-master/packages/rangeslider/package.json +23 -0
  299. package/attributes-master/packages/rangeslider/src/actions/a11y.ts +21 -0
  300. package/attributes-master/packages/rangeslider/src/actions/events.ts +9 -0
  301. package/attributes-master/packages/rangeslider/src/actions/settings.ts +97 -0
  302. package/attributes-master/packages/rangeslider/src/actions/styles.ts +10 -0
  303. package/attributes-master/packages/rangeslider/src/actions/values.ts +47 -0
  304. package/attributes-master/packages/rangeslider/src/components/Fill.ts +70 -0
  305. package/attributes-master/packages/rangeslider/src/components/Handle.ts +281 -0
  306. package/attributes-master/packages/rangeslider/src/factory.ts +100 -0
  307. package/attributes-master/packages/rangeslider/src/index.ts +3 -0
  308. package/attributes-master/packages/rangeslider/src/init.ts +194 -0
  309. package/attributes-master/packages/rangeslider/src/utils/constants.ts +87 -0
  310. package/attributes-master/packages/rangeslider/src/utils/selectors.ts +9 -0
  311. package/attributes-master/packages/rangeslider/src/utils/types.ts +6 -0
  312. package/attributes-master/packages/rangeslider/tsconfig.json +3 -0
  313. package/attributes-master/packages/readtime/CHANGELOG.md +108 -0
  314. package/attributes-master/packages/readtime/README.md +25 -0
  315. package/attributes-master/packages/readtime/package.json +22 -0
  316. package/attributes-master/packages/readtime/src/factory.ts +21 -0
  317. package/attributes-master/packages/readtime/src/index.ts +3 -0
  318. package/attributes-master/packages/readtime/src/init.ts +19 -0
  319. package/attributes-master/packages/readtime/src/utils/constants.ts +33 -0
  320. package/attributes-master/packages/readtime/src/utils/selectors.ts +9 -0
  321. package/attributes-master/packages/readtime/tsconfig.json +3 -0
  322. package/attributes-master/packages/removequery/CHANGELOG.md +8 -0
  323. package/attributes-master/packages/removequery/README.md +25 -0
  324. package/attributes-master/packages/removequery/package.json +22 -0
  325. package/attributes-master/packages/removequery/src/index.ts +3 -0
  326. package/attributes-master/packages/removequery/src/init.ts +18 -0
  327. package/attributes-master/packages/removequery/src/utils/constants.ts +5 -0
  328. package/attributes-master/packages/removequery/tsconfig.json +3 -0
  329. package/attributes-master/packages/scrolldisable/CHANGELOG.md +164 -0
  330. package/attributes-master/packages/scrolldisable/README.md +29 -0
  331. package/attributes-master/packages/scrolldisable/package.json +27 -0
  332. package/attributes-master/packages/scrolldisable/src/click.ts +40 -0
  333. package/attributes-master/packages/scrolldisable/src/display.ts +117 -0
  334. package/attributes-master/packages/scrolldisable/src/index.ts +3 -0
  335. package/attributes-master/packages/scrolldisable/src/init.ts +36 -0
  336. package/attributes-master/packages/scrolldisable/src/scroll.ts +63 -0
  337. package/attributes-master/packages/scrolldisable/src/utils/constants.ts +56 -0
  338. package/attributes-master/packages/scrolldisable/src/utils/selectors.ts +6 -0
  339. package/attributes-master/packages/scrolldisable/tsconfig.json +3 -0
  340. package/attributes-master/packages/selectcustom/CHANGELOG.md +242 -0
  341. package/attributes-master/packages/selectcustom/README.md +25 -0
  342. package/attributes-master/packages/selectcustom/package.json +23 -0
  343. package/attributes-master/packages/selectcustom/src/actions/a11y.ts +29 -0
  344. package/attributes-master/packages/selectcustom/src/actions/events.ts +159 -0
  345. package/attributes-master/packages/selectcustom/src/actions/observe.ts +83 -0
  346. package/attributes-master/packages/selectcustom/src/actions/populate.ts +67 -0
  347. package/attributes-master/packages/selectcustom/src/actions/settings.ts +68 -0
  348. package/attributes-master/packages/selectcustom/src/actions/state.ts +41 -0
  349. package/attributes-master/packages/selectcustom/src/index.ts +3 -0
  350. package/attributes-master/packages/selectcustom/src/init.ts +51 -0
  351. package/attributes-master/packages/selectcustom/src/utils/constants.ts +34 -0
  352. package/attributes-master/packages/selectcustom/src/utils/selectors.ts +9 -0
  353. package/attributes-master/packages/selectcustom/src/utils/types.ts +14 -0
  354. package/attributes-master/packages/selectcustom/tsconfig.json +3 -0
  355. package/attributes-master/packages/sliderdots/CHANGELOG.md +220 -0
  356. package/attributes-master/packages/sliderdots/README.md +27 -0
  357. package/attributes-master/packages/sliderdots/package.json +22 -0
  358. package/attributes-master/packages/sliderdots/src/actions/events.ts +26 -0
  359. package/attributes-master/packages/sliderdots/src/actions/observe.ts +40 -0
  360. package/attributes-master/packages/sliderdots/src/actions/populate.ts +46 -0
  361. package/attributes-master/packages/sliderdots/src/actions/sync.ts +28 -0
  362. package/attributes-master/packages/sliderdots/src/actions/wait.ts +28 -0
  363. package/attributes-master/packages/sliderdots/src/factory.ts +57 -0
  364. package/attributes-master/packages/sliderdots/src/index.ts +3 -0
  365. package/attributes-master/packages/sliderdots/src/init.ts +30 -0
  366. package/attributes-master/packages/sliderdots/src/utils/constants.ts +33 -0
  367. package/attributes-master/packages/sliderdots/src/utils/selectors.ts +9 -0
  368. package/attributes-master/packages/sliderdots/src/utils/types.ts +7 -0
  369. package/attributes-master/packages/sliderdots/tsconfig.json +3 -0
  370. package/attributes-master/packages/smartlightbox/CHANGELOG.md +203 -0
  371. package/attributes-master/packages/smartlightbox/README.md +25 -0
  372. package/attributes-master/packages/smartlightbox/package.json +22 -0
  373. package/attributes-master/packages/smartlightbox/src/actions/collect.ts +15 -0
  374. package/attributes-master/packages/smartlightbox/src/actions/move.ts +25 -0
  375. package/attributes-master/packages/smartlightbox/src/index.ts +3 -0
  376. package/attributes-master/packages/smartlightbox/src/init.ts +61 -0
  377. package/attributes-master/packages/smartlightbox/src/utils/constants.ts +31 -0
  378. package/attributes-master/packages/smartlightbox/src/utils/selectors.ts +9 -0
  379. package/attributes-master/packages/smartlightbox/tsconfig.json +3 -0
  380. package/attributes-master/packages/socialshare/CHANGELOG.md +170 -0
  381. package/attributes-master/packages/socialshare/README.md +25 -0
  382. package/attributes-master/packages/socialshare/package.json +25 -0
  383. package/attributes-master/packages/socialshare/src/actions/collect.ts +93 -0
  384. package/attributes-master/packages/socialshare/src/actions/share.ts +91 -0
  385. package/attributes-master/packages/socialshare/src/actions/trigger.ts +46 -0
  386. package/attributes-master/packages/socialshare/src/factory.ts +149 -0
  387. package/attributes-master/packages/socialshare/src/index.ts +3 -0
  388. package/attributes-master/packages/socialshare/src/init.ts +35 -0
  389. package/attributes-master/packages/socialshare/src/utils/constants.ts +94 -0
  390. package/attributes-master/packages/socialshare/src/utils/dom.ts +8 -0
  391. package/attributes-master/packages/socialshare/src/utils/selectors.ts +6 -0
  392. package/attributes-master/packages/socialshare/src/utils/stores.ts +10 -0
  393. package/attributes-master/packages/socialshare/src/utils/types.ts +34 -0
  394. package/attributes-master/packages/socialshare/tsconfig.json +3 -0
  395. package/attributes-master/packages/starrating/CHANGELOG.md +70 -0
  396. package/attributes-master/packages/starrating/README.md +25 -0
  397. package/attributes-master/packages/starrating/package.json +22 -0
  398. package/attributes-master/packages/starrating/src/actions/classes.ts +41 -0
  399. package/attributes-master/packages/starrating/src/actions/events.ts +80 -0
  400. package/attributes-master/packages/starrating/src/factory.ts +24 -0
  401. package/attributes-master/packages/starrating/src/index.ts +3 -0
  402. package/attributes-master/packages/starrating/src/init.ts +24 -0
  403. package/attributes-master/packages/starrating/src/utils/constants.ts +20 -0
  404. package/attributes-master/packages/starrating/src/utils/helpers.ts +63 -0
  405. package/attributes-master/packages/starrating/src/utils/selectors.ts +9 -0
  406. package/attributes-master/packages/starrating/tsconfig.json +3 -0
  407. package/attributes-master/packages/template/README.md +25 -0
  408. package/attributes-master/packages/template/package.json +22 -0
  409. package/attributes-master/packages/template/src/actions/console.ts +4 -0
  410. package/attributes-master/packages/template/src/index.ts +3 -0
  411. package/attributes-master/packages/template/src/init.ts +14 -0
  412. package/attributes-master/packages/template/src/utils/constants.ts +18 -0
  413. package/attributes-master/packages/template/src/utils/selectors.ts +5 -0
  414. package/attributes-master/packages/template/tsconfig.json +3 -0
  415. package/attributes-master/packages/toc/CHANGELOG.md +192 -0
  416. package/attributes-master/packages/toc/README.md +25 -0
  417. package/attributes-master/packages/toc/package.json +23 -0
  418. package/attributes-master/packages/toc/src/actions/collect.ts +136 -0
  419. package/attributes-master/packages/toc/src/actions/create.ts +44 -0
  420. package/attributes-master/packages/toc/src/actions/events.ts +29 -0
  421. package/attributes-master/packages/toc/src/actions/observe.ts +31 -0
  422. package/attributes-master/packages/toc/src/actions/populate.ts +68 -0
  423. package/attributes-master/packages/toc/src/actions/prepare.ts +25 -0
  424. package/attributes-master/packages/toc/src/actions/scroll.ts +33 -0
  425. package/attributes-master/packages/toc/src/components/TOCItem.ts +88 -0
  426. package/attributes-master/packages/toc/src/factory.ts +47 -0
  427. package/attributes-master/packages/toc/src/index.ts +3 -0
  428. package/attributes-master/packages/toc/src/init.ts +37 -0
  429. package/attributes-master/packages/toc/src/utils/constants.ts +55 -0
  430. package/attributes-master/packages/toc/src/utils/helpers.ts +23 -0
  431. package/attributes-master/packages/toc/src/utils/selectors.ts +6 -0
  432. package/attributes-master/packages/toc/src/utils/types.ts +21 -0
  433. package/attributes-master/packages/toc/tsconfig.json +3 -0
  434. package/attributes-master/packages/utils/CHANGELOG.md +43 -0
  435. package/attributes-master/packages/utils/package.json +27 -0
  436. package/attributes-master/packages/utils/src/animations/factory.ts +100 -0
  437. package/attributes-master/packages/utils/src/animations/index.ts +73 -0
  438. package/attributes-master/packages/utils/src/animations/types.ts +37 -0
  439. package/attributes-master/packages/utils/src/components/Interaction.ts +79 -0
  440. package/attributes-master/packages/utils/src/components/Renderer.ts +59 -0
  441. package/attributes-master/packages/utils/src/components/index.ts +2 -0
  442. package/attributes-master/packages/utils/src/constants/a11y.ts +50 -0
  443. package/attributes-master/packages/utils/src/constants/attributes.ts +57 -0
  444. package/attributes-master/packages/utils/src/constants/index.ts +5 -0
  445. package/attributes-master/packages/utils/src/constants/keyboard.ts +10 -0
  446. package/attributes-master/packages/utils/src/constants/webflow.ts +74 -0
  447. package/attributes-master/packages/utils/src/helpers/dates.ts +17 -0
  448. package/attributes-master/packages/utils/src/helpers/dom.ts +82 -0
  449. package/attributes-master/packages/utils/src/helpers/events.ts +59 -0
  450. package/attributes-master/packages/utils/src/helpers/fetch.ts +217 -0
  451. package/attributes-master/packages/utils/src/helpers/forms.ts +238 -0
  452. package/attributes-master/packages/utils/src/helpers/guards.ts +138 -0
  453. package/attributes-master/packages/utils/src/helpers/index.ts +11 -0
  454. package/attributes-master/packages/utils/src/helpers/numbers.ts +86 -0
  455. package/attributes-master/packages/utils/src/helpers/selectors.ts +249 -0
  456. package/attributes-master/packages/utils/src/helpers/strings.ts +19 -0
  457. package/attributes-master/packages/utils/src/helpers/wait.ts +36 -0
  458. package/attributes-master/packages/utils/src/helpers/webflow.ts +117 -0
  459. package/attributes-master/packages/utils/src/index.ts +5 -0
  460. package/attributes-master/packages/utils/src/types/core.ts +100 -0
  461. package/attributes-master/packages/utils/src/types/dom.ts +31 -0
  462. package/attributes-master/packages/utils/src/types/index.ts +4 -0
  463. package/attributes-master/packages/utils/src/types/utils.ts +20 -0
  464. package/attributes-master/packages/utils/src/types/webflow.ts +147 -0
  465. package/attributes-master/packages/utils/tsconfig.json +3 -0
  466. package/attributes-master/packages/videohls/CHANGELOG.md +76 -0
  467. package/attributes-master/packages/videohls/README.md +27 -0
  468. package/attributes-master/packages/videohls/package.json +26 -0
  469. package/attributes-master/packages/videohls/src/actions/list.ts +23 -0
  470. package/attributes-master/packages/videohls/src/actions/video.ts +44 -0
  471. package/attributes-master/packages/videohls/src/index.ts +3 -0
  472. package/attributes-master/packages/videohls/src/init.ts +28 -0
  473. package/attributes-master/packages/videohls/src/utils/constants.ts +12 -0
  474. package/attributes-master/packages/videohls/src/utils/selectors.ts +5 -0
  475. package/attributes-master/packages/videohls/src/utils/stores.ts +3 -0
  476. package/attributes-master/packages/videohls/tsconfig.json +3 -0
  477. package/attributes-master/pnpm-lock.yaml +3317 -0
  478. package/attributes-master/pnpm-workspace.yaml +3 -0
  479. package/attributes-master/tsconfig.json +6 -0
  480. package/index.js +173 -275
  481. package/package.json +1 -1
@@ -0,0 +1,221 @@
1
+ import { addListener, cloneNode } from '@finsweet/attributes-utils';
2
+ import { effect, type ShallowRef, shallowRef, watch } from '@vue/reactivity';
3
+
4
+ import type { List } from '../../components';
5
+ import { getAttribute, queryElement } from '../../utils/selectors';
6
+ import type { FilterMatch } from '../types';
7
+ import { type Condition, initCondition, initConditionAdd, initConditionsMatch } from './conditions';
8
+ import { getFilterMatchValue } from './utils';
9
+
10
+ export type ConditionGroup = {
11
+ id: string;
12
+ element: HTMLElement;
13
+ conditions: ShallowRef<Condition[]>;
14
+ cleanup: () => void;
15
+ };
16
+
17
+ /**
18
+ * Inits the condition groups match for a dynamic filters setup.
19
+ * @param list
20
+ * @param element
21
+ * @param conditionGroups
22
+ * @returns A cleanup function
23
+ */
24
+ export const initConditionGroupsMatch = (
25
+ list: List,
26
+ element: HTMLSelectElement,
27
+ conditionGroups: ShallowRef<ConditionGroup[]>
28
+ ) => {
29
+ // TODO: support fs-list-filteron
30
+ const inputCleanup = addListener(element, 'change', () => {
31
+ list.filters.value.groupsMatch = getFilterMatchValue(element);
32
+ });
33
+
34
+ const disabledClass = getAttribute(element, 'dynamicdisabledclass');
35
+
36
+ const runner = effect(() => {
37
+ const disabled = conditionGroups.value.length <= 1;
38
+
39
+ element.setAttribute('aria-disabled', disabled ? 'true' : 'false');
40
+ element.classList.toggle(disabledClass, disabled);
41
+ });
42
+
43
+ return () => {
44
+ inputCleanup();
45
+ runner.effect.stop();
46
+ };
47
+ };
48
+
49
+ /**
50
+ * Inits the button to add a new condition group.
51
+ * @param list
52
+ * @param element
53
+ * @param conditionGroupTemplate
54
+ * @param conditionGroupsWrapper
55
+ * @param conditionGroups
56
+ * @returns A cleanup function
57
+ */
58
+ export const initConditionGroupsAdd = (
59
+ list: List,
60
+ element: HTMLElement,
61
+ conditionGroupTemplate: HTMLElement,
62
+ conditionGroupsWrapper: HTMLElement,
63
+ conditionGroups: ShallowRef<ConditionGroup[]>
64
+ ) => {
65
+ const clickCleanup = addListener(element, 'click', () => {
66
+ const clone = cloneNode(conditionGroupTemplate);
67
+
68
+ const conditionGroup = initConditionGroup(list, clone, conditionGroups);
69
+ if (!conditionGroup) return;
70
+
71
+ const previousConditionGroup = conditionGroups.value[conditionGroups.value.length - 2];
72
+
73
+ if (previousConditionGroup) {
74
+ previousConditionGroup.element.after(conditionGroup.element);
75
+ } else {
76
+ conditionGroupsWrapper.append(conditionGroup.element);
77
+ }
78
+ });
79
+
80
+ return clickCleanup;
81
+ };
82
+
83
+ /**
84
+ * Inits the button to remove a condition group.
85
+ * @param element
86
+ * @param conditionGroup
87
+ * @param conditionGroups
88
+ * @returns A cleanup function
89
+ */
90
+ const initConditionGroupRemove = (
91
+ element: HTMLElement,
92
+ conditionGroup: ConditionGroup,
93
+ conditionGroups: ShallowRef<ConditionGroup[]>
94
+ ) => {
95
+ const clickCleanup = addListener(element, 'click', () => {
96
+ if (conditionGroups.value.length <= 1) return;
97
+
98
+ conditionGroup.cleanup();
99
+ });
100
+
101
+ const disabledClass = getAttribute(element, 'dynamicdisabledclass');
102
+
103
+ const runner = effect(() => {
104
+ const disabled = conditionGroups.value.length <= 1;
105
+
106
+ element.setAttribute('aria-disabled', disabled ? 'true' : 'false');
107
+ element.classList.toggle(disabledClass, disabled);
108
+ });
109
+
110
+ return () => {
111
+ clickCleanup();
112
+ runner.effect.stop();
113
+ };
114
+ };
115
+
116
+ /**
117
+ * @returns The condition group with the given ID, or undefined if not found.
118
+ * @param list
119
+ * @param conditionGroup
120
+ */
121
+ export const getFiltersGroup = (list: List, conditionGroup: ConditionGroup) => {
122
+ return list.filters.value.groups.find((group) => group.id === conditionGroup.id);
123
+ };
124
+
125
+ /**
126
+ * Inits a condition group for a dynamic filters setup.
127
+ * @param list
128
+ * @param element
129
+ * @param conditionGroups
130
+ * @returns The condition group instance
131
+ */
132
+ export const initConditionGroup = (
133
+ list: List,
134
+ element: HTMLElement,
135
+ conditionGroups: ShallowRef<ConditionGroup[]>
136
+ ): ConditionGroup | undefined => {
137
+ const conditionElement = queryElement('condition', { scope: element });
138
+ if (!conditionElement) return;
139
+
140
+ const conditionTemplate = cloneNode(conditionElement);
141
+
142
+ // Store the condition group
143
+ const id = crypto.randomUUID();
144
+ const cleanups = new Set<() => void>();
145
+
146
+ const conditionGroup: ConditionGroup = {
147
+ id,
148
+ element,
149
+ conditions: shallowRef<Condition[]>([]),
150
+
151
+ cleanup: () => {
152
+ for (const condition of conditionGroup.conditions.value) {
153
+ condition.cleanup();
154
+ }
155
+
156
+ for (const cleanup of cleanups) {
157
+ cleanup();
158
+ }
159
+
160
+ cleanups.clear();
161
+ element.remove();
162
+
163
+ conditionGroups.value = conditionGroups.value.filter((group) => group.id !== id);
164
+
165
+ const conditionGroupIndex = list.filters.value.groups.findIndex((group) => group.id === id);
166
+ if (conditionGroupIndex === -1) return;
167
+
168
+ list.filters.value.groups.splice(conditionGroupIndex, 1);
169
+ },
170
+ };
171
+
172
+ // Handle condition matching
173
+ let conditionsMatch: FilterMatch = 'and';
174
+
175
+ const conditionsMatchSelect = queryElement<HTMLSelectElement>('condition-match', { scope: element });
176
+ if (conditionsMatchSelect) {
177
+ conditionsMatch = getFilterMatchValue(conditionsMatchSelect);
178
+
179
+ const cleanup = initConditionsMatch(list, conditionsMatchSelect, conditionGroup);
180
+ cleanups.add(cleanup);
181
+ }
182
+
183
+ // Store the group
184
+ conditionGroups.value = [...conditionGroups.value, conditionGroup];
185
+
186
+ list.filters.value.groups.push({
187
+ id,
188
+ conditionsMatch,
189
+ conditions: [],
190
+ });
191
+
192
+ // Handle adding conditions to the group
193
+ const conditionAddButton = queryElement('condition-add', { scope: element });
194
+ if (conditionAddButton) {
195
+ const cleanup = initConditionAdd(list, conditionAddButton, conditionTemplate, conditionGroup);
196
+ cleanups.add(cleanup);
197
+ }
198
+
199
+ // Handle removing the group
200
+ const conditionGroupRemoveButton = queryElement('condition-group-remove', { scope: element });
201
+ if (conditionGroupRemoveButton) {
202
+ const cleanup = initConditionGroupRemove(conditionGroupRemoveButton, conditionGroup, conditionGroups);
203
+ cleanups.add(cleanup);
204
+ }
205
+
206
+ // Init default condition
207
+ initCondition(list, conditionElement, conditionGroup);
208
+
209
+ const autoCleanup = watch(
210
+ () => getFiltersGroup(list, conditionGroup),
211
+ (filtersGroup) => {
212
+ if (!filtersGroup) {
213
+ conditionGroup.cleanup();
214
+ }
215
+ }
216
+ );
217
+
218
+ cleanups.add(autoCleanup);
219
+
220
+ return conditionGroup;
221
+ };
@@ -0,0 +1,119 @@
1
+ import { addListener, cloneNode } from '@finsweet/attributes-utils';
2
+ import { shallowRef } from '@vue/reactivity';
3
+
4
+ import type { List } from '../../components/List';
5
+ import { getElementSelector, queryElement } from '../../utils/selectors';
6
+ import { handleFiltersForm } from '../elements';
7
+ import type { FilterMatch } from '../types';
8
+ import { type ConditionGroup, initConditionGroup, initConditionGroupsAdd, initConditionGroupsMatch } from './groups';
9
+ import { getFilterMatchValue } from './utils';
10
+
11
+ /**
12
+ * Inits dynamic filters for a list.
13
+ * @param list
14
+ * @param form
15
+ * @returns A cleanup function
16
+ */
17
+ export const initDynamicFilters = (list: List, form: HTMLFormElement) => {
18
+ const conditionGroupElement = queryElement('condition-group', { scope: form });
19
+ if (!conditionGroupElement) return;
20
+
21
+ const conditionGroupsWrapper = conditionGroupElement.parentElement;
22
+ if (!conditionGroupsWrapper) return;
23
+
24
+ const conditionGroupTemplate = cloneNode(conditionGroupElement);
25
+ const conditionGroups = shallowRef<ConditionGroup[]>([]);
26
+
27
+ const cleanups = new Set<() => void>();
28
+
29
+ // Handle submissions
30
+ const formElementCleanup = handleFiltersForm(form);
31
+ cleanups.add(formElementCleanup);
32
+
33
+ // Handle adding condition groups
34
+ const conditionGroupAddButton =
35
+ queryElement('condition-group-add', { scope: form }) || queryElement('condition-groups-add', { scope: form });
36
+
37
+ if (conditionGroupAddButton) {
38
+ const cleanup = initConditionGroupsAdd(
39
+ list,
40
+ conditionGroupAddButton,
41
+ conditionGroupTemplate,
42
+ conditionGroupsWrapper,
43
+ conditionGroups
44
+ );
45
+
46
+ cleanups.add(cleanup);
47
+ }
48
+
49
+ // Handle condition groups matching
50
+ let groupsMatch: FilterMatch = 'and';
51
+
52
+ const conditionGroupMatchSelect =
53
+ queryElement<HTMLSelectElement>('condition-group-match', { scope: form }) ||
54
+ queryElement<HTMLSelectElement>('condition-groups-match', { scope: form });
55
+
56
+ if (conditionGroupMatchSelect) {
57
+ groupsMatch = getFilterMatchValue(conditionGroupMatchSelect);
58
+
59
+ const cleanup = initConditionGroupsMatch(list, conditionGroupMatchSelect, conditionGroups);
60
+ cleanups.add(cleanup);
61
+ }
62
+
63
+ list.filters.value.groupsMatch = groupsMatch;
64
+
65
+ // Handle global clear buttons
66
+ const clearCleanup = handleClearButtons(list);
67
+ cleanups.add(clearCleanup);
68
+
69
+ // Init default condition group
70
+ initConditionGroup(list, conditionGroupElement, conditionGroups);
71
+
72
+ return () => {
73
+ for (const conditionGroup of conditionGroups.value) {
74
+ conditionGroup.cleanup();
75
+ }
76
+
77
+ for (const cleanup of cleanups) {
78
+ cleanup();
79
+ }
80
+
81
+ cleanups.clear();
82
+ };
83
+ };
84
+
85
+ /**
86
+ * Handles the clear buttons.
87
+ * @param list
88
+ * @returns A cleanup function.
89
+ */
90
+ const handleClearButtons = (list: List) => {
91
+ return addListener(window, 'click', (e) => {
92
+ const { target } = e;
93
+
94
+ if (!(target instanceof Element)) return;
95
+
96
+ const { instance, filters } = list;
97
+
98
+ const clearElementSelector = getElementSelector('clear', { instance });
99
+ const clearElement = target?.closest(clearElementSelector);
100
+ if (!clearElement) return;
101
+
102
+ list.settingFilters = true;
103
+
104
+ // Remove all groups and conditions except the first one
105
+ filters.value.groups.splice(1);
106
+
107
+ const firstGroup = filters.value.groups[0];
108
+ if (!firstGroup) return;
109
+
110
+ firstGroup.conditions.splice(1);
111
+
112
+ const firstCondition = firstGroup.conditions[0];
113
+ if (!firstCondition) return;
114
+
115
+ firstCondition.value = Array.isArray(firstCondition.value) ? [] : '';
116
+
117
+ list.settingFilters = false;
118
+ });
119
+ };
@@ -0,0 +1,44 @@
1
+ import { SETTINGS } from '../../utils/constants';
2
+ import type { FilterMatch, FilterOperator } from '../types';
3
+
4
+ const FIELD_REGEX = /\[field=(?:"([^"]*)"|([^\]]+))\]/;
5
+ const OPERATOR_REGEX = new RegExp(`^(${SETTINGS.operator.values.join('|')})`);
6
+ const FIELD_MATCH_VALUES = SETTINGS.fieldmatch.values.join('|');
7
+ const FIELD_MATCH_REGEX = new RegExp(`\\[fieldmatch=(${FIELD_MATCH_VALUES}|"(${FIELD_MATCH_VALUES})")\\]`);
8
+
9
+ /**
10
+ * @returns The filter match value of a given select element.
11
+ * @param selectElement
12
+ */
13
+ export const getFilterMatchValue = (selectElement: HTMLSelectElement): FilterMatch =>
14
+ selectElement.value === 'or' ? 'or' : 'and';
15
+
16
+ /**
17
+ * Parses the operator and field match value from a condition operator selection.
18
+ * @param value
19
+ * @returns The operator, field key, field match, and filter match, if found.
20
+ */
21
+ export const parseOperatorValue = (
22
+ value: string
23
+ ): { op?: FilterOperator; fieldKey?: string; fieldMatch?: FilterMatch } => {
24
+ let op: FilterOperator | undefined;
25
+ let fieldKey: string | undefined;
26
+ let fieldMatch: FilterMatch | undefined;
27
+
28
+ const opMatch = value.match(OPERATOR_REGEX);
29
+ if (opMatch) {
30
+ op = opMatch[1] as FilterOperator;
31
+ }
32
+
33
+ const fieldKeyMatch = value.match(FIELD_REGEX);
34
+ if (fieldKeyMatch) {
35
+ fieldKey = fieldKeyMatch[1] || fieldKeyMatch[2];
36
+ }
37
+
38
+ const fieldMatchMatch = value.match(FIELD_MATCH_REGEX);
39
+ if (fieldMatchMatch) {
40
+ fieldMatch = (fieldMatchMatch[2] || fieldMatchMatch[1]) as FilterMatch;
41
+ }
42
+
43
+ return { op, fieldKey, fieldMatch };
44
+ };
@@ -0,0 +1,93 @@
1
+ import {
2
+ addListener,
3
+ type FormField,
4
+ getFormFieldWrapper,
5
+ getRadioGroupInputs,
6
+ isFormField,
7
+ } from '@finsweet/attributes-utils';
8
+ import { effect } from '@vue/reactivity';
9
+
10
+ import type { List } from '../components';
11
+ import { getAttribute, hasAttributeValue } from '../utils/selectors';
12
+
13
+ /**
14
+ * Handles the filter-specific elements like the list element, empty element, and results count element.
15
+ * @param list
16
+ * @returns A cleanup function.
17
+ */
18
+ export const handleFilterElements = (list: List) => {
19
+ const elementsRunner = effect(() => {
20
+ const filteredItems = list.hooks.filter.result.value;
21
+
22
+ // Results count
23
+ if (list.resultsCountElement) {
24
+ list.resultsCountElement.textContent = `${filteredItems.length}`;
25
+ }
26
+ });
27
+
28
+ return () => elementsRunner.effect.stop();
29
+ };
30
+
31
+ /**
32
+ * Handles submit events for filters form.
33
+ * Handles the active class for form fields.
34
+ * @param form
35
+ * @returns A cleanup function.
36
+ */
37
+ export const handleFiltersForm = (form: HTMLFormElement) => {
38
+ const allowSubmit = hasAttributeValue(form, 'allowsubmit', 'true');
39
+
40
+ const submitCleanup = addListener(form, 'submit', (e) => {
41
+ if (!allowSubmit) {
42
+ e.preventDefault();
43
+ e.stopPropagation();
44
+ }
45
+ });
46
+
47
+ const changeCleanup = addListener(form, 'change', (e) => {
48
+ const { target } = e;
49
+
50
+ if (!isFormField(target)) return;
51
+
52
+ setActiveClass(target);
53
+ });
54
+
55
+ return () => {
56
+ submitCleanup();
57
+ changeCleanup();
58
+ };
59
+ };
60
+
61
+ /**
62
+ * Sets the active class to a form field.
63
+ * @param formField
64
+ */
65
+ const setActiveClass = (formField: FormField) => {
66
+ const activeClass = getAttribute(formField, 'activeclass');
67
+
68
+ switch (formField.type) {
69
+ case 'checkbox': {
70
+ const { checked } = formField as HTMLInputElement;
71
+ const target = getFormFieldWrapper(formField);
72
+
73
+ target.classList.toggle(activeClass, checked);
74
+ break;
75
+ }
76
+
77
+ case 'radio': {
78
+ const groupRadios = getRadioGroupInputs(formField);
79
+
80
+ for (const radio of groupRadios) {
81
+ const target = getFormFieldWrapper(radio);
82
+
83
+ target.classList.toggle(activeClass, radio.checked);
84
+ }
85
+
86
+ break;
87
+ }
88
+
89
+ default: {
90
+ formField.classList.toggle(activeClass, !!formField.value);
91
+ }
92
+ }
93
+ };
@@ -0,0 +1,118 @@
1
+ import { toRaw } from '@vue/reactivity';
2
+
3
+ import type { ListItem } from '../components/ListItem';
4
+ // @ts-expect-error - FilterWorker is not recognized by TypeScript
5
+ import FilterWorker from './filter.worker.js';
6
+ import type { Filters, FilterTask, FilterTaskData, FilterTaskItem, FilterTaskResult } from './types';
7
+
8
+ const WORKER_POOL_SIZE = navigator.hardwareConcurrency || 4;
9
+
10
+ const workers: Worker[] = Array.from({ length: WORKER_POOL_SIZE }, () => new FilterWorker());
11
+ const freeWorkers = workers.slice();
12
+ const taskQueue: FilterTask[] = [];
13
+
14
+ /**
15
+ * Processes a filter task using a worker.
16
+ * Once finished, it will process the next task in the queue.
17
+ * @param worker
18
+ * @param task
19
+ */
20
+ const processFilterTask = (worker: FilterWorker, task: FilterTask) => {
21
+ const controller = new AbortController();
22
+ const { signal } = controller;
23
+
24
+ const conclude = () => {
25
+ controller.abort();
26
+
27
+ const nextTask = taskQueue.shift();
28
+ if (nextTask) {
29
+ processFilterTask(worker, nextTask);
30
+ } else {
31
+ freeWorkers.push(worker);
32
+ }
33
+ };
34
+
35
+ worker.addEventListener(
36
+ 'message',
37
+ (event: MessageEvent<FilterTaskResult>) => {
38
+ task.resolve(event.data);
39
+ conclude();
40
+ },
41
+ { signal, once: true }
42
+ );
43
+
44
+ worker.addEventListener(
45
+ 'error',
46
+ (error: string | Event) => {
47
+ task.reject(error);
48
+ conclude();
49
+ },
50
+ { signal, once: true }
51
+ );
52
+
53
+ worker.postMessage(task.data);
54
+ };
55
+
56
+ /**
57
+ * Queues a filter task to be processed.
58
+ * @param task
59
+ */
60
+ const queueFilterTask = (task: FilterTask) => {
61
+ const worker = freeWorkers.pop();
62
+ if (worker) {
63
+ processFilterTask(worker, task);
64
+ } else {
65
+ taskQueue.push(task);
66
+ }
67
+ };
68
+
69
+ /**
70
+ * Runs a filter task.
71
+ * @param data
72
+ * @returns A promise that resolves with the filtered items.
73
+ */
74
+ const runFilterTask = (data: FilterTaskData) => {
75
+ return new Promise<FilterTaskResult>((resolve, reject) => {
76
+ queueFilterTask({ data, resolve, reject });
77
+ });
78
+ };
79
+
80
+ /**
81
+ * Filters the provided items based on the provided filters.
82
+ * @param filters
83
+ * @param items
84
+ * @param highlight
85
+ * @returns The filtered items.
86
+ */
87
+ export const filterItems = async (filters: Filters, items: ListItem[], highlight?: boolean) => {
88
+ const itemsMap = new Map<string, ListItem>();
89
+ const itemsData = items.map<FilterTaskItem>((item) => {
90
+ itemsMap.set(item.id, item);
91
+
92
+ const { id, fields } = item;
93
+
94
+ return { id, fields, matchedFields: {} };
95
+ });
96
+
97
+ const filteredItems = await runFilterTask({ items: itemsData, filters: toRaw(filters) });
98
+
99
+ const result = filteredItems.map(({ id, matchedFields }) => {
100
+ const item = itemsMap.get(id)!;
101
+
102
+ itemsMap.delete(id);
103
+
104
+ // Highlight the matched fields
105
+ if (highlight) {
106
+ item.highlight(matchedFields);
107
+ }
108
+
109
+ return item;
110
+ });
111
+
112
+ // Reset the highlight for the remaining items
113
+ if (highlight) {
114
+ itemsMap.forEach((item) => item.highlight({}));
115
+ }
116
+
117
+ return result;
118
+ };