@blokkli/editor 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (395) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +64 -0
  3. package/dist/module.cjs +5 -0
  4. package/dist/module.d.mts +129 -0
  5. package/dist/module.d.ts +129 -0
  6. package/dist/module.json +12 -0
  7. package/dist/module.mjs +5430 -0
  8. package/dist/runtime/adapter/drupal/graphql/base.graphql +906 -0
  9. package/dist/runtime/adapter/drupal/graphql/comments.graphql +56 -0
  10. package/dist/runtime/adapter/drupal/graphql/fragments.graphql +25 -0
  11. package/dist/runtime/adapter/drupal/graphql/library.graphql +66 -0
  12. package/dist/runtime/adapter/drupal/graphql/search.graphql +19 -0
  13. package/dist/runtime/adapter/drupal/graphql/transform.graphql +27 -0
  14. package/dist/runtime/adapter/drupal/graphqlMiddleware.d.ts +2 -0
  15. package/dist/runtime/adapter/drupal/graphqlMiddleware.js +643 -0
  16. package/dist/runtime/adapter/index.d.ts +352 -0
  17. package/dist/runtime/adapter/index.js +3 -0
  18. package/dist/runtime/blokkliPlugins/AddAction/index.vue +87 -0
  19. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +95 -0
  20. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +49 -0
  21. package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue +34 -0
  22. package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +73 -0
  23. package/dist/runtime/blokkliPlugins/ItemAction/index.vue +132 -0
  24. package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +42 -0
  25. package/dist/runtime/blokkliPlugins/MenuButton/index.vue +74 -0
  26. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +334 -0
  27. package/dist/runtime/blokkliPlugins/Sidebar/index.vue +286 -0
  28. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +104 -0
  29. package/dist/runtime/blokkliPlugins/TourItem/index.vue +45 -0
  30. package/dist/runtime/blokkliPlugins/ViewOption/index.vue +106 -0
  31. package/dist/runtime/blokkliPlugins/index.d.ts +12 -0
  32. package/dist/runtime/blokkliPlugins/index.js +24 -0
  33. package/dist/runtime/components/Blocks/Fragment/icon.svg +1 -0
  34. package/dist/runtime/components/Blocks/Fragment/index.vue +24 -0
  35. package/dist/runtime/components/Blocks/FromLibrary/index.vue +58 -0
  36. package/dist/runtime/components/BlokkliEditable.vue +73 -0
  37. package/dist/runtime/components/BlokkliField.vue +157 -0
  38. package/dist/runtime/components/BlokkliItem.vue +79 -0
  39. package/dist/runtime/components/BlokkliProvider.vue +160 -0
  40. package/dist/runtime/components/Edit/Actions/index.vue +263 -0
  41. package/dist/runtime/components/Edit/AddListItem/index.vue +116 -0
  42. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +122 -0
  43. package/dist/runtime/components/Edit/AppMenu/index.vue +60 -0
  44. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +64 -0
  45. package/dist/runtime/components/Edit/Dialog/index.vue +163 -0
  46. package/dist/runtime/components/Edit/DragInteractions/index.vue +439 -0
  47. package/dist/runtime/components/Edit/DraggableList.vue +110 -0
  48. package/dist/runtime/components/Edit/EditIndicator.vue +82 -0
  49. package/dist/runtime/components/Edit/EditProvider.vue +213 -0
  50. package/dist/runtime/components/Edit/Features/AddList/docs.md +4 -0
  51. package/dist/runtime/components/Edit/Features/AddList/index.vue +205 -0
  52. package/dist/runtime/components/Edit/Features/Artboard/Manager/Artboard.d.ts +204 -0
  53. package/dist/runtime/components/Edit/Features/Artboard/Manager/Artboard.js +748 -0
  54. package/dist/runtime/components/Edit/Features/Artboard/Manager/Scrollbar/index.vue +176 -0
  55. package/dist/runtime/components/Edit/Features/Artboard/Manager/index.vue +317 -0
  56. package/dist/runtime/components/Edit/Features/Artboard/index.vue +45 -0
  57. package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue +17 -0
  58. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +147 -0
  59. package/dist/runtime/components/Edit/Features/Assistant/docs.md +7 -0
  60. package/dist/runtime/components/Edit/Features/Assistant/index.vue +68 -0
  61. package/dist/runtime/components/Edit/Features/BlockAddList/docs.md +15 -0
  62. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +440 -0
  63. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue +68 -0
  64. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +56 -0
  65. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +69 -0
  66. package/dist/runtime/components/Edit/Features/Clipboard/docs.md +16 -0
  67. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +485 -0
  68. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +61 -0
  69. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +280 -0
  70. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +51 -0
  71. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +32 -0
  72. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +53 -0
  73. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +100 -0
  74. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +133 -0
  75. package/dist/runtime/components/Edit/Features/Comments/docs.md +13 -0
  76. package/dist/runtime/components/Edit/Features/Comments/index.vue +110 -0
  77. package/dist/runtime/components/Edit/Features/Conversions/index.vue +98 -0
  78. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +55 -0
  79. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +93 -0
  80. package/dist/runtime/components/Edit/Features/Debug/docs.md +3 -0
  81. package/dist/runtime/components/Edit/Features/Debug/index.vue +178 -0
  82. package/dist/runtime/components/Edit/Features/Delete/index.vue +43 -0
  83. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +420 -0
  84. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +58 -0
  85. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +808 -0
  86. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/vertex.glsl +57 -0
  87. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +410 -0
  88. package/dist/runtime/components/Edit/Features/Duplicate/index.vue +109 -0
  89. package/dist/runtime/components/Edit/Features/Edit/index.vue +63 -0
  90. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +73 -0
  91. package/dist/runtime/components/Edit/Features/EditForm/index.vue +217 -0
  92. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue +42 -0
  93. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +68 -0
  94. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +81 -0
  95. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +357 -0
  96. package/dist/runtime/components/Edit/Features/EditableField/index.vue +192 -0
  97. package/dist/runtime/components/Edit/Features/EditableMask/index.vue +64 -0
  98. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +108 -0
  99. package/dist/runtime/components/Edit/Features/Exit/index.vue +38 -0
  100. package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue +33 -0
  101. package/dist/runtime/components/Edit/Features/FieldAreas/index.vue +43 -0
  102. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +68 -0
  103. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +137 -0
  104. package/dist/runtime/components/Edit/Features/Fragments/docs.md +101 -0
  105. package/dist/runtime/components/Edit/Features/Fragments/index.vue +86 -0
  106. package/dist/runtime/components/Edit/Features/Grid/index.vue +40 -0
  107. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +71 -0
  108. package/dist/runtime/components/Edit/Features/Help/index.vue +53 -0
  109. package/dist/runtime/components/Edit/Features/History/index.vue +263 -0
  110. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +140 -0
  111. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +92 -0
  112. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +0 -0
  113. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +73 -0
  114. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +184 -0
  115. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +88 -0
  116. package/dist/runtime/components/Edit/Features/Library/docs.md +127 -0
  117. package/dist/runtime/components/Edit/Features/Library/index.vue +184 -0
  118. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +184 -0
  119. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +182 -0
  120. package/dist/runtime/components/Edit/Features/MediaLibrary/types.d.ts +57 -0
  121. package/dist/runtime/components/Edit/Features/MediaLibrary/types.js +0 -0
  122. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/fragment.glsl +90 -0
  123. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +289 -0
  124. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/vertex.glsl +182 -0
  125. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +76 -0
  126. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +52 -0
  127. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +129 -0
  128. package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue +38 -0
  129. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +25 -0
  130. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +155 -0
  131. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +74 -0
  132. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +135 -0
  133. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue +47 -0
  134. package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue +38 -0
  135. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +342 -0
  136. package/dist/runtime/components/Edit/Features/Options/index.vue +88 -0
  137. package/dist/runtime/components/Edit/Features/Ownership/index.vue +57 -0
  138. package/dist/runtime/components/Edit/Features/Preview/index.vue +45 -0
  139. package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue +30 -0
  140. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +73 -0
  141. package/dist/runtime/components/Edit/Features/Publish/index.vue +50 -0
  142. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +81 -0
  143. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +217 -0
  144. package/dist/runtime/components/Edit/Features/Revert/index.vue +68 -0
  145. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +165 -0
  146. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +211 -0
  147. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +214 -0
  148. package/dist/runtime/components/Edit/Features/Search/index.vue +79 -0
  149. package/dist/runtime/components/Edit/Features/Selection/Overlay/fragment.glsl +99 -0
  150. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +144 -0
  151. package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +85 -0
  152. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +50 -0
  153. package/dist/runtime/components/Edit/Features/Selection/index.vue +295 -0
  154. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +141 -0
  155. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +138 -0
  156. package/dist/runtime/components/Edit/Features/Settings/index.vue +92 -0
  157. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +181 -0
  158. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +149 -0
  159. package/dist/runtime/components/Edit/Features/Structure/List/index.vue +55 -0
  160. package/dist/runtime/components/Edit/Features/Structure/index.vue +83 -0
  161. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +81 -0
  162. package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue +24 -0
  163. package/dist/runtime/components/Edit/Features/Theme/index.vue +122 -0
  164. package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue +26 -0
  165. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +42 -0
  166. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +270 -0
  167. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +36 -0
  168. package/dist/runtime/components/Edit/Features/Tour/docs.md +0 -0
  169. package/dist/runtime/components/Edit/Features/Tour/index.vue +46 -0
  170. package/dist/runtime/components/Edit/Features/Transform/docs.md +67 -0
  171. package/dist/runtime/components/Edit/Features/Transform/index.vue +177 -0
  172. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +50 -0
  173. package/dist/runtime/components/Edit/Features/Translations/index.vue +193 -0
  174. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +50 -0
  175. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +51 -0
  176. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +50 -0
  177. package/dist/runtime/components/Edit/Features/Validations/index.vue +70 -0
  178. package/dist/runtime/components/Edit/Features/index.vue +67 -0
  179. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +39 -0
  180. package/dist/runtime/components/Edit/FormOverlay/index.vue +52 -0
  181. package/dist/runtime/components/Edit/Highlight/index.vue +94 -0
  182. package/dist/runtime/components/Edit/Icon/index.vue +21 -0
  183. package/dist/runtime/components/Edit/ItemIcon/index.vue +27 -0
  184. package/dist/runtime/components/Edit/Loading/index.vue +19 -0
  185. package/dist/runtime/components/Edit/Messages/Item/index.vue +107 -0
  186. package/dist/runtime/components/Edit/Messages/index.vue +37 -0
  187. package/dist/runtime/components/Edit/PreviewProvider.vue +223 -0
  188. package/dist/runtime/components/Edit/RelativeTime/index.vue +37 -0
  189. package/dist/runtime/components/Edit/Resizable/index.vue +90 -0
  190. package/dist/runtime/components/Edit/ScaleToFit/index.vue +57 -0
  191. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +90 -0
  192. package/dist/runtime/components/Edit/Sortli/index.vue +92 -0
  193. package/dist/runtime/components/Edit/SystemRequirements/index.vue +91 -0
  194. package/dist/runtime/components/Edit/Toolbar/index.vue +106 -0
  195. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +75 -0
  196. package/dist/runtime/components/Edit/index.d.ts +14 -0
  197. package/dist/runtime/components/Edit/index.js +28 -0
  198. package/dist/runtime/composables/defineBlokkli.d.ts +6 -0
  199. package/dist/runtime/composables/defineBlokkli.js +108 -0
  200. package/dist/runtime/composables/defineBlokkliFeature.d.ts +28 -0
  201. package/dist/runtime/composables/defineBlokkliFeature.js +62 -0
  202. package/dist/runtime/composables/defineBlokkliFragment.d.ts +3 -0
  203. package/dist/runtime/composables/defineBlokkliFragment.js +54 -0
  204. package/dist/runtime/composables/useBlokkli.d.ts +8 -0
  205. package/dist/runtime/composables/useBlokkli.js +5 -0
  206. package/dist/runtime/constants/index.d.ts +4 -0
  207. package/dist/runtime/constants/index.js +2 -0
  208. package/dist/runtime/css/output.css +1 -0
  209. package/dist/runtime/helpers/Artboard/index.d.ts +16 -0
  210. package/dist/runtime/helpers/Artboard/index.js +20 -0
  211. package/dist/runtime/helpers/DragStyle/index.d.ts +12 -0
  212. package/dist/runtime/helpers/DragStyle/index.js +86 -0
  213. package/dist/runtime/helpers/animationProvider.d.ts +25 -0
  214. package/dist/runtime/helpers/animationProvider.js +116 -0
  215. package/dist/runtime/helpers/broadcastProvider.d.ts +7 -0
  216. package/dist/runtime/helpers/broadcastProvider.js +26 -0
  217. package/dist/runtime/helpers/commandsProvider.d.ts +9 -0
  218. package/dist/runtime/helpers/commandsProvider.js +16 -0
  219. package/dist/runtime/helpers/composables/defineCommands.d.ts +2 -0
  220. package/dist/runtime/helpers/composables/defineCommands.js +10 -0
  221. package/dist/runtime/helpers/composables/defineDropAreas.d.ts +2 -0
  222. package/dist/runtime/helpers/composables/defineDropAreas.js +10 -0
  223. package/dist/runtime/helpers/composables/defineShortcut.d.ts +2 -0
  224. package/dist/runtime/helpers/composables/defineShortcut.js +19 -0
  225. package/dist/runtime/helpers/composables/defineTourItem.d.ts +2 -0
  226. package/dist/runtime/helpers/composables/defineTourItem.js +10 -0
  227. package/dist/runtime/helpers/composables/onBlokkliEvent.d.ts +2 -0
  228. package/dist/runtime/helpers/composables/onBlokkliEvent.js +10 -0
  229. package/dist/runtime/helpers/composables/useAnimationFrame.d.ts +1 -0
  230. package/dist/runtime/helpers/composables/useAnimationFrame.js +14 -0
  231. package/dist/runtime/helpers/composables/useDebugLogger.d.ts +2 -0
  232. package/dist/runtime/helpers/composables/useDebugLogger.js +5 -0
  233. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +5 -0
  234. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +26 -0
  235. package/dist/runtime/helpers/debugProvider.d.ts +23 -0
  236. package/dist/runtime/helpers/debugProvider.js +65 -0
  237. package/dist/runtime/helpers/dom/index.d.ts +5 -0
  238. package/dist/runtime/helpers/dom/index.js +37 -0
  239. package/dist/runtime/helpers/domProvider.d.ts +46 -0
  240. package/dist/runtime/helpers/domProvider.js +446 -0
  241. package/dist/runtime/helpers/dropAreaProvider.d.ts +9 -0
  242. package/dist/runtime/helpers/dropAreaProvider.js +22 -0
  243. package/dist/runtime/helpers/easing.d.ts +3 -0
  244. package/dist/runtime/helpers/easing.js +16 -0
  245. package/dist/runtime/helpers/eventBus.d.ts +3 -0
  246. package/dist/runtime/helpers/eventBus.js +5 -0
  247. package/dist/runtime/helpers/featuresProvider.d.ts +23 -0
  248. package/dist/runtime/helpers/featuresProvider.js +16 -0
  249. package/dist/runtime/helpers/frameEventBus.d.ts +9 -0
  250. package/dist/runtime/helpers/frameEventBus.js +2 -0
  251. package/dist/runtime/helpers/index.d.ts +87 -0
  252. package/dist/runtime/helpers/index.js +467 -0
  253. package/dist/runtime/helpers/keyboardProvider.d.ts +17 -0
  254. package/dist/runtime/helpers/keyboardProvider.js +79 -0
  255. package/dist/runtime/helpers/options.d.ts +2 -0
  256. package/dist/runtime/helpers/options.js +21 -0
  257. package/dist/runtime/helpers/runtimeHelpers/index.d.ts +10 -0
  258. package/dist/runtime/helpers/runtimeHelpers/index.js +35 -0
  259. package/dist/runtime/helpers/selectionProvider.d.ts +62 -0
  260. package/dist/runtime/helpers/selectionProvider.js +149 -0
  261. package/dist/runtime/helpers/stateProvider.d.ts +35 -0
  262. package/dist/runtime/helpers/stateProvider.js +226 -0
  263. package/dist/runtime/helpers/storageProvider.d.ts +15 -0
  264. package/dist/runtime/helpers/storageProvider.js +61 -0
  265. package/dist/runtime/helpers/symbols.d.ts +16 -0
  266. package/dist/runtime/helpers/symbols.js +18 -0
  267. package/dist/runtime/helpers/textProvider.d.ts +4 -0
  268. package/dist/runtime/helpers/textProvider.js +20 -0
  269. package/dist/runtime/helpers/themeProvider.d.ts +27 -0
  270. package/dist/runtime/helpers/themeProvider.js +124 -0
  271. package/dist/runtime/helpers/tourProvider.d.ts +11 -0
  272. package/dist/runtime/helpers/tourProvider.js +19 -0
  273. package/dist/runtime/helpers/transform.d.ts +2 -0
  274. package/dist/runtime/helpers/transform.js +17 -0
  275. package/dist/runtime/helpers/typesProvider.d.ts +36 -0
  276. package/dist/runtime/helpers/typesProvider.js +138 -0
  277. package/dist/runtime/helpers/uiProvider.d.ts +36 -0
  278. package/dist/runtime/helpers/uiProvider.js +278 -0
  279. package/dist/runtime/helpers/webgl/index.d.ts +32 -0
  280. package/dist/runtime/helpers/webgl/index.js +132 -0
  281. package/dist/runtime/icons/alert.svg +6 -0
  282. package/dist/runtime/icons/area.svg +5 -0
  283. package/dist/runtime/icons/arrow-down.svg +1 -0
  284. package/dist/runtime/icons/arrow-left.svg +1 -0
  285. package/dist/runtime/icons/arrow-right.svg +1 -0
  286. package/dist/runtime/icons/arrow-up.svg +1 -0
  287. package/dist/runtime/icons/artboard-disabled.svg +9 -0
  288. package/dist/runtime/icons/artboard-enabled.svg +29 -0
  289. package/dist/runtime/icons/artboard.svg +1 -0
  290. package/dist/runtime/icons/bug.svg +1 -0
  291. package/dist/runtime/icons/button-pointer.svg +1 -0
  292. package/dist/runtime/icons/caret.svg +12 -0
  293. package/dist/runtime/icons/cellphone.svg +1 -0
  294. package/dist/runtime/icons/chat-question.svg +1 -0
  295. package/dist/runtime/icons/check.svg +1 -0
  296. package/dist/runtime/icons/checkbox.svg +5 -0
  297. package/dist/runtime/icons/checks.svg +1 -0
  298. package/dist/runtime/icons/chevron-left.svg +1 -0
  299. package/dist/runtime/icons/chevron-right.svg +1 -0
  300. package/dist/runtime/icons/clipboard.svg +5 -0
  301. package/dist/runtime/icons/close.svg +5 -0
  302. package/dist/runtime/icons/cog.svg +5 -0
  303. package/dist/runtime/icons/command.svg +1 -0
  304. package/dist/runtime/icons/comment.svg +5 -0
  305. package/dist/runtime/icons/comment_add.svg +5 -0
  306. package/dist/runtime/icons/convert.svg +1 -0
  307. package/dist/runtime/icons/cursor-move.svg +1 -0
  308. package/dist/runtime/icons/dead.svg +1 -0
  309. package/dist/runtime/icons/delete.svg +8 -0
  310. package/dist/runtime/icons/detach.svg +7 -0
  311. package/dist/runtime/icons/drag.svg +1 -0
  312. package/dist/runtime/icons/duplicate.svg +12 -0
  313. package/dist/runtime/icons/edit.svg +8 -0
  314. package/dist/runtime/icons/exit.svg +6 -0
  315. package/dist/runtime/icons/expand.svg +1 -0
  316. package/dist/runtime/icons/file.svg +1 -0
  317. package/dist/runtime/icons/form.svg +1 -0
  318. package/dist/runtime/icons/fragment.svg +1 -0
  319. package/dist/runtime/icons/grid.svg +13 -0
  320. package/dist/runtime/icons/group.svg +5 -0
  321. package/dist/runtime/icons/help.svg +1 -0
  322. package/dist/runtime/icons/history.svg +1 -0
  323. package/dist/runtime/icons/image.svg +1 -0
  324. package/dist/runtime/icons/import.svg +5 -0
  325. package/dist/runtime/icons/laptop.svg +1 -0
  326. package/dist/runtime/icons/list-view-grid.svg +1 -0
  327. package/dist/runtime/icons/list-view-horizontal.svg +1 -0
  328. package/dist/runtime/icons/loader.svg +1 -0
  329. package/dist/runtime/icons/logo.svg +5 -0
  330. package/dist/runtime/icons/magnifier.svg +5 -0
  331. package/dist/runtime/icons/menu.svg +1 -0
  332. package/dist/runtime/icons/minus.svg +1 -0
  333. package/dist/runtime/icons/monitor.svg +1 -0
  334. package/dist/runtime/icons/multi-select.svg +1 -0
  335. package/dist/runtime/icons/multimedia.svg +1 -0
  336. package/dist/runtime/icons/opacity.svg +5 -0
  337. package/dist/runtime/icons/open_in_new.svg +3 -0
  338. package/dist/runtime/icons/palette.svg +1 -0
  339. package/dist/runtime/icons/plus-box.svg +1 -0
  340. package/dist/runtime/icons/plus.svg +1 -0
  341. package/dist/runtime/icons/preview.svg +5 -0
  342. package/dist/runtime/icons/publish.svg +12 -0
  343. package/dist/runtime/icons/puzzle.svg +1 -0
  344. package/dist/runtime/icons/qrcode.svg +5 -0
  345. package/dist/runtime/icons/question.svg +5 -0
  346. package/dist/runtime/icons/redo.svg +12 -0
  347. package/dist/runtime/icons/resize.svg +1 -0
  348. package/dist/runtime/icons/reusable.svg +5 -0
  349. package/dist/runtime/icons/revert.svg +5 -0
  350. package/dist/runtime/icons/robot.svg +1 -0
  351. package/dist/runtime/icons/rotate-phone.svg +1 -0
  352. package/dist/runtime/icons/sad.svg +1 -0
  353. package/dist/runtime/icons/save.svg +1 -0
  354. package/dist/runtime/icons/script.svg +1 -0
  355. package/dist/runtime/icons/scrolltotop.svg +6 -0
  356. package/dist/runtime/icons/search.svg +1 -0
  357. package/dist/runtime/icons/selection.svg +5 -0
  358. package/dist/runtime/icons/spinner.svg +15 -0
  359. package/dist/runtime/icons/star.svg +1 -0
  360. package/dist/runtime/icons/swap-horizontal.svg +1 -0
  361. package/dist/runtime/icons/tablet.svg +1 -0
  362. package/dist/runtime/icons/textbox.svg +1 -0
  363. package/dist/runtime/icons/texturebox.svg +5 -0
  364. package/dist/runtime/icons/tiktok.svg +1 -0
  365. package/dist/runtime/icons/title.svg +1 -0
  366. package/dist/runtime/icons/tools.svg +1 -0
  367. package/dist/runtime/icons/translate.svg +5 -0
  368. package/dist/runtime/icons/tree.svg +5 -0
  369. package/dist/runtime/icons/tutor.svg +1 -0
  370. package/dist/runtime/icons/ui-list-horizontal.svg +19 -0
  371. package/dist/runtime/icons/ui-list-sidebar.svg +21 -0
  372. package/dist/runtime/icons/ui-list-vertical.svg +9 -0
  373. package/dist/runtime/icons/undo.svg +12 -0
  374. package/dist/runtime/icons/unstar.svg +1 -0
  375. package/dist/runtime/icons/upload.svg +1 -0
  376. package/dist/runtime/icons/user.svg +1 -0
  377. package/dist/runtime/icons/video-outline.svg +1 -0
  378. package/dist/runtime/icons/vimeo.svg +3 -0
  379. package/dist/runtime/icons/window-maximize.svg +1 -0
  380. package/dist/runtime/icons/window-minimize.svg +1 -0
  381. package/dist/runtime/icons/youtube.svg +3 -0
  382. package/dist/runtime/plugins/blokkliEditable.d.ts +2 -0
  383. package/dist/runtime/plugins/blokkliEditable.js +31 -0
  384. package/dist/runtime/public/Inter.var.woff2 +0 -0
  385. package/dist/runtime/types/blokkOptions.d.ts +83 -0
  386. package/dist/runtime/types/blokkOptions.js +0 -0
  387. package/dist/runtime/types/generatedModuleTypes.d.ts +41 -0
  388. package/dist/runtime/types/generatedModuleTypes.js +0 -0
  389. package/dist/runtime/types/index.d.ts +1052 -0
  390. package/dist/runtime/types/index.js +1 -0
  391. package/dist/runtime/types/theme.d.ts +33 -0
  392. package/dist/runtime/types/theme.js +0 -0
  393. package/dist/types.d.mts +1 -0
  394. package/dist/types.d.ts +1 -0
  395. package/package.json +103 -0
