@blokkli/editor 1.4.0-alpha.1 → 2.0.0-alpha.10

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 (445) hide show
  1. package/dist/module.d.mts +12 -194
  2. package/dist/module.json +4 -4
  3. package/dist/module.mjs +1862 -1306
  4. package/dist/modules/drupal/graphql/base/fragment.blokkliProps.graphql +8 -0
  5. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +44 -0
  6. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliMutatedField.graphql +11 -0
  7. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliMutationItem.graphql +9 -0
  8. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliMutationResult.graphql +7 -0
  9. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliViolation.graphql +7 -0
  10. package/dist/modules/drupal/graphql/base/fragment.paragraphsFieldItem.graphql +6 -0
  11. package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +96 -0
  12. package/dist/modules/drupal/graphql/base/query.pbEditState.graphql +15 -0
  13. package/dist/modules/drupal/graphql/features/conversions.graphql +44 -0
  14. package/dist/modules/drupal/graphql/features/import-existing.graphql +34 -0
  15. package/dist/{runtime/adapter/drupal/graphql → modules/drupal/graphql/features}/library.graphql +17 -0
  16. package/dist/modules/drupal/graphql/features/media-library.graphql +28 -0
  17. package/dist/modules/drupal/graphql/features/preview-grant.graphql +13 -0
  18. package/dist/modules/drupal/graphql/features/publish.graphql +15 -0
  19. package/dist/modules/drupal/graphql/features/publishNew.graphql +59 -0
  20. package/dist/modules/drupal/graphql/mutations/add.graphql +25 -0
  21. package/dist/modules/drupal/graphql/mutations/add_clipboard_text.graphql +25 -0
  22. package/dist/modules/drupal/graphql/mutations/add_entity_reference.graphql +31 -0
  23. package/dist/modules/drupal/graphql/mutations/add_entity_reference_multiple.graphql +25 -0
  24. package/dist/modules/drupal/graphql/mutations/add_file.graphql +27 -0
  25. package/dist/modules/drupal/graphql/mutations/add_image.graphql +27 -0
  26. package/dist/modules/drupal/graphql/mutations/add_video_remote.graphql +25 -0
  27. package/dist/modules/drupal/graphql/mutations/bulk_update_behavior_settings.graphql +15 -0
  28. package/dist/modules/drupal/graphql/mutations/duplicate.graphql +33 -0
  29. package/dist/modules/drupal/graphql/mutations/move.graphql +25 -0
  30. package/dist/modules/drupal/graphql/mutations/move_multiple.graphql +25 -0
  31. package/dist/modules/drupal/graphql/mutations/redo.graphql +14 -0
  32. package/dist/modules/drupal/graphql/mutations/remove.graphql +15 -0
  33. package/dist/modules/drupal/graphql/mutations/remove_multiple.graphql +15 -0
  34. package/dist/modules/drupal/graphql/mutations/replace_host_entity_media.graphql +20 -0
  35. package/dist/modules/drupal/graphql/mutations/replace_media.graphql +22 -0
  36. package/dist/modules/drupal/graphql/mutations/revertAllChanges.graphql +14 -0
  37. package/dist/modules/drupal/graphql/mutations/setHistoryIndex.graphql +15 -0
  38. package/dist/modules/drupal/graphql/mutations/setMutationStatus.graphql +16 -0
  39. package/dist/modules/drupal/graphql/mutations/takeOwnership.graphql +14 -0
  40. package/dist/modules/drupal/graphql/mutations/undo.graphql +14 -0
  41. package/dist/modules/drupal/graphql/mutations/update_behavior_setting.graphql +23 -0
  42. package/dist/modules/drupal/graphql/mutations/update_field_value.graphql +22 -0
  43. package/dist/modules/drupal/graphql/mutations/update_host_entity_field_value.graphql +20 -0
  44. package/dist/modules/drupal/index.d.mts +10 -0
  45. package/dist/modules/drupal/index.mjs +177 -0
  46. package/dist/{runtime/adapter/drupal/graphqlMiddleware.d.ts → modules/drupal/runtime/adapter/index.d.ts} +1 -0
  47. package/dist/modules/drupal/runtime/adapter/index.js +765 -0
  48. package/dist/runtime/adapter/index.d.ts +30 -4
  49. package/dist/runtime/blokkliPlugins/AddAction/index.vue +39 -54
  50. package/dist/runtime/blokkliPlugins/AddAction/index.vue.d.ts +26 -0
  51. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +38 -64
  52. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue.d.ts +12 -0
  53. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +19 -30
  54. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +20 -0
  55. package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue +15 -23
  56. package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +16 -0
  57. package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +28 -45
  58. package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue.d.ts +24 -0
  59. package/dist/runtime/blokkliPlugins/ItemAction/index.vue +39 -85
  60. package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +84 -0
  61. package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +22 -26
  62. package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue.d.ts +17 -0
  63. package/dist/runtime/blokkliPlugins/MenuButton/index.vue +30 -38
  64. package/dist/runtime/blokkliPlugins/MenuButton/index.vue.d.ts +32 -0
  65. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +146 -211
  66. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +42 -0
  67. package/dist/runtime/blokkliPlugins/Sidebar/index.vue +95 -139
  68. package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +91 -0
  69. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +38 -57
  70. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +48 -0
  71. package/dist/runtime/blokkliPlugins/TourItem/index.vue +20 -29
  72. package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +18 -0
  73. package/dist/runtime/blokkliPlugins/ViewOption/index.vue +45 -59
  74. package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +40 -0
  75. package/dist/runtime/components/Blocks/Fragment/index.vue +13 -20
  76. package/dist/runtime/components/Blocks/Fragment/index.vue.d.ts +6 -0
  77. package/dist/runtime/components/Blocks/FromLibrary/index.vue +19 -29
  78. package/dist/runtime/components/Blocks/FromLibrary/index.vue.d.ts +6 -0
  79. package/dist/runtime/components/BlokkliEditable.vue +30 -49
  80. package/dist/runtime/components/BlokkliEditable.vue.d.ts +20 -0
  81. package/dist/runtime/components/BlokkliField.vue +102 -159
  82. package/dist/runtime/components/BlokkliField.vue.d.ts +49 -0
  83. package/dist/runtime/components/BlokkliItem.vue +43 -66
  84. package/dist/runtime/components/BlokkliItem.vue.d.ts +26 -0
  85. package/dist/runtime/components/BlokkliProvider.vue +51 -87
  86. package/dist/runtime/components/BlokkliProvider.vue.d.ts +34 -0
  87. package/dist/runtime/components/Edit/Actions/index.vue +119 -164
  88. package/dist/runtime/components/Edit/Actions/index.vue.d.ts +2 -0
  89. package/dist/runtime/components/Edit/AddListItem/index.vue +45 -66
  90. package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +28 -0
  91. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +52 -88
  92. package/dist/runtime/components/Edit/AnimationCanvas/index.vue.d.ts +2 -0
  93. package/dist/runtime/components/Edit/AppMenu/index.vue +12 -15
  94. package/dist/runtime/components/Edit/AppMenu/index.vue.d.ts +2 -0
  95. package/dist/runtime/components/Edit/BlockProxy/index.vue +50 -82
  96. package/dist/runtime/components/Edit/BlockProxy/index.vue.d.ts +10 -0
  97. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +17 -21
  98. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +12 -0
  99. package/dist/runtime/components/Edit/Dialog/index.vue +67 -103
  100. package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +44 -0
  101. package/dist/runtime/components/Edit/DragInteractions/index.vue +220 -334
  102. package/dist/runtime/components/Edit/DragInteractions/index.vue.d.ts +2 -0
  103. package/dist/runtime/components/Edit/DraggableList.vue +82 -125
  104. package/dist/runtime/components/Edit/DraggableList.vue.d.ts +27 -0
  105. package/dist/runtime/components/Edit/EditIndicator.vue +34 -46
  106. package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +11 -0
  107. package/dist/runtime/components/Edit/EditProvider.vue +148 -142
  108. package/dist/runtime/components/Edit/EditProvider.vue.d.ts +26 -0
  109. package/dist/runtime/components/Edit/Features/AddList/index.vue +90 -117
  110. package/dist/runtime/components/Edit/Features/AddList/index.vue.d.ts +2 -0
  111. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +43 -63
  112. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue.d.ts +6 -0
  113. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue +18 -23
  114. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue.d.ts +7 -0
  115. package/dist/runtime/components/Edit/Features/Artboard/index.vue +202 -223
  116. package/dist/runtime/components/Edit/Features/Artboard/index.vue.d.ts +2 -0
  117. package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue +7 -7
  118. package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue.d.ts +6 -0
  119. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +41 -54
  120. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue.d.ts +8 -0
  121. package/dist/runtime/components/Edit/Features/Assistant/index.vue +32 -40
  122. package/dist/runtime/components/Edit/Features/Assistant/index.vue.d.ts +2 -0
  123. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +225 -326
  124. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue.d.ts +2 -0
  125. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue +36 -44
  126. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue.d.ts +3 -0
  127. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +33 -35
  128. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue.d.ts +3 -0
  129. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +13 -21
  130. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue.d.ts +10 -0
  131. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +227 -298
  132. package/dist/runtime/components/Edit/Features/Clipboard/index.vue.d.ts +2 -0
  133. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +24 -34
  134. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue.d.ts +22 -0
  135. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +146 -195
  136. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue.d.ts +6 -0
  137. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +21 -26
  138. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue.d.ts +2 -0
  139. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +11 -14
  140. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +8 -0
  141. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +21 -29
  142. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue.d.ts +23 -0
  143. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +31 -43
  144. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +19 -0
  145. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +70 -100
  146. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue.d.ts +18 -0
  147. package/dist/runtime/components/Edit/Features/Comments/index.vue +37 -48
  148. package/dist/runtime/components/Edit/Features/Comments/index.vue.d.ts +2 -0
  149. package/dist/runtime/components/Edit/Features/Conversions/index.vue +40 -56
  150. package/dist/runtime/components/Edit/Features/Conversions/index.vue.d.ts +2 -0
  151. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +37 -50
  152. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue.d.ts +2 -0
  153. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +35 -44
  154. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue.d.ts +2 -0
  155. package/dist/runtime/components/Edit/Features/Debug/index.vue +43 -57
  156. package/dist/runtime/components/Edit/Features/Debug/index.vue.d.ts +2 -0
  157. package/dist/runtime/components/Edit/Features/Delete/index.vue +31 -52
  158. package/dist/runtime/components/Edit/Features/Delete/index.vue.d.ts +2 -0
  159. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +75 -114
  160. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue.d.ts +2 -0
  161. package/dist/runtime/components/Edit/Features/Diff/index.vue +17 -19
  162. package/dist/runtime/components/Edit/Features/Diff/index.vue.d.ts +2 -0
  163. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +193 -337
  164. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue.d.ts +27 -0
  165. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +1 -1
  166. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +391 -644
  167. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue.d.ts +27 -0
  168. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +197 -323
  169. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue.d.ts +2 -0
  170. package/dist/runtime/components/Edit/Features/Duplicate/index.vue +49 -71
  171. package/dist/runtime/components/Edit/Features/Duplicate/index.vue.d.ts +2 -0
  172. package/dist/runtime/components/Edit/Features/Edit/index.vue +41 -71
  173. package/dist/runtime/components/Edit/Features/Edit/index.vue.d.ts +2 -0
  174. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +35 -51
  175. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue.d.ts +11 -0
  176. package/dist/runtime/components/Edit/Features/EditForm/index.vue +104 -140
  177. package/dist/runtime/components/Edit/Features/EditForm/index.vue.d.ts +2 -0
  178. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue +18 -25
  179. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue.d.ts +12 -0
  180. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +34 -50
  181. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +16 -0
  182. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +40 -51
  183. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue.d.ts +16 -0
  184. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +147 -209
  185. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +15 -0
  186. package/dist/runtime/components/Edit/Features/EditableField/index.vue +90 -143
  187. package/dist/runtime/components/Edit/Features/EditableField/index.vue.d.ts +2 -0
  188. package/dist/runtime/components/Edit/Features/EditableMask/index.vue +28 -36
  189. package/dist/runtime/components/Edit/Features/EditableMask/index.vue.d.ts +2 -0
  190. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +49 -58
  191. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue.d.ts +2 -0
  192. package/dist/runtime/components/Edit/Features/Exit/index.vue +16 -20
  193. package/dist/runtime/components/Edit/Features/Exit/index.vue.d.ts +2 -0
  194. package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue +4 -15
  195. package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue.d.ts +2 -0
  196. package/dist/runtime/components/Edit/Features/FieldAreas/index.vue +19 -21
  197. package/dist/runtime/components/Edit/Features/FieldAreas/index.vue.d.ts +2 -0
  198. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +28 -35
  199. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue.d.ts +8 -0
  200. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +51 -74
  201. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue.d.ts +12 -0
  202. package/dist/runtime/components/Edit/Features/Fragments/index.vue +42 -51
  203. package/dist/runtime/components/Edit/Features/Fragments/index.vue.d.ts +2 -0
  204. package/dist/runtime/components/Edit/Features/Grid/index.vue +17 -20
  205. package/dist/runtime/components/Edit/Features/Grid/index.vue.d.ts +2 -0
  206. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +24 -35
  207. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue.d.ts +2 -0
  208. package/dist/runtime/components/Edit/Features/Help/index.vue +19 -23
  209. package/dist/runtime/components/Edit/Features/Help/index.vue.d.ts +2 -0
  210. package/dist/runtime/components/Edit/Features/History/List/index.vue +49 -70
  211. package/dist/runtime/components/Edit/Features/History/List/index.vue.d.ts +5 -0
  212. package/dist/runtime/components/Edit/Features/History/index.vue +54 -69
  213. package/dist/runtime/components/Edit/Features/History/index.vue.d.ts +2 -0
  214. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +48 -66
  215. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue.d.ts +14 -0
  216. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +38 -54
  217. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue.d.ts +2 -0
  218. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +90 -128
  219. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue.d.ts +13 -0
  220. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +29 -38
  221. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue.d.ts +9 -0
  222. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +68 -93
  223. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue.d.ts +12 -0
  224. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +39 -49
  225. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue.d.ts +12 -0
  226. package/dist/runtime/components/Edit/Features/Library/index.vue +86 -117
  227. package/dist/runtime/components/Edit/Features/Library/index.vue.d.ts +2 -0
  228. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +13 -19
  229. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue.d.ts +19 -0
  230. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +76 -112
  231. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +6 -0
  232. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +107 -140
  233. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue.d.ts +2 -0
  234. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +128 -188
  235. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue.d.ts +12 -0
  236. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +42 -57
  237. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue.d.ts +2 -0
  238. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +27 -34
  239. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue.d.ts +14 -0
  240. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +55 -75
  241. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue.d.ts +24 -0
  242. package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue +18 -21
  243. package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue.d.ts +12 -0
  244. package/dist/runtime/components/Edit/Features/Options/Form/DateTimeLocal/index.vue +36 -0
  245. package/dist/runtime/components/Edit/Features/Options/Form/DateTimeLocal/index.vue.d.ts +20 -0
  246. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +7 -9
  247. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue.d.ts +20 -0
  248. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +87 -93
  249. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +14 -0
  250. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +31 -45
  251. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue.d.ts +21 -0
  252. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +55 -79
  253. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue.d.ts +30 -0
  254. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue +23 -33
  255. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue.d.ts +18 -0
  256. package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue +17 -26
  257. package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue.d.ts +17 -0
  258. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +178 -272
  259. package/dist/runtime/components/Edit/Features/Options/Form/index.vue.d.ts +9 -0
  260. package/dist/runtime/components/Edit/Features/Options/index.vue +38 -69
  261. package/dist/runtime/components/Edit/Features/Options/index.vue.d.ts +2 -0
  262. package/dist/runtime/components/Edit/Features/Ownership/index.vue +27 -34
  263. package/dist/runtime/components/Edit/Features/Ownership/index.vue.d.ts +2 -0
  264. package/dist/runtime/components/Edit/Features/Preview/index.vue +22 -27
  265. package/dist/runtime/components/Edit/Features/Preview/index.vue.d.ts +2 -0
  266. package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue +12 -16
  267. package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue.d.ts +5 -0
  268. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +31 -36
  269. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue.d.ts +2 -0
  270. package/dist/runtime/components/Edit/Features/ProxyView/index.vue +18 -20
  271. package/dist/runtime/components/Edit/Features/ProxyView/index.vue.d.ts +2 -0
  272. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +118 -0
  273. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +18 -0
  274. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +251 -0
  275. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +19 -0
  276. package/dist/runtime/components/Edit/Features/Publish/Dialog/types.d.ts +7 -0
  277. package/dist/runtime/components/Edit/Features/Publish/index.vue +85 -71
  278. package/dist/runtime/components/Edit/Features/Publish/index.vue.d.ts +2 -0
  279. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +48 -54
  280. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue.d.ts +16 -0
  281. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +77 -103
  282. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue.d.ts +2 -0
  283. package/dist/runtime/components/Edit/Features/Revert/index.vue +27 -32
  284. package/dist/runtime/components/Edit/Features/Revert/index.vue.d.ts +2 -0
  285. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +67 -88
  286. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue.d.ts +17 -0
  287. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +89 -139
  288. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue.d.ts +18 -0
  289. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +79 -108
  290. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue.d.ts +12 -0
  291. package/dist/runtime/components/Edit/Features/Search/index.vue +30 -37
  292. package/dist/runtime/components/Edit/Features/Search/index.vue.d.ts +2 -0
  293. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +67 -103
  294. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +9 -0
  295. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +28 -36
  296. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue.d.ts +5 -0
  297. package/dist/runtime/components/Edit/Features/Selection/index.vue +131 -217
  298. package/dist/runtime/components/Edit/Features/Selection/index.vue.d.ts +2 -0
  299. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +50 -81
  300. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue.d.ts +9 -0
  301. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +73 -117
  302. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue.d.ts +6 -0
  303. package/dist/runtime/components/Edit/Features/Settings/index.vue +41 -53
  304. package/dist/runtime/components/Edit/Features/Settings/index.vue.d.ts +2 -0
  305. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +65 -101
  306. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue.d.ts +15 -0
  307. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +71 -99
  308. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue.d.ts +12 -0
  309. package/dist/runtime/components/Edit/Features/Structure/List/index.vue +17 -26
  310. package/dist/runtime/components/Edit/Features/Structure/List/index.vue.d.ts +12 -0
  311. package/dist/runtime/components/Edit/Features/Structure/index.vue +31 -40
  312. package/dist/runtime/components/Edit/Features/Structure/index.vue.d.ts +2 -0
  313. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +32 -53
  314. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue.d.ts +7 -0
  315. package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue +7 -10
  316. package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue.d.ts +2 -0
  317. package/dist/runtime/components/Edit/Features/Theme/index.vue +49 -63
  318. package/dist/runtime/components/Edit/Features/Theme/index.vue.d.ts +2 -0
  319. package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue +9 -10
  320. package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue.d.ts +12 -0
  321. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +16 -19
  322. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue.d.ts +2 -0
  323. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +119 -174
  324. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue.d.ts +6 -0
  325. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +10 -12
  326. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue.d.ts +8 -0
  327. package/dist/runtime/components/Edit/Features/Tour/index.vue +21 -25
  328. package/dist/runtime/components/Edit/Features/Tour/index.vue.d.ts +2 -0
  329. package/dist/runtime/components/Edit/Features/Transform/index.vue +80 -120
  330. package/dist/runtime/components/Edit/Features/Transform/index.vue.d.ts +2 -0
  331. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +21 -29
  332. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue.d.ts +6 -0
  333. package/dist/runtime/components/Edit/Features/Translations/index.vue +96 -139
  334. package/dist/runtime/components/Edit/Features/Translations/index.vue.d.ts +2 -0
  335. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +21 -35
  336. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue.d.ts +6 -0
  337. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +30 -39
  338. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue.d.ts +6 -0
  339. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +20 -28
  340. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue.d.ts +9 -0
  341. package/dist/runtime/components/Edit/Features/Validations/index.vue +27 -33
  342. package/dist/runtime/components/Edit/Features/Validations/index.vue.d.ts +2 -0
  343. package/dist/runtime/components/Edit/Features/index.vue +33 -52
  344. package/dist/runtime/components/Edit/Features/index.vue.d.ts +6 -0
  345. package/dist/runtime/components/Edit/Form/Group/index.vue +23 -0
  346. package/dist/runtime/components/Edit/Form/Group/index.vue.d.ts +18 -0
  347. package/dist/runtime/components/Edit/Form/Item/index.vue +5 -0
  348. package/dist/runtime/components/Edit/Form/Item/index.vue.d.ts +12 -0
  349. package/dist/runtime/components/Edit/Form/Textarea/index.vue +27 -0
  350. package/dist/runtime/components/Edit/Form/Textarea/index.vue.d.ts +16 -0
  351. package/dist/runtime/components/Edit/Form/Toggle/index.vue +21 -0
  352. package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +14 -0
  353. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +11 -22
  354. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue.d.ts +18 -0
  355. package/dist/runtime/components/Edit/FormOverlay/index.vue +15 -21
  356. package/dist/runtime/components/Edit/FormOverlay/index.vue.d.ts +26 -0
  357. package/dist/runtime/components/Edit/Highlight/index.vue +31 -70
  358. package/dist/runtime/components/Edit/Highlight/index.vue.d.ts +20 -0
  359. package/dist/runtime/components/Edit/Icon/index.vue +11 -14
  360. package/dist/runtime/components/Edit/Icon/index.vue.d.ts +7 -0
  361. package/dist/runtime/components/Edit/InfoBox/index.vue +5 -6
  362. package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +5 -0
  363. package/dist/runtime/components/Edit/ItemIcon/index.vue +13 -13
  364. package/dist/runtime/components/Edit/ItemIcon/index.vue.d.ts +6 -0
  365. package/dist/runtime/components/Edit/Loading/index.vue +8 -9
  366. package/dist/runtime/components/Edit/Loading/index.vue.d.ts +6 -0
  367. package/dist/runtime/components/Edit/Messages/Item/index.vue +30 -41
  368. package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +11 -0
  369. package/dist/runtime/components/Edit/Messages/index.vue +13 -17
  370. package/dist/runtime/components/Edit/Messages/index.vue.d.ts +2 -0
  371. package/dist/runtime/components/Edit/Pagination/index.vue +6 -8
  372. package/dist/runtime/components/Edit/Pagination/index.vue.d.ts +12 -0
  373. package/dist/runtime/components/Edit/PreviewProvider.vue +124 -177
  374. package/dist/runtime/components/Edit/PreviewProvider.vue.d.ts +24 -0
  375. package/dist/runtime/components/Edit/RelativeTime/index.vue +19 -25
  376. package/dist/runtime/components/Edit/RelativeTime/index.vue.d.ts +15 -0
  377. package/dist/runtime/components/Edit/Resizable/index.vue +45 -55
  378. package/dist/runtime/components/Edit/Resizable/index.vue.d.ts +13 -0
  379. package/dist/runtime/components/Edit/ScaleToFit/index.vue +44 -62
  380. package/dist/runtime/components/Edit/ScaleToFit/index.vue.d.ts +15 -0
  381. package/dist/runtime/components/Edit/ScrollBoundary/index.vue +11 -27
  382. package/dist/runtime/components/Edit/ScrollBoundary/index.vue.d.ts +18 -0
  383. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +47 -59
  384. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue.d.ts +20 -0
  385. package/dist/runtime/components/Edit/Sortli/index.vue +45 -59
  386. package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +14 -0
  387. package/dist/runtime/components/Edit/SystemRequirements/index.vue +29 -43
  388. package/dist/runtime/components/Edit/SystemRequirements/index.vue.d.ts +2 -0
  389. package/dist/runtime/components/Edit/Toolbar/index.vue +26 -41
  390. package/dist/runtime/components/Edit/Toolbar/index.vue.d.ts +6 -0
  391. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +29 -51
  392. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +15 -0
  393. package/dist/runtime/components/Edit/index.d.ts +5 -1
  394. package/dist/runtime/components/Edit/index.js +9 -1
  395. package/dist/runtime/composables/defineBlokkli.d.ts +2 -2
  396. package/dist/runtime/composables/defineBlokkli.js +36 -11
  397. package/dist/runtime/composables/defineBlokkliFragment.d.ts +1 -1
  398. package/dist/runtime/composables/defineBlokkliFragment.js +24 -25
  399. package/dist/runtime/composables/useBlokkliHelper.d.ts +19 -0
  400. package/dist/runtime/composables/useBlokkliHelper.js +82 -0
  401. package/dist/runtime/css/output.css +1 -1
  402. package/dist/runtime/helpers/animationProvider.js +1 -1
  403. package/dist/runtime/helpers/composables/useBlockRegistration.d.ts +5 -0
  404. package/dist/runtime/helpers/composables/useBlockRegistration.js +23 -0
  405. package/dist/runtime/helpers/definitionProvider.d.ts +18 -0
  406. package/dist/runtime/helpers/definitionProvider.js +96 -0
  407. package/dist/runtime/helpers/domProvider.d.ts +4 -1
  408. package/dist/runtime/helpers/domProvider.js +56 -68
  409. package/dist/runtime/helpers/editComponents/index.d.ts +2 -0
  410. package/dist/runtime/helpers/editComponents/index.js +10 -0
  411. package/dist/runtime/helpers/featuresProvider.d.ts +2 -1
  412. package/dist/runtime/helpers/featuresProvider.js +19 -10
  413. package/dist/runtime/helpers/frameEventBus.d.ts +1 -1
  414. package/dist/runtime/helpers/imports/index.d.ts +1 -0
  415. package/dist/runtime/helpers/imports/index.js +44 -0
  416. package/dist/runtime/helpers/index.js +5 -8
  417. package/dist/runtime/helpers/runtimeHelpers/index.d.ts +5 -0
  418. package/dist/runtime/helpers/runtimeHelpers/index.js +18 -5
  419. package/dist/runtime/helpers/stateProvider.d.ts +1 -1
  420. package/dist/runtime/helpers/textProvider.d.ts +1 -1
  421. package/dist/runtime/helpers/themeProvider.js +4 -1
  422. package/dist/runtime/helpers/transform.d.ts +1 -1
  423. package/dist/runtime/helpers/typesProvider.d.ts +2 -2
  424. package/dist/runtime/helpers/uiProvider.js +4 -5
  425. package/dist/runtime/helpers/webgl/index.js +1 -1
  426. package/dist/runtime/icons/arrow-right-thin.svg +3 -0
  427. package/dist/runtime/public/_blokkli-assets/check.svg +6 -0
  428. package/dist/runtime/public/_blokkli-assets/loader.svg +1 -0
  429. package/dist/runtime/types/blokkOptions.d.ts +11 -2
  430. package/dist/runtime/types/index.d.ts +72 -15
  431. package/dist/shared/editor.gz_ac6uT.d.mts +431 -0
  432. package/dist/types.d.mts +1 -1
  433. package/package.json +30 -25
  434. package/dist/module.cjs +0 -5
  435. package/dist/module.d.ts +0 -198
  436. package/dist/runtime/adapter/drupal/graphql/base.graphql +0 -944
  437. package/dist/runtime/adapter/drupal/graphqlMiddleware.js +0 -680
  438. package/dist/runtime/types/generatedModuleTypes.d.ts +0 -49
  439. package/dist/types.d.ts +0 -1
  440. /package/dist/{runtime/adapter/drupal/graphql → modules/drupal/graphql/features}/comments.graphql +0 -0
  441. /package/dist/{runtime/adapter/drupal/graphql → modules/drupal/graphql/features}/fragments.graphql +0 -0
  442. /package/dist/{runtime/adapter/drupal/graphql → modules/drupal/graphql/features}/search.graphql +0 -0
  443. /package/dist/{runtime/adapter/drupal/graphql → modules/drupal/graphql/features}/transform.graphql +0 -0
  444. /package/dist/runtime/{types/generatedModuleTypes.js → components/Edit/Features/Publish/Dialog/types.js} +0 -0
  445. /package/dist/runtime/public/{Inter.var.woff2 → _blokkli-assets/Inter.var.woff2} +0 -0