@@ -0,0 +1,748 @@
1
+ import { easeOutQuad } from "#blokkli/helpers/easing";
2
+ import { lerp, calculateCenterPosition } from "#blokkli/helpers";
3
+ class Queue {
4
+ queue = [];
5
+ timeQueue = [];
6
+ reset() {
7
+ this.queue.splice(0);
8
+ this.timeQueue.splice(0);
9
+ }
10
+ pruneQueue(ms) {
11
+ while (this.timeQueue.length && this.timeQueue[0] < Date.now() - ms) {
12
+ this.timeQueue.shift();
13
+ this.queue.shift();
14
+ }
15
+ }
16
+ add(position) {
17
+ this.queue.push(position);
18
+ this.timeQueue.push(Date.now());
19
+ this.pruneQueue(50);
20
+ }
21
+ }
22
+ class VelocityQueue extends Queue {
23
+ max;
24
+ constructor(max) {
25
+ super();
26
+ this.max = max;
27
+ }
28
+ getVelocity() {
29
+ this.pruneQueue(1e3);
30
+ const length = this.timeQueue.length;
31
+ if (length < 2) return { x: 0, y: 0 };
32
+ const distanceX = this.queue[length - 1].x - this.queue[0].x;
33
+ const distanceY = this.queue[length - 1].y - this.queue[0].y;
34
+ const time = (this.timeQueue[length - 1] - this.timeQueue[0]) / 1e3;
35
+ const x = this.limit(distanceX / time * 0.03);
36
+ const y = this.limit(distanceY / time * 0.03);
37
+ return { x, y };
38
+ }
39
+ limit(v) {
40
+ return Math.min(Math.max(v, -this.max), this.max);
41
+ }
42
+ }
43
+ class ScaleVelocityQueue extends Queue {
44
+ getVelocity() {
45
+ this.pruneQueue(1e3);
46
+ const length = this.timeQueue.length;
47
+ if (length < 2) return 0;
48
+ const distance = this.queue[length - 1] - this.queue[0];
49
+ const time = (this.timeQueue[length - 1] - this.timeQueue[0]) / 1e3;
50
+ return distance / time * 0.03;
51
+ }
52
+ }
53
+ function applyRubberBandEffect(value, min, max, factor = 0.5) {
54
+ if (value < min) {
55
+ return min - (min - value) * factor;
56
+ } else if (value > max) {
57
+ return max + (value - max) * factor;
58
+ }
59
+ return value;
60
+ }
61
+ export class Artboard {
62
+ /**
63
+ * The element containing the artboard that can be moved and zoomed.
64
+ */
65
+ artboardEl;
66
+ /**
67
+ * The parent/root element that defines the area in which the artboard can be interacted with.
68
+ */
69
+ rootEl;
70
+ /**
71
+ * The minimum scale amount.
72
+ */
73
+ minScale = 0.1;
74
+ /**
75
+ * The maximum scale amount.
76
+ */
77
+ maxScale = 3;
78
+ /**
79
+ * The maximum move velocity.
80
+ */
81
+ maxVelocity = 200;
82
+ /**
83
+ * The current scale of the artboard.
84
+ */
85
+ scale = 1;
86
+ /**
87
+ * The padding area inside the root element.
88
+ */
89
+ padding = 20;
90
+ /**
91
+ * The multiplier for scrolling using the mouse wheel.
92
+ */
93
+ scrollSpeed = 1;
94
+ /**
95
+ * The current arboard offset/translation.
96
+ */
97
+ offset;
98
+ /**
99
+ * The native size of the artboard (without any scaling).
100
+ */
101
+ artboardSize;
102
+ /**
103
+ * The native size of the root element.
104
+ */
105
+ rootSize;
106
+ /**
107
+ * The target state for the current animation.
108
+ */
109
+ animationTarget = null;
110
+ /**
111
+ * The last touch coordinate (or the midpoint of two touches when scaling).
112
+ */
113
+ lastTouch;
114
+ /**
115
+ * Whether the user is currently dragging the artboard.
116
+ */
117
+ isDragging = false;
118
+ /**
119
+ * Whether the user is currently scaling the artboard using touch gestures.
120
+ */
121
+ isScaling = false;
122
+ /**
123
+ * The calculated velocity of a drag gesture.
124
+ */
125
+ velocity = { x: 0, y: 0 };
126
+ /**
127
+ * The queue containing the last touches to calculate the velocity.
128
+ */
129
+ velocityQueue;
130
+ /**
131
+ * The calculated scale velocity.
132
+ */
133
+ scaleVelocity = 0;
134
+ /**
135
+ * The queue containing the last scaling values during a scale gesture.
136
+ */
137
+ scaleVelocityQueue;
138
+ /**
139
+ * Whether the animation loop is performing momentum scrolling.
140
+ */
141
+ isMomentumScrolling = false;
142
+ /**
143
+ * The detected touch direction.
144
+ */
145
+ touchDirection = "none";
146
+ /**
147
+ * The coordinate at which the first touch event fired.
148
+ */
149
+ initialTouchPoint = null;
150
+ /**
151
+ * The offset at the time the first touch event fired.
152
+ */
153
+ initialOffset = { x: 0, y: 0 };
154
+ scaleMidpoint = null;
155
+ initialTouchDistance = 0;
156
+ initialScale = 1;
157
+ moveStartOffset = null;
158
+ moveStartCoords = null;
159
+ isPressingSpace = false;
160
+ /**
161
+ * Whether the user is currently touching the artboard with at least one finger.
162
+ */
163
+ isTouching = false;
164
+ getBlockingRects = null;
165
+ listeners = {};
166
+ resizeObserver;
167
+ scaleStartCoords = null;
168
+ lastScaleTimestamp = 0;
169
+ /**
170
+ * The timestamp of the last call to animateTo().
171
+ */
172
+ lastAnimateToTimestamp = 0;
173
+ /**
174
+ * Construct a new Artboard.
175
+ */
176
+ constructor(el, rootEl, options) {
177
+ this.artboardEl = el;
178
+ this.rootEl = rootEl;
179
+ this.offset = {
180
+ x: options?.x || 0,
181
+ y: options?.y || 0
182
+ };
183
+ this.lastTouch = null;
184
+ this.artboardSize = {
185
+ width: el.offsetWidth,
186
+ height: el.offsetHeight
187
+ };
188
+ this.velocityQueue = new VelocityQueue(200);
189
+ this.scaleVelocityQueue = new ScaleVelocityQueue();
190
+ this.rootSize = {
191
+ width: window.innerWidth,
192
+ height: window.innerHeight
193
+ };
194
+ if (options) {
195
+ this.setOptions(options);
196
+ }
197
+ this.resizeObserver = new ResizeObserver((entries) => {
198
+ for (const entry of entries) {
199
+ if (entry.target === el) {
200
+ const size = entry.contentBoxSize[0];
201
+ if (!size) {
202
+ return;
203
+ }
204
+ this.artboardSize.width = size.inlineSize;
205
+ this.artboardSize.height = size.blockSize;
206
+ } else if (entry.target === rootEl) {
207
+ const size = entry.contentBoxSize[0];
208
+ if (!size) {
209
+ return;
210
+ }
211
+ this.rootSize.width = size.inlineSize;
212
+ this.rootSize.height = size.blockSize;
213
+ }
214
+ }
215
+ });
216
+ this.resizeObserver.observe(this.artboardEl);
217
+ this.resizeObserver.observe(this.rootEl);
218
+ this.initListeners();
219
+ }
220
+ setOptions(options) {
221
+ if (options.scrollSpeed) {
222
+ this.scrollSpeed = options.scrollSpeed;
223
+ }
224
+ if (options.padding) {
225
+ this.padding = options.padding;
226
+ }
227
+ if (options.scale) {
228
+ this.scale = options.scale;
229
+ }
230
+ if (options.minScale) {
231
+ this.minScale = options.minScale;
232
+ }
233
+ if (options.maxScale) {
234
+ this.maxScale = options.maxScale;
235
+ }
236
+ if (options.getBlockingRects) {
237
+ this.getBlockingRects = options.getBlockingRects;
238
+ }
239
+ if (options.maxVelocity) {
240
+ this.maxVelocity = options.maxVelocity;
241
+ }
242
+ }
243
+ initListeners() {
244
+ this.listeners.onWheel = this.onWheel.bind(this);
245
+ document.documentElement.addEventListener("wheel", this.listeners.onWheel, {
246
+ passive: false
247
+ });
248
+ this.listeners.onTouchStart = this.onTouchStart.bind(this);
249
+ this.rootEl.addEventListener("touchstart", this.listeners.onTouchStart, {
250
+ passive: false
251
+ });
252
+ this.listeners.onTouchMove = this.onTouchMove.bind(this);
253
+ this.rootEl.addEventListener("touchmove", this.listeners.onTouchMove, {
254
+ passive: false
255
+ });
256
+ this.listeners.onTouchEnd = this.onTouchEnd.bind(this);
257
+ this.rootEl.addEventListener("touchend", this.listeners.onTouchEnd, {
258
+ passive: false,
259
+ capture: true
260
+ });
261
+ this.listeners.onMouseDown = this.onMouseDown.bind(this);
262
+ this.rootEl.addEventListener("mousedown", this.listeners.onMouseDown, {
263
+ passive: false,
264
+ capture: true
265
+ });
266
+ this.listeners.onMouseUp = this.onMouseUp.bind(this);
267
+ this.rootEl.addEventListener("mouseup", this.listeners.onMouseUp, {
268
+ passive: false
269
+ });
270
+ this.listeners.onKeyDown = this.onKeyDown.bind(this);
271
+ document.addEventListener("keydown", this.listeners.onKeyDown, {
272
+ passive: false
273
+ });
274
+ this.listeners.onKeyUp = this.onKeyUp.bind(this);
275
+ document.addEventListener("keyup", this.listeners.onKeyUp, {
276
+ passive: false
277
+ });
278
+ }
279
+ onKeyDown(e) {
280
+ if (e.code === "Space" && !this.isPressingSpace) {
281
+ this.isPressingSpace = true;
282
+ }
283
+ }
284
+ onKeyUp() {
285
+ this.isPressingSpace = false;
286
+ this.moveStartOffset = null;
287
+ this.moveStartCoords = null;
288
+ }
289
+ onMouseDown(e) {
290
+ if (this.isMomentumScrolling || this.isPressingSpace) {
291
+ e.preventDefault();
292
+ e.stopPropagation();
293
+ }
294
+ this.isMomentumScrolling = false;
295
+ if (e.buttons === 1 && this.isPressingSpace || e.buttons === 2 && !this.isPressingSpace) {
296
+ e.preventDefault();
297
+ this.onDragStart([e]);
298
+ this.listeners.onMouseMove = this.onMouseMove.bind(this);
299
+ document.removeEventListener("mousemove", this.listeners.onMouseMove);
300
+ document.addEventListener("mousemove", this.listeners.onMouseMove);
301
+ }
302
+ }
303
+ onMouseUp() {
304
+ document.removeEventListener("mousemove", this.listeners.onMouseMove);
305
+ this.onDragEnd();
306
+ }
307
+ onMouseMove(e) {
308
+ if (!this.isPressingSpace) {
309
+ this.onDragEnd();
310
+ document.removeEventListener("mousemove", this.listeners.onMouseMove);
311
+ return;
312
+ }
313
+ this.onDragMove([e]);
314
+ }
315
+ getDistance(a, b) {
316
+ const dx = a.x - b.x;
317
+ const dy = a.y - b.y;
318
+ return Math.sqrt(dx * dx + dy * dy);
319
+ }
320
+ getTouchDistance(touches) {
321
+ return this.getDistance(
322
+ {
323
+ x: touches[0].clientX,
324
+ y: touches[0].clientY
325
+ },
326
+ {
327
+ x: touches[1].clientX,
328
+ y: touches[1].clientY
329
+ }
330
+ );
331
+ }
332
+ getMidpoint(touches) {
333
+ const x = touches[0].clientX;
334
+ const y = touches[0].clientY;
335
+ if (touches.length === 1) {
336
+ return {
337
+ x,
338
+ y
339
+ };
340
+ }
341
+ return {
342
+ x: (x + touches[1].clientX) / 2,
343
+ y: (y + touches[1].clientY) / 2
344
+ };
345
+ }
346
+ onDragStart(touches) {
347
+ this.animationTarget = null;
348
+ this.lastTouch = {
349
+ x: touches[0].clientX,
350
+ y: touches[0].clientY
351
+ };
352
+ this.initialTouchPoint = { ...this.lastTouch };
353
+ this.touchDirection = "none";
354
+ this.initialOffset = { ...this.offset };
355
+ this.velocity = { x: 0, y: 0 };
356
+ this.velocityQueue.reset();
357
+ this.scaleVelocityQueue.reset();
358
+ this.scaleVelocity = 0;
359
+ }
360
+ onDragMove(touches) {
361
+ if (!this.lastTouch || !this.initialTouchPoint) {
362
+ this.onDragStart(touches);
363
+ return;
364
+ }
365
+ const midpoint = this.getMidpoint(touches);
366
+ const focalPoint = {
367
+ x: (midpoint.x - this.offset.x) / this.scale,
368
+ y: (midpoint.y - this.offset.y) / this.scale
369
+ };
370
+ this.velocityQueue.add(midpoint);
371
+ if (touches.length === 2) {
372
+ this.isDragging = false;
373
+ if (!this.scaleStartCoords) {
374
+ this.scaleStartCoords = { ...this.lastTouch };
375
+ }
376
+ if (!this.isScaling) {
377
+ this.isScaling = true;
378
+ this.lastTouch = { x: midpoint.x, y: midpoint.y };
379
+ }
380
+ this.velocityQueue.reset();
381
+ const newTouchDistance = this.getTouchDistance(touches);
382
+ const scaleFactor = newTouchDistance / this.initialTouchDistance;
383
+ const newScale = this.initialScale * scaleFactor;
384
+ this.scaleVelocityQueue.add(newScale);
385
+ this.setScale(newScale);
386
+ const diffX2 = midpoint.x - this.lastTouch.x;
387
+ const diffY2 = midpoint.y - this.lastTouch.y;
388
+ const newOffsetX = midpoint.x - focalPoint.x * this.scale;
389
+ const newOffsetY = midpoint.y - focalPoint.y * this.scale;
390
+ this.scaleMidpoint = {
391
+ x: midpoint.x,
392
+ y: midpoint.y
393
+ };
394
+ this.setOffset(newOffsetX + diffX2, newOffsetY + diffY2);
395
+ this.lastTouch = { x: midpoint.x, y: midpoint.y };
396
+ this.lastScaleTimestamp = Date.now();
397
+ return;
398
+ }
399
+ if (this.isScaling) {
400
+ if (Date.now() - this.lastScaleTimestamp < 200) {
401
+ return;
402
+ }
403
+ this.isScaling = false;
404
+ this.touchDirection = "none";
405
+ this.isMomentumScrolling = false;
406
+ this.initialTouchPoint = { ...midpoint };
407
+ this.initialOffset = { ...this.offset };
408
+ this.lastTouch = { ...midpoint };
409
+ return;
410
+ }
411
+ this.scaleStartCoords = null;
412
+ this.isScaling = false;
413
+ this.isDragging = true;
414
+ const diffX = midpoint.x - this.initialTouchPoint.x;
415
+ const diffY = midpoint.y - this.initialTouchPoint.y;
416
+ if (this.touchDirection === "none") {
417
+ const deltaX = Math.abs(midpoint.x - this.initialTouchPoint.x);
418
+ const deltaY = Math.abs(midpoint.y - this.initialTouchPoint.y);
419
+ const thresholdRatio = 0.9;
420
+ const ratio = deltaY > 0 ? deltaX / deltaY : deltaX;
421
+ if (ratio > 1 + thresholdRatio) {
422
+ this.touchDirection = "horizontal";
423
+ } else if (ratio < 1 - thresholdRatio) {
424
+ this.touchDirection = "vertical";
425
+ } else {
426
+ this.touchDirection = "both";
427
+ }
428
+ }
429
+ let moveX = 0;
430
+ let moveY = 0;
431
+ switch (this.touchDirection) {
432
+ case "horizontal":
433
+ moveX = diffX;
434
+ break;
435
+ case "vertical":
436
+ moveY = diffY;
437
+ break;
438
+ case "both":
439
+ moveX = diffX;
440
+ moveY = diffY;
441
+ break;
442
+ }
443
+ this.setOffset(this.initialOffset.x + moveX, this.initialOffset.y + moveY);
444
+ this.lastTouch = { x: midpoint.x, y: midpoint.y };
445
+ }
446
+ resetDraggingState() {
447
+ this.isDragging = false;
448
+ this.isScaling = false;
449
+ }
450
+ onDragEnd() {
451
+ this.resetDraggingState();
452
+ if (!this.initialTouchPoint || !this.lastTouch) {
453
+ return;
454
+ }
455
+ const velocity = this.velocityQueue.getVelocity();
456
+ const totalVelocity = Math.abs(velocity.x) + Math.abs(velocity.y);
457
+ if (totalVelocity < 40) {
458
+ this.velocity = { x: 0, y: 0 };
459
+ this.isMomentumScrolling = false;
460
+ } else {
461
+ if (this.touchDirection === "horizontal" || this.touchDirection === "both") {
462
+ this.velocity.x = velocity.x;
463
+ }
464
+ if (this.touchDirection === "vertical" || this.touchDirection === "both") {
465
+ this.velocity.y = velocity.y;
466
+ }
467
+ this.isMomentumScrolling = true;
468
+ }
469
+ const scaleVelocity = this.scaleVelocityQueue.getVelocity() / 7;
470
+ if (scaleVelocity > 0.01) {
471
+ this.scaleVelocity = scaleVelocity;
472
+ this.isMomentumScrolling = false;
473
+ }
474
+ this.initialTouchPoint = null;
475
+ }
476
+ onTouchStart(e) {
477
+ this.isTouching = true;
478
+ if (e.touches.length === 1) {
479
+ this.onDragStart(e.touches);
480
+ }
481
+ if (e.touches.length === 2) {
482
+ this.initialTouchDistance = this.getTouchDistance(e.touches);
483
+ this.initialScale = this.scale;
484
+ }
485
+ }
486
+ onTouchMove(e) {
487
+ e.preventDefault();
488
+ e.stopPropagation();
489
+ this.onDragMove(e.touches);
490
+ }
491
+ onTouchEnd(e) {
492
+ if (this.isDragging || this.isMomentumScrolling) {
493
+ e.preventDefault();
494
+ e.stopImmediatePropagation();
495
+ }
496
+ if (e.touches.length === 0) {
497
+ this.isTouching = false;
498
+ this.onDragEnd();
499
+ }
500
+ }
501
+ destroy() {
502
+ this.artboardEl.style.transform = "";
503
+ this.resizeObserver.disconnect();
504
+ this.rootEl.removeEventListener("touchstart", this.listeners.onTouchStart);
505
+ this.rootEl.removeEventListener("touchmove", this.listeners.onTouchMove);
506
+ this.rootEl.removeEventListener("touchend", this.listeners.onTouchEnd, {
507
+ capture: true
508
+ });
509
+ this.rootEl.removeEventListener("mousedown", this.listeners.onMouseDown);
510
+ this.rootEl.removeEventListener("mouseup", this.listeners.onMouseUp);
511
+ document.documentElement.removeEventListener(
512
+ "wheel",
513
+ this.listeners.onWheel
514
+ );
515
+ document.removeEventListener("keydown", this.listeners.onKeyDown);
516
+ document.removeEventListener("keyup", this.listeners.onKeyUp);
517
+ document.removeEventListener("mousemove", this.listeners.onMouseMove);
518
+ }
519
+ loop() {
520
+ if (this.isMomentumScrolling && !this.isDragging) {
521
+ const deceleration = 0.95;
522
+ let stopMomentumX = false;
523
+ let stopMomentumY = false;
524
+ const boundaries = this.getBoundaries();
525
+ const isOutsideY = boundaries.yMax - this.offset.y < -1 || boundaries.yMin - this.offset.y > 1;
526
+ const isOutsideX = boundaries.xMax - this.offset.x < -1 || boundaries.xMin - this.offset.x > 1;
527
+ if (this.touchDirection === "horizontal" || this.touchDirection === "both") {
528
+ this.velocity.x *= deceleration;
529
+ if (Math.abs(this.velocity.x) < 0.01) {
530
+ stopMomentumX = true;
531
+ }
532
+ }
533
+ if (this.touchDirection === "vertical" || this.touchDirection === "both") {
534
+ this.velocity.y *= deceleration;
535
+ if (Math.abs(this.velocity.y) < 0.01) {
536
+ stopMomentumY = true;
537
+ }
538
+ }
539
+ this.setOffset(
540
+ this.offset.x + this.velocity.x,
541
+ this.offset.y + this.velocity.y
542
+ );
543
+ if (!isOutsideY && !isOutsideX && (stopMomentumX || this.touchDirection !== "horizontal" && this.touchDirection !== "both") && (stopMomentumY || this.touchDirection !== "vertical" && this.touchDirection !== "both")) {
544
+ this.isMomentumScrolling = false;
545
+ this.velocity = { x: 0, y: 0 };
546
+ this.touchDirection = "none";
547
+ }
548
+ } else if (this.animationTarget) {
549
+ const easedAlpha = easeOutQuad(this.animationTarget.alpha);
550
+ const x = lerp(this.offset.x, this.animationTarget.x, easedAlpha);
551
+ const y = lerp(this.offset.y, this.animationTarget.y, easedAlpha);
552
+ this.setOffset(x, y);
553
+ const newScale = lerp(this.scale, this.animationTarget.scale, easedAlpha);
554
+ this.scale = newScale;
555
+ if (this.animationTarget.alpha < 1) {
556
+ this.animationTarget.alpha += this.animationTarget.speed;
557
+ }
558
+ if (Math.abs(this.offset.x - this.animationTarget.x) < 1 && Math.abs(this.offset.y - this.animationTarget.y) < 1 && Math.abs(this.scale - this.animationTarget.scale) < 0.02) {
559
+ this.offset.x = this.animationTarget.x;
560
+ this.offset.y = this.animationTarget.y;
561
+ this.scale = this.animationTarget.scale;
562
+ this.animationTarget = null;
563
+ }
564
+ } else if (this.scaleVelocity && this.scaleMidpoint) {
565
+ }
566
+ if (!this.isScaling && this.scaleMidpoint) {
567
+ const x = this.scaleMidpoint.x;
568
+ const y = this.scaleMidpoint.y;
569
+ const targetX = (x - this.offset.x) / this.scale;
570
+ const targetY = (y - this.offset.y) / this.scale;
571
+ if (Math.abs(this.scale - this.maxScale) > 0.01 && Math.abs(this.scale - this.minScale) > 0.01) {
572
+ const newScale = applyRubberBandEffect(
573
+ this.scale,
574
+ this.minScale,
575
+ this.maxScale,
576
+ 0.7
577
+ );
578
+ this.scale = newScale;
579
+ this.setOffset(-targetX * this.scale + x, -targetY * this.scale + y);
580
+ } else {
581
+ this.isScaling = false;
582
+ if (this.scale > this.maxScale) {
583
+ this.scale = this.maxScale;
584
+ } else if (this.scale < this.minScale) {
585
+ this.scale = this.minScale;
586
+ }
587
+ this.setOffset(-targetX * this.scale + x, -targetY * this.scale + y);
588
+ }
589
+ }
590
+ this.updateStyles();
591
+ }
592
+ getCenterX(targetScale) {
593
+ const scaleToUse = targetScale || this.scale;
594
+ const blockingRects = this.getBlockingRects ? this.getBlockingRects() : [];
595
+ return calculateCenterPosition(
596
+ blockingRects,
597
+ { ...this.rootSize, x: 0, y: 0 },
598
+ this.artboardEl.offsetWidth * scaleToUse
599
+ );
600
+ }
601
+ animateTo(x, y, targetScale) {
602
+ this.isMomentumScrolling = false;
603
+ this.lastTouch = null;
604
+ this.initialTouchPoint = null;
605
+ this.isScaling = false;
606
+ this.animationTarget = {
607
+ x,
608
+ y,
609
+ scale: targetScale || this.scale,
610
+ alpha: 0,
611
+ speed: 0.01
612
+ };
613
+ }
614
+ getEndY() {
615
+ const v = this.artboardSize.height * this.scale;
616
+ return -v + this.rootSize.height - this.padding;
617
+ }
618
+ animateOrJumpBy(y) {
619
+ const diff = Date.now() - this.lastAnimateToTimestamp;
620
+ if (diff < 300) {
621
+ this.setOffset(
622
+ this.offset.x,
623
+ (this.animationTarget?.y || this.offset.y) + y
624
+ );
625
+ this.animationTarget = null;
626
+ } else {
627
+ this.animateTo(this.offset.x, this.offset.y + y);
628
+ }
629
+ this.lastAnimateToTimestamp = Date.now();
630
+ }
631
+ animateOrJumpTo(y) {
632
+ const diff = Date.now() - this.lastAnimateToTimestamp;
633
+ if (diff < 300) {
634
+ this.setOffset(
635
+ this.offset.x,
636
+ (this.animationTarget?.y || this.offset.y) + y
637
+ );
638
+ this.animationTarget = null;
639
+ } else {
640
+ this.animateTo(this.offset.x, y);
641
+ }
642
+ this.lastAnimateToTimestamp = Date.now();
643
+ }
644
+ scrollPageUp() {
645
+ this.animateOrJumpBy(this.rootSize.height);
646
+ }
647
+ scrollPageDown() {
648
+ this.animateOrJumpBy(-this.rootSize.height);
649
+ }
650
+ scrollPageLeft() {
651
+ this.animateOrJumpTo(
652
+ Math.min(this.offset.y + this.rootSize.height, this.padding)
653
+ );
654
+ }
655
+ scrollPageRight() {
656
+ this.animateOrJumpTo(
657
+ Math.max(this.offset.y - this.rootSize.height, this.getEndY())
658
+ );
659
+ }
660
+ scrollToTop() {
661
+ this.animateOrJumpTo(this.padding * 2);
662
+ }
663
+ scrollToEnd() {
664
+ this.animateOrJumpTo(this.getEndY());
665
+ }
666
+ scaleToFit() {
667
+ const targetScale = (this.rootSize.height - this.padding) / this.artboardSize.height;
668
+ this.animateTo(this.getCenterX(targetScale), this.padding / 2, targetScale);
669
+ }
670
+ resetZoom() {
671
+ const viewportCenterY = this.rootSize.height / 2;
672
+ const currentCenterOnArtboard = (-this.offset.y + viewportCenterY) / this.scale;
673
+ if (this.artboardSize.height < this.rootSize.height) {
674
+ const newYOffset2 = this.rootSize.height / 2 - this.artboardSize.height / 2;
675
+ return this.animateTo(this.getCenterX(1), newYOffset2, 1);
676
+ }
677
+ const newYOffset = Math.min(
678
+ Math.max(
679
+ -currentCenterOnArtboard + viewportCenterY,
680
+ -this.artboardSize.height + this.rootSize.height - this.padding
681
+ ),
682
+ this.padding * 2
683
+ );
684
+ this.animateTo(this.getCenterX(1), newYOffset, 1);
685
+ }
686
+ updateStyles() {
687
+ this.artboardEl.style.transform = `translate3d(${Math.round(this.offset.x * 10) / 10}px, ${Math.round(this.offset.y * 10) / 10}px, 0px) scale(${this.scale.toString()}) `;
688
+ }
689
+ getBoundaries(providedScale) {
690
+ const targetScale = providedScale || this.scale;
691
+ const artboardWidth = this.artboardSize.width * targetScale;
692
+ const artboardHeight = this.artboardSize.height * targetScale;
693
+ const xMin = -artboardWidth + 100 + 70;
694
+ const xMax = this.rootSize.width - 50 - 100;
695
+ const yMin = -artboardHeight;
696
+ const yMax = this.rootSize.height - 50;
697
+ return { xMin, xMax, yMin, yMax };
698
+ }
699
+ setScale(newScale) {
700
+ this.scale = applyRubberBandEffect(
701
+ newScale,
702
+ this.minScale,
703
+ this.maxScale,
704
+ 0.2
705
+ );
706
+ }
707
+ setOffset(x, y) {
708
+ const { xMin, xMax, yMin, yMax } = this.getBoundaries();
709
+ const adjustedX = applyRubberBandEffect(x, xMin, xMax);
710
+ const adjustedY = applyRubberBandEffect(y, yMin, yMax);
711
+ if (this.rootSize.width < 500) {
712
+ this.offset.x = this.rootSize.width / 2 - this.artboardSize.width * this.scale / 2;
713
+ } else {
714
+ this.offset.x = adjustedX;
715
+ }
716
+ this.offset.y = adjustedY;
717
+ }
718
+ stopAnimate() {
719
+ this.animationTarget = null;
720
+ this.isMomentumScrolling = false;
721
+ this.velocity = { x: 0, y: 0 };
722
+ }
723
+ scaleAroundPoint(x, y, newScale) {
724
+ const targetX = (x - this.offset.x) / this.scale;
725
+ const targetY = (y - this.offset.y) / this.scale;
726
+ this.setScale(newScale);
727
+ this.setOffset(-targetX * this.scale + x, -targetY * this.scale + y);
728
+ }
729
+ doZoom(x, y, delta) {
730
+ const SCALE_BASE = 1.1;
731
+ const scaleFactor = Math.pow(SCALE_BASE, -Math.sign(delta) / 1.25);
732
+ const newScale = this.scale * scaleFactor;
733
+ this.scaleAroundPoint(x, y, newScale);
734
+ }
735
+ onWheel(e) {
736
+ this.stopAnimate();
737
+ e.preventDefault();
738
+ e.stopPropagation();
739
+ if (e.ctrlKey) {
740
+ this.doZoom(e.pageX, e.pageY, e.deltaY);
741
+ } else {
742
+ this.setOffset(
743
+ this.offset.x + -(e.deltaX * this.scrollSpeed),
744
+ this.offset.y + -(e.deltaY * this.scrollSpeed)
745
+ );
746
+ }
747
+ }
748
+ }