@@ -0,0 +1,765 @@
1
+ import { defineBlokkliEditAdapter } from "#blokkli/adapter";
2
+ import { falsy } from "#blokkli/helpers";
3
+ import { availableFeaturesAtBuild } from "#blokkli-build/features";
4
+ import { operationSources } from "#nuxt-graphql-middleware/sources";
5
+ import {
6
+ useGraphqlQuery,
7
+ useGraphqlMutation,
8
+ computed,
9
+ useRoute,
10
+ useRouter
11
+ } from "#imports";
12
+ import { ParagraphsBlokkliRemoteVideoProvider } from "#graphql-operations";
13
+ export default defineBlokkliEditAdapter(
14
+ async (providedContext) => {
15
+ const availableFeatureIds = new Set(availableFeaturesAtBuild);
16
+ const availableGraphqlOperations = new Set(Object.keys(operationSources));
17
+ function hasQuery(name) {
18
+ return availableGraphqlOperations.has("query_" + name);
19
+ }
20
+ function hasMutation(name) {
21
+ return availableGraphqlOperations.has("mutation_" + name);
22
+ }
23
+ const ctx = computed(() => {
24
+ return {
25
+ entityType: providedContext.value.entityType.toUpperCase(),
26
+ entityBundle: providedContext.value.entityBundle,
27
+ entityUuid: providedContext.value.entityUuid,
28
+ langcode: providedContext.value.language
29
+ };
30
+ });
31
+ const config = await useGraphqlQuery("pbConfig", {
32
+ entityType: providedContext.value.entityType,
33
+ entityBundle: providedContext.value.entityBundle
34
+ }).then((v) => {
35
+ return {
36
+ clipboard: v.data.clipboards || [],
37
+ availableFeatures: v.data.features,
38
+ allTypes: (v.data.allTypes.items || []).filter(
39
+ (v2) => v2 && "icon" in v2
40
+ ),
41
+ fieldConfig: v.data.fieldConfig || [],
42
+ editableFieldConfig: v.data.editableFieldConfig || [],
43
+ droppableFieldConfig: v.data.droppableFieldConfig || [],
44
+ urlPrefixes: v.data.urlPrefixes.reduce(
45
+ (acc, item) => {
46
+ if (item?.langcode) {
47
+ acc[item.langcode] = item.prefix;
48
+ }
49
+ return acc;
50
+ },
51
+ {}
52
+ )
53
+ };
54
+ });
55
+ const loadState = async () => {
56
+ const state = await useGraphqlQuery("pbEditState", {
57
+ ...ctx.value
58
+ }).then((v) => v?.data.state);
59
+ if (!state) {
60
+ throw new Error("Failed to load state.");
61
+ }
62
+ return state;
63
+ };
64
+ const getAllBundles = () => {
65
+ return Promise.resolve(config.allTypes);
66
+ };
67
+ const getFieldConfig = () => {
68
+ return Promise.resolve(config.fieldConfig);
69
+ };
70
+ const mapState = (state) => {
71
+ const currentIndex = state?.currentIndex === null || state?.currentIndex === void 0 ? -1 : state.currentIndex;
72
+ const mutations = (state?.mutations || []).filter(falsy);
73
+ const currentUserIsOwner = !!state?.currentUserIsOwner;
74
+ const ownerName = state?.ownerName || "";
75
+ const fields = state?.mutatedState?.fields || [];
76
+ const violations = state.mutatedState?.violations || [];
77
+ const entity = state.entity;
78
+ const mutatedOptions = state.mutatedState?.mutatedOptions || {};
79
+ Object.keys(mutatedOptions).forEach((uuid) => {
80
+ mutatedOptions[uuid] = mutatedOptions[uuid]?.paragraphs_blokkli_data || {};
81
+ });
82
+ const translationState = {
83
+ isTranslatable: !!state.translationState?.isTranslatable,
84
+ sourceLanguage: state.translationState?.sourceLanguage || "",
85
+ availableLanguages: (state.translationState?.availableLanguages || []).map((language) => {
86
+ return {
87
+ id: language.id,
88
+ name: language.name
89
+ };
90
+ }),
91
+ translations: (state.translationState?.translations || []).map((v) => {
92
+ if (v.id && v.url && v.editUrl) {
93
+ return {
94
+ id: v.id,
95
+ url: v.url,
96
+ editUrl: v.editUrl,
97
+ exists: !!v.exists,
98
+ status: !!v.status
99
+ };
100
+ }
101
+ return null;
102
+ }).filter(falsy)
103
+ };
104
+ return {
105
+ currentIndex,
106
+ mutations,
107
+ currentUserIsOwner,
108
+ ownerName,
109
+ mutatedState: {
110
+ fields,
111
+ violations,
112
+ mutatedOptions
113
+ },
114
+ entity,
115
+ mutatedEntity: state.mutatedEntity,
116
+ translationState
117
+ };
118
+ };
119
+ const addNewBlock = (e) => useGraphqlMutation("pbAddParagraph", {
120
+ ...ctx.value,
121
+ hostType: e.host.type,
122
+ hostFieldName: e.host.fieldName,
123
+ hostUuid: e.host.uuid,
124
+ afterUuid: e.afterUuid,
125
+ type: e.bundle
126
+ }).then(mapMutation);
127
+ const moveBlock = (e) => useGraphqlMutation("pbMoveParagraph", {
128
+ ...ctx.value,
129
+ uuid: e.item.uuid,
130
+ hostType: e.host.type,
131
+ hostUuid: e.host.uuid,
132
+ hostFieldName: e.host.fieldName,
133
+ afterUuid: e.afterUuid
134
+ }).then(mapMutation);
135
+ const moveMultipleBlocks = (e) => useGraphqlMutation("pbMoveMultipleItems", {
136
+ ...ctx.value,
137
+ uuids: e.uuids,
138
+ hostType: e.host.type,
139
+ hostUuid: e.host.uuid,
140
+ hostFieldName: e.host.fieldName,
141
+ afterUuid: e.afterUuid
142
+ }).then(mapMutation);
143
+ const loadStateAtIndex = (historyIndex) => useGraphqlQuery("pbEditState", {
144
+ ...ctx.value,
145
+ historyIndex
146
+ }).then((v) => v?.data.state);
147
+ const getDisabledFeatures = () => {
148
+ const features = config.availableFeatures;
149
+ const disabled = [];
150
+ const mutations = features?.mutations || [];
151
+ if (!features?.comment) {
152
+ disabled.push("comments");
153
+ }
154
+ if (!features?.conversion) {
155
+ disabled.push("conversions");
156
+ }
157
+ if (!features?.library) {
158
+ disabled.push("library");
159
+ }
160
+ if (!mutations.includes("duplicate")) {
161
+ disabled.push("duplicate");
162
+ }
163
+ return Promise.resolve(disabled);
164
+ };
165
+ const mapMutation = (v) => v.data?.state?.action;
166
+ const route = useRoute();
167
+ const router = useRouter();
168
+ const changeLanguage = (translation) => {
169
+ return router.push({ path: translation.url, query: route.query });
170
+ };
171
+ const buildEditableFrameUrl = (e) => {
172
+ const url = "/" + [
173
+ "paragraphs_blokkli",
174
+ ctx.value.entityType,
175
+ ctx.value.entityUuid,
176
+ "edit",
177
+ "rich_text",
178
+ e.fieldName,
179
+ e.uuid
180
+ ].filter(falsy).join("/");
181
+ return buildFormUrl(url, ctx.value.langcode).url;
182
+ };
183
+ const getEditableFieldConfig = () => {
184
+ return Promise.resolve(config.editableFieldConfig);
185
+ };
186
+ const getDroppableFieldConfig = () => {
187
+ return Promise.resolve(config.droppableFieldConfig);
188
+ };
189
+ const formFrameBuilder = (e) => {
190
+ const entityType = ctx.value.entityType.toLowerCase();
191
+ if (e.id === "block:add") {
192
+ return buildFormUrl(
193
+ [
194
+ "paragraphs_blokkli",
195
+ entityType,
196
+ ctx.value.entityUuid,
197
+ "add",
198
+ e.data.bundle,
199
+ e.data.host.type,
200
+ e.data.host.uuid,
201
+ e.data.host.fieldName,
202
+ e.data.afterUuid
203
+ ],
204
+ ctx.value.langcode
205
+ );
206
+ } else if (e.id === "block:edit") {
207
+ return buildFormUrl(
208
+ `/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit/${e.data.uuid}`,
209
+ ctx.value.langcode
210
+ );
211
+ } else if (e.id === "block:translate") {
212
+ return buildFormUrl(
213
+ `/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit/${e.data.uuid}`,
214
+ e.langcode
215
+ );
216
+ } else if (e.id === "entity:edit") {
217
+ return buildFormUrl(
218
+ `/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit_entity/${ctx.value.langcode}`,
219
+ ctx.value.langcode
220
+ );
221
+ } else if (e.id === "entity:translate") {
222
+ return buildFormUrl(
223
+ `/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit_entity/${e.translation.id}`,
224
+ e.translation.id
225
+ );
226
+ } else if (e.id === "batchTranslate") {
227
+ return buildFormUrl(
228
+ `/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/translate-paragraphs`,
229
+ ctx.value.langcode
230
+ );
231
+ }
232
+ };
233
+ const getLastChanged = () => $fetch(
234
+ `/paragraphs_blokkli/${ctx.value.entityType}/${ctx.value.entityUuid}/last_changed`
235
+ ).then((v) => v.changed);
236
+ const adapter = {
237
+ addNewBlock,
238
+ buildEditableFrameUrl,
239
+ changeLanguage,
240
+ formFrameBuilder,
241
+ getAllBundles,
242
+ getDisabledFeatures,
243
+ getDroppableFieldConfig,
244
+ getEditableFieldConfig,
245
+ getFieldConfig,
246
+ getLastChanged,
247
+ loadState,
248
+ loadStateAtIndex,
249
+ mapState,
250
+ moveBlock,
251
+ moveMultipleBlocks
252
+ };
253
+ if (hasQuery("pbPublishOptions")) {
254
+ adapter.getPublishOptions = () => useGraphqlQuery("pbPublishOptions", ctx.value).then((v) => {
255
+ const options = v.data.state?.publishOptions;
256
+ if (!options) {
257
+ throw new Error("Failed to load publish options.");
258
+ }
259
+ return options;
260
+ });
261
+ }
262
+ if (hasQuery("pbGetImportSourceEntities")) {
263
+ adapter.getImportItems = (searchText) => useGraphqlQuery("pbGetImportSourceEntities", {
264
+ entityType: ctx.value.entityType.toLowerCase(),
265
+ entityUuid: ctx.value.entityUuid,
266
+ searchText
267
+ }).then((data) => {
268
+ return {
269
+ total: data?.data.pbGetImportSourceEntities?.total || 0,
270
+ items: (data?.data.pbGetImportSourceEntities?.items || []).map((item) => {
271
+ if (item?.uuid) {
272
+ return {
273
+ uuid: item.uuid,
274
+ label: item.label || item.uuid
275
+ };
276
+ }
277
+ }).filter(falsy)
278
+ };
279
+ });
280
+ }
281
+ if (hasQuery("pbConversions")) {
282
+ adapter.getConversions = () => useGraphqlQuery("pbConversions").then(
283
+ (v) => v?.data.paragraphsBlokkliConversions || []
284
+ );
285
+ }
286
+ if (hasMutation("pbTakeOwnership")) {
287
+ adapter.takeOwnership = () => useGraphqlMutation("pbTakeOwnership", ctx.value).then(mapMutation);
288
+ }
289
+ if (hasMutation("pbSetHistoryIndex")) {
290
+ adapter.setHistoryIndex = (index) => useGraphqlMutation("pbSetHistoryIndex", {
291
+ ...ctx.value,
292
+ index
293
+ }).then(mapMutation);
294
+ }
295
+ if (hasMutation("pbSetMutationItemStatus")) {
296
+ adapter.setMutationItemStatus = (index, status) => useGraphqlMutation("pbSetMutationItemStatus", {
297
+ ...ctx.value,
298
+ index,
299
+ status
300
+ }).then(mapMutation);
301
+ }
302
+ if (hasMutation("pbPublish")) {
303
+ adapter.publish = (options) => useGraphqlMutation("pbPublish", {
304
+ entityType: options.hostEntityType.toUpperCase(),
305
+ entityUuid: options.hostEntityUuid,
306
+ createNewState: !options.closeAfterPublish,
307
+ // @ts-expect-error Might not exist.
308
+ publishIfUnpublished: options.publishIfUnpublished,
309
+ revisionLogMessage: options.revisionLogMessage
310
+ }).then(mapMutation);
311
+ }
312
+ if (hasMutation("pbCopyFromExisting")) {
313
+ adapter.importFromExisting = (e) => useGraphqlMutation("pbCopyFromExisting", {
314
+ ...ctx.value,
315
+ sourceUuid: e.sourceUuid,
316
+ fields: e.sourceFields
317
+ }).then(mapMutation);
318
+ }
319
+ if (hasMutation("pbRevertAllChanges")) {
320
+ adapter.revertAllChanges = () => useGraphqlMutation("pbRevertAllChanges", ctx.value).then(mapMutation);
321
+ }
322
+ if (hasMutation("pbMakeParagraphReusable")) {
323
+ adapter.makeBlockReusable = (e) => useGraphqlMutation("pbMakeParagraphReusable", {
324
+ ...ctx.value,
325
+ ...e
326
+ }).then(mapMutation);
327
+ }
328
+ if (hasMutation("pbDuplicateParagraph")) {
329
+ adapter.duplicateBlocks = (uuids) => {
330
+ if (uuids.length === 1) {
331
+ return useGraphqlMutation("pbDuplicateParagraph", {
332
+ ...ctx.value,
333
+ uuid: uuids[0]
334
+ }).then(mapMutation);
335
+ }
336
+ return useGraphqlMutation("pbDuplicateMultipleParagraphs", {
337
+ ...ctx.value,
338
+ uuids
339
+ }).then(mapMutation);
340
+ };
341
+ }
342
+ if (hasMutation("pbDuplicateMultipleParagraphs")) {
343
+ adapter.pasteExistingBlocks = (e) => {
344
+ return useGraphqlMutation("pbDuplicateMultipleParagraphs", {
345
+ ...ctx.value,
346
+ uuids: e.uuids,
347
+ afterUuid: e.preceedingUuid
348
+ }).then(mapMutation);
349
+ };
350
+ }
351
+ if (hasMutation("pbDetachReusableParagraph")) {
352
+ adapter.detachReusableBlock = (e) => {
353
+ return useGraphqlMutation("pbDetachReusableParagraph", {
354
+ ...ctx.value,
355
+ uuids: e.uuids
356
+ }).then(mapMutation);
357
+ };
358
+ }
359
+ if (hasMutation("pbConvertParagraph") && hasMutation("pbConvertMultiple")) {
360
+ adapter.convertBlocks = (uuids, targetBundle) => {
361
+ if (uuids.length === 1) {
362
+ return useGraphqlMutation("pbConvertParagraph", {
363
+ ...ctx.value,
364
+ uuid: uuids[0],
365
+ targetBundle
366
+ }).then(mapMutation);
367
+ }
368
+ return useGraphqlMutation("pbConvertMultiple", {
369
+ ...ctx.value,
370
+ uuids,
371
+ targetBundle
372
+ }).then(mapMutation);
373
+ };
374
+ }
375
+ if (hasMutation("pbDeleteMultipleParagraphs")) {
376
+ adapter.deleteBlocks = (uuids) => useGraphqlMutation("pbDeleteMultipleParagraphs", {
377
+ ...ctx.value,
378
+ uuids
379
+ }).then(mapMutation);
380
+ }
381
+ if (hasMutation("pbAddReusableParagraph")) {
382
+ adapter.addLibraryItem = (e) => useGraphqlMutation("pbAddReusableParagraph", {
383
+ ...ctx.value,
384
+ libraryItemUuid: e.libraryItemUuid,
385
+ hostType: e.host.type,
386
+ hostUuid: e.host.uuid,
387
+ hostFieldName: e.host.fieldName,
388
+ afterUuid: e.afterUuid
389
+ }).then(mapMutation);
390
+ }
391
+ if (hasMutation("pbUpdateParagraphOption") && hasMutation("pbBulkUpdateParagraphBehaviorSettings")) {
392
+ adapter.updateOptions = (options) => {
393
+ if (options.length === 1) {
394
+ return useGraphqlMutation("pbUpdateParagraphOption", {
395
+ ...ctx.value,
396
+ uuid: options[0].uuid,
397
+ key: options[0].key,
398
+ value: options[0].value,
399
+ pluginId: "paragraphs_blokkli_data"
400
+ }).then(mapMutation);
401
+ }
402
+ const persistItems = options.map((v) => {
403
+ return {
404
+ uuid: v.uuid,
405
+ key: v.key,
406
+ value: v.value,
407
+ pluginId: "paragraphs_blokkli_data"
408
+ };
409
+ });
410
+ return useGraphqlMutation("pbBulkUpdateParagraphBehaviorSettings", {
411
+ ...ctx.value,
412
+ items: persistItems
413
+ }).then(mapMutation);
414
+ };
415
+ }
416
+ const mapComments = (comments) => comments.map((item) => {
417
+ if (item && "uuid" in item) {
418
+ return {
419
+ uuid: item.uuid,
420
+ blockUuids: (item.blockUuids || []).filter(falsy),
421
+ resolved: !!item.resolved,
422
+ body: item.body || "",
423
+ created: item.created?.first?.value || "",
424
+ user: {
425
+ label: item.user?.label || ""
426
+ }
427
+ };
428
+ }
429
+ return null;
430
+ }).filter(falsy);
431
+ if (hasQuery("pbComments")) {
432
+ adapter.loadComments = () => useGraphqlQuery("pbComments", ctx.value).then(
433
+ (v) => mapComments(v.data.state?.comments || [])
434
+ );
435
+ }
436
+ if (hasMutation("pbAddComment")) {
437
+ adapter.addComment = (blockUuids, body) => useGraphqlMutation("pbAddComment", {
438
+ ...ctx.value,
439
+ blockUuids,
440
+ body
441
+ }).then((v) => mapComments(v.data.state?.action || []));
442
+ }
443
+ if (hasMutation("pbResolveComment")) {
444
+ adapter.resolveComment = (uuid) => useGraphqlMutation("pbResolveComment", {
445
+ ...ctx.value,
446
+ uuid
447
+ }).then((v) => mapComments(v.data.state?.action || []));
448
+ }
449
+ if (hasQuery("pbLibraryItems")) {
450
+ adapter.getLibraryItems = (data) => {
451
+ return useGraphqlQuery("pbLibraryItems", {
452
+ bundles: data.bundles,
453
+ text: data.text,
454
+ page: data.page
455
+ }).then((response) => {
456
+ const items = response.data.result?.items?.map((v) => {
457
+ if (v && "uuid" in v && v.uuid) {
458
+ const paragraph = v.paragraphs;
459
+ const bundle = paragraph?.bundle;
460
+ if (bundle && paragraph && paragraph.props && paragraph) {
461
+ return {
462
+ uuid: v.uuid,
463
+ label: v.label,
464
+ bundle,
465
+ item: paragraph
466
+ };
467
+ }
468
+ }
469
+ return null;
470
+ }).filter(falsy) || [];
471
+ return {
472
+ items,
473
+ perPage: response.data.result?.perPage || 16,
474
+ total: response.data.result?.total || 0
475
+ };
476
+ });
477
+ };
478
+ }
479
+ if (hasQuery("pbGetPreviewGrantUrl")) {
480
+ adapter.getPreviewGrantUrl = () => useGraphqlQuery("pbGetPreviewGrantUrl", ctx.value).then(
481
+ (v) => v.data.getParagraphsEditState?.previewUrl
482
+ );
483
+ }
484
+ if (hasQuery("pbGetTransformPlugins")) {
485
+ adapter.getTransformPlugins = () => useGraphqlQuery("pbGetTransformPlugins", ctx.value).then((v) => v.data.paragraphsBlokkliGetTransformPlugins || []).then(
486
+ (plugins) => plugins.map((plugin) => {
487
+ return {
488
+ id: plugin.id,
489
+ label: plugin.label,
490
+ bundles: plugin.bundles,
491
+ targetBundles: plugin.targetBundles,
492
+ min: plugin.min,
493
+ max: plugin.max
494
+ };
495
+ })
496
+ );
497
+ }
498
+ if (hasMutation("pbApplyTransformPlugin")) {
499
+ adapter.applyTransformPlugin = (e) => useGraphqlMutation("pbApplyTransformPlugin", {
500
+ ...ctx.value,
501
+ ...e
502
+ }).then(mapMutation);
503
+ }
504
+ const buildFormUrl = (parts, langcode) => {
505
+ const prefix = config.urlPrefixes[langcode];
506
+ if (prefix === null || prefix === void 0) {
507
+ throw new Error("Failed to get URL prefix for langcode: " + langcode);
508
+ }
509
+ const url = typeof parts === "string" ? parts : "/" + parts.join("/");
510
+ return { url: prefix + url + `?paragraphsBlokkli=true` };
511
+ };
512
+ if (availableFeatureIds.has("library")) {
513
+ adapter.getLibraryItemEditUrl = (uuid) => {
514
+ const url = buildFormUrl(
515
+ ["blokkli", "library-item", uuid],
516
+ ctx.value.langcode
517
+ ).url;
518
+ return `${url}&blokkliEditing=${uuid}&language=${ctx.value.langcode}`;
519
+ };
520
+ }
521
+ if (hasMutation("pbUpdateFieldValue")) {
522
+ adapter.updateFieldValue = (e) => useGraphqlMutation("pbUpdateFieldValue", {
523
+ ...ctx.value,
524
+ uuid: e.uuid,
525
+ fieldName: e.fieldName,
526
+ value: e.fieldValue
527
+ }).then(mapMutation);
528
+ }
529
+ if (hasMutation("pbAddFragmentParagraph")) {
530
+ adapter.fragmentsAddBlock = (e) => useGraphqlMutation("pbAddFragmentParagraph", {
531
+ ...ctx.value,
532
+ hostType: e.host.type,
533
+ hostFieldName: e.host.fieldName,
534
+ hostUuid: e.host.uuid,
535
+ afterUuid: e.preceedingUuid,
536
+ name: e.name
537
+ }).then(mapMutation);
538
+ }
539
+ if (hasMutation("pbReplaceMedia")) {
540
+ adapter.mediaLibraryReplaceMedia = (e) => useGraphqlMutation("pbReplaceMedia", {
541
+ ...ctx.value,
542
+ uuid: e.host.uuid,
543
+ fieldName: e.host.fieldName,
544
+ mediaId: e.mediaId
545
+ }).then(mapMutation);
546
+ }
547
+ if (hasMutation("pbReplaceHostEntityMedia")) {
548
+ adapter.mediaLibraryReplaceEntityMedia = (e) => useGraphqlMutation("pbReplaceHostEntityMedia", {
549
+ ...ctx.value,
550
+ fieldName: e.host.fieldName,
551
+ mediaId: e.mediaId
552
+ }).then(mapMutation);
553
+ }
554
+ if (hasMutation("pbUpdateHostEntityFieldValue")) {
555
+ adapter.updateEntityFieldValue = (e) => useGraphqlMutation("pbUpdateHostEntityFieldValue", {
556
+ ...ctx.value,
557
+ fieldName: e.fieldName,
558
+ value: e.fieldValue
559
+ }).then(mapMutation);
560
+ }
561
+ if (hasQuery("pbMediaLibraryGetResults")) {
562
+ adapter.mediaLibraryGetResults = (e) => {
563
+ return useGraphqlQuery("pbMediaLibraryGetResults", {
564
+ text: e.filters.text,
565
+ bundle: e.filters.bundle,
566
+ page: e.page
567
+ }).then((data) => {
568
+ return {
569
+ filters: (data.data.pbMediaLibraryGetResults?.filters || []).reduce((acc, filter) => {
570
+ if (filter?.__typename === "ParagraphsBlokkliMediaLibraryFilterText") {
571
+ acc[filter.id] = {
572
+ type: "text",
573
+ placeholder: filter.placeholder,
574
+ label: filter.label
575
+ };
576
+ } else if (filter?.__typename === "ParagraphsBlokkliMediaLibraryFilterSelect") {
577
+ acc[filter.id] = {
578
+ type: "select",
579
+ label: filter.label,
580
+ default: filter.default,
581
+ options: filter.options
582
+ };
583
+ }
584
+ return acc;
585
+ }, {}),
586
+ items: (data.data.pbMediaLibraryGetResults?.items || []).filter(
587
+ falsy
588
+ ),
589
+ total: data.data.pbMediaLibraryGetResults?.total || 0,
590
+ perPage: data.data.pbMediaLibraryGetResults?.perPage || 50
591
+ };
592
+ });
593
+ };
594
+ }
595
+ if (hasMutation("pbAddEntityReference")) {
596
+ adapter.mediaLibraryAddBlock = (e) => {
597
+ return useGraphqlMutation("pbAddEntityReference", {
598
+ ...ctx.value,
599
+ targetId: e.item.mediaId,
600
+ targetBundle: e.item.mediaBundle,
601
+ targetType: "media",
602
+ paragraphBundle: e.item.itemBundle,
603
+ hostType: e.host.type,
604
+ hostUuid: e.host.uuid,
605
+ hostFieldName: e.host.fieldName,
606
+ afterUuid: e.preceedingUuid
607
+ }).then(mapMutation);
608
+ };
609
+ }
610
+ if (hasMutation("pbAddEntityReferenceMultiple")) {
611
+ adapter.mediaLibraryAddBlocks = (e) => {
612
+ return useGraphqlMutation("pbAddEntityReferenceMultiple", {
613
+ ...ctx.value,
614
+ references: e.items.map((item) => {
615
+ return {
616
+ targetId: item.mediaId,
617
+ targetType: "media",
618
+ targetBundle: item.mediaBundle,
619
+ paragraphBundle: item.itemBundle
620
+ };
621
+ }),
622
+ hostType: e.host.type,
623
+ hostUuid: e.host.uuid,
624
+ hostFieldName: e.host.fieldName,
625
+ afterUuid: e.preceedingUuid
626
+ }).then(mapMutation);
627
+ };
628
+ }
629
+ if (hasQuery("pbSearchTabs")) {
630
+ adapter.getContentSearchTabs = () => {
631
+ return useGraphqlQuery("pbSearchTabs").then((v) => {
632
+ return (v.data.tabs || []).reduce(
633
+ (acc, tab) => {
634
+ if (tab?.id) {
635
+ acc[tab.id] = tab.label;
636
+ }
637
+ return acc;
638
+ },
639
+ {}
640
+ );
641
+ });
642
+ };
643
+ }
644
+ if (hasQuery("pbSearch")) {
645
+ adapter.getContentSearchResults = (id, text) => {
646
+ return useGraphqlQuery("pbSearch", {
647
+ id,
648
+ text
649
+ }).then((v) => (v.data.paragraphsBlokkliSearch || []).filter(falsy));
650
+ };
651
+ }
652
+ if (hasMutation("pbAddEntityReference")) {
653
+ adapter.addContentSearchItem = (e) => {
654
+ return useGraphqlMutation("pbAddEntityReference", {
655
+ ...ctx.value,
656
+ targetId: e.item.id,
657
+ targetType: e.item.entityType,
658
+ targetBundle: e.item.entityBundle,
659
+ paragraphBundle: e.bundle,
660
+ hostType: e.host.type,
661
+ hostUuid: e.host.uuid,
662
+ hostFieldName: e.host.fieldName,
663
+ afterUuid: e.afterUuid
664
+ }).then(mapMutation);
665
+ };
666
+ }
667
+ if (availableFeatureIds.has("comments")) {
668
+ adapter.clipboardMapBundle = (e) => {
669
+ if (e.type === "video") {
670
+ return config.clipboard.find((v) => {
671
+ if (v?.__typename === "ParagraphsBlokkliSupportedClipboardRemoteVideo") {
672
+ const providers = v.videoProviders;
673
+ if (e.videoService === "vimeo") {
674
+ return providers.includes(
675
+ ParagraphsBlokkliRemoteVideoProvider.VIMEO
676
+ );
677
+ } else if (e.videoService === "youtube") {
678
+ return providers.includes(
679
+ ParagraphsBlokkliRemoteVideoProvider.YOUTUBE
680
+ );
681
+ }
682
+ }
683
+ return false;
684
+ })?.possibleParagraphBundles?.[0];
685
+ } else if (e.type === "plaintext") {
686
+ return config.clipboard.find((v) => {
687
+ return v?.__typename === "ParagraphsBlokkliSupportedClipboardRichText";
688
+ })?.possibleParagraphBundles?.[0];
689
+ } else if (e.type === "image") {
690
+ return config.clipboard.find((v) => {
691
+ return v?.__typename === "ParagraphsBlokkliSupportedClipboardImage";
692
+ })?.possibleParagraphBundles?.[0];
693
+ } else if (e.type === "file") {
694
+ return config.clipboard.find((v) => {
695
+ return v?.__typename === "ParagraphsBlokkliSupportedClipboardFile";
696
+ })?.possibleParagraphBundles?.[0];
697
+ }
698
+ };
699
+ }
700
+ adapter.addBlockFromClipboardItem = (e) => {
701
+ if (e.item.type === "text" && hasMutation("pbAddClipboardText")) {
702
+ return useGraphqlMutation("pbAddClipboardText", {
703
+ ...ctx.value,
704
+ text: e.item.data,
705
+ hostType: e.host.type,
706
+ hostUuid: e.host.uuid,
707
+ hostFieldName: e.host.fieldName,
708
+ afterUuid: e.afterUuid
709
+ }).then(mapMutation);
710
+ } else if (e.item.type === "image" && hasMutation("pbAddImage")) {
711
+ return useGraphqlMutation("pbAddImage", {
712
+ ...ctx.value,
713
+ data: e.item.data,
714
+ fileName: e.item.additional || "",
715
+ hostType: e.host.type,
716
+ hostUuid: e.host.uuid,
717
+ hostFieldName: e.host.fieldName,
718
+ afterUuid: e.afterUuid
719
+ }).then(mapMutation);
720
+ } else if (e.item.type === "file" && hasMutation("pbAddFile")) {
721
+ return useGraphqlMutation("pbAddFile", {
722
+ ...ctx.value,
723
+ data: e.item.data,
724
+ fileName: e.item.additional || "",
725
+ hostType: e.host.type,
726
+ hostUuid: e.host.uuid,
727
+ hostFieldName: e.host.fieldName,
728
+ afterUuid: e.afterUuid
729
+ }).then(mapMutation);
730
+ } else if (e.item.type === "video" && hasMutation("pbAddVideoRemote")) {
731
+ return useGraphqlMutation("pbAddVideoRemote", {
732
+ ...ctx.value,
733
+ url: e.item.data,
734
+ hostType: e.host.type,
735
+ hostUuid: e.host.uuid,
736
+ hostFieldName: e.host.fieldName,
737
+ afterUuid: e.afterUuid
738
+ }).then(mapMutation);
739
+ }
740
+ };
741
+ if (hasQuery("pbSearchEditStates")) {
742
+ adapter.getEditStates = (page) => {
743
+ return useGraphqlQuery("pbSearchEditStates", { page }).then((data) => {
744
+ return {
745
+ items: (data.data.pbSearchEditStates?.items || []).map((v) => {
746
+ if (v && v.uuid && v.hostEntityType && v.hostEntityUuid && v.label) {
747
+ return {
748
+ id: v.uuid,
749
+ hostEntityType: v.hostEntityType,
750
+ hostEntityUuid: v.hostEntityUuid,
751
+ label: v.label,
752
+ ...v
753
+ };
754
+ }
755
+ return null;
756
+ }).filter(falsy),
757
+ total: data.data.pbSearchEditStates?.total || 0,
758
+ perPage: data.data.pbSearchEditStates?.perPage || 0
759
+ };
760
+ });
761
+ };
762
+ }
763
+ return adapter;
764
+ }
765
+ );