@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.
- package/LICENSE +21 -0
- package/README.md +64 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.mts +129 -0
- package/dist/module.d.ts +129 -0
- package/dist/module.json +12 -0
- package/dist/module.mjs +5430 -0
- package/dist/runtime/adapter/drupal/graphql/base.graphql +906 -0
- package/dist/runtime/adapter/drupal/graphql/comments.graphql +56 -0
- package/dist/runtime/adapter/drupal/graphql/fragments.graphql +25 -0
- package/dist/runtime/adapter/drupal/graphql/library.graphql +66 -0
- package/dist/runtime/adapter/drupal/graphql/search.graphql +19 -0
- package/dist/runtime/adapter/drupal/graphql/transform.graphql +27 -0
- package/dist/runtime/adapter/drupal/graphqlMiddleware.d.ts +2 -0
- package/dist/runtime/adapter/drupal/graphqlMiddleware.js +643 -0
- package/dist/runtime/adapter/index.d.ts +352 -0
- package/dist/runtime/adapter/index.js +3 -0
- package/dist/runtime/blokkliPlugins/AddAction/index.vue +87 -0
- package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +95 -0
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +49 -0
- package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue +34 -0
- package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +73 -0
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue +132 -0
- package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +42 -0
- package/dist/runtime/blokkliPlugins/MenuButton/index.vue +74 -0
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +334 -0
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue +286 -0
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +104 -0
- package/dist/runtime/blokkliPlugins/TourItem/index.vue +45 -0
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue +106 -0
- package/dist/runtime/blokkliPlugins/index.d.ts +12 -0
- package/dist/runtime/blokkliPlugins/index.js +24 -0
- package/dist/runtime/components/Blocks/Fragment/icon.svg +1 -0
- package/dist/runtime/components/Blocks/Fragment/index.vue +24 -0
- package/dist/runtime/components/Blocks/FromLibrary/index.vue +58 -0
- package/dist/runtime/components/BlokkliEditable.vue +73 -0
- package/dist/runtime/components/BlokkliField.vue +157 -0
- package/dist/runtime/components/BlokkliItem.vue +79 -0
- package/dist/runtime/components/BlokkliProvider.vue +160 -0
- package/dist/runtime/components/Edit/Actions/index.vue +263 -0
- package/dist/runtime/components/Edit/AddListItem/index.vue +116 -0
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +122 -0
- package/dist/runtime/components/Edit/AppMenu/index.vue +60 -0
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +64 -0
- package/dist/runtime/components/Edit/Dialog/index.vue +163 -0
- package/dist/runtime/components/Edit/DragInteractions/index.vue +439 -0
- package/dist/runtime/components/Edit/DraggableList.vue +110 -0
- package/dist/runtime/components/Edit/EditIndicator.vue +82 -0
- package/dist/runtime/components/Edit/EditProvider.vue +213 -0
- package/dist/runtime/components/Edit/Features/AddList/docs.md +4 -0
- package/dist/runtime/components/Edit/Features/AddList/index.vue +205 -0
- package/dist/runtime/components/Edit/Features/Artboard/Manager/Artboard.d.ts +204 -0
- package/dist/runtime/components/Edit/Features/Artboard/Manager/Artboard.js +748 -0
- package/dist/runtime/components/Edit/Features/Artboard/Manager/Scrollbar/index.vue +176 -0
- package/dist/runtime/components/Edit/Features/Artboard/Manager/index.vue +317 -0
- package/dist/runtime/components/Edit/Features/Artboard/index.vue +45 -0
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue +17 -0
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +147 -0
- package/dist/runtime/components/Edit/Features/Assistant/docs.md +7 -0
- package/dist/runtime/components/Edit/Features/Assistant/index.vue +68 -0
- package/dist/runtime/components/Edit/Features/BlockAddList/docs.md +15 -0
- package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +440 -0
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue +68 -0
- package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +56 -0
- package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +69 -0
- package/dist/runtime/components/Edit/Features/Clipboard/docs.md +16 -0
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +485 -0
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +61 -0
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +280 -0
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +51 -0
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +32 -0
- package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +53 -0
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +100 -0
- package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +133 -0
- package/dist/runtime/components/Edit/Features/Comments/docs.md +13 -0
- package/dist/runtime/components/Edit/Features/Comments/index.vue +110 -0
- package/dist/runtime/components/Edit/Features/Conversions/index.vue +98 -0
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +55 -0
- package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +93 -0
- package/dist/runtime/components/Edit/Features/Debug/docs.md +3 -0
- package/dist/runtime/components/Edit/Features/Debug/index.vue +178 -0
- package/dist/runtime/components/Edit/Features/Delete/index.vue +43 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +420 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +58 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +808 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/vertex.glsl +57 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +410 -0
- package/dist/runtime/components/Edit/Features/Duplicate/index.vue +109 -0
- package/dist/runtime/components/Edit/Features/Edit/index.vue +63 -0
- package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +73 -0
- package/dist/runtime/components/Edit/Features/EditForm/index.vue +217 -0
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue +42 -0
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +68 -0
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +81 -0
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +357 -0
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +192 -0
- package/dist/runtime/components/Edit/Features/EditableMask/index.vue +64 -0
- package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +108 -0
- package/dist/runtime/components/Edit/Features/Exit/index.vue +38 -0
- package/dist/runtime/components/Edit/Features/FieldAreas/Overlay/index.vue +33 -0
- package/dist/runtime/components/Edit/Features/FieldAreas/index.vue +43 -0
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +68 -0
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +137 -0
- package/dist/runtime/components/Edit/Features/Fragments/docs.md +101 -0
- package/dist/runtime/components/Edit/Features/Fragments/index.vue +86 -0
- package/dist/runtime/components/Edit/Features/Grid/index.vue +40 -0
- package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +71 -0
- package/dist/runtime/components/Edit/Features/Help/index.vue +53 -0
- package/dist/runtime/components/Edit/Features/History/index.vue +263 -0
- package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +140 -0
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +92 -0
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +0 -0
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +73 -0
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +184 -0
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +88 -0
- package/dist/runtime/components/Edit/Features/Library/docs.md +127 -0
- package/dist/runtime/components/Edit/Features/Library/index.vue +184 -0
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +184 -0
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +182 -0
- package/dist/runtime/components/Edit/Features/MediaLibrary/types.d.ts +57 -0
- package/dist/runtime/components/Edit/Features/MediaLibrary/types.js +0 -0
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/fragment.glsl +90 -0
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +289 -0
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/vertex.glsl +182 -0
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +76 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +52 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +129 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue +38 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +25 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +155 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +74 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +135 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue +47 -0
- package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue +38 -0
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue +342 -0
- package/dist/runtime/components/Edit/Features/Options/index.vue +88 -0
- package/dist/runtime/components/Edit/Features/Ownership/index.vue +57 -0
- package/dist/runtime/components/Edit/Features/Preview/index.vue +45 -0
- package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue +30 -0
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +73 -0
- package/dist/runtime/components/Edit/Features/Publish/index.vue +50 -0
- package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +81 -0
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +217 -0
- package/dist/runtime/components/Edit/Features/Revert/index.vue +68 -0
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +165 -0
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +211 -0
- package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +214 -0
- package/dist/runtime/components/Edit/Features/Search/index.vue +79 -0
- package/dist/runtime/components/Edit/Features/Selection/Overlay/fragment.glsl +99 -0
- package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +144 -0
- package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +85 -0
- package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +50 -0
- package/dist/runtime/components/Edit/Features/Selection/index.vue +295 -0
- package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +141 -0
- package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +138 -0
- package/dist/runtime/components/Edit/Features/Settings/index.vue +92 -0
- package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +181 -0
- package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +149 -0
- package/dist/runtime/components/Edit/Features/Structure/List/index.vue +55 -0
- package/dist/runtime/components/Edit/Features/Structure/index.vue +83 -0
- package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +81 -0
- package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue +24 -0
- package/dist/runtime/components/Edit/Features/Theme/index.vue +122 -0
- package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue +26 -0
- package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +42 -0
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +270 -0
- package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +36 -0
- package/dist/runtime/components/Edit/Features/Tour/docs.md +0 -0
- package/dist/runtime/components/Edit/Features/Tour/index.vue +46 -0
- package/dist/runtime/components/Edit/Features/Transform/docs.md +67 -0
- package/dist/runtime/components/Edit/Features/Transform/index.vue +177 -0
- package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +50 -0
- package/dist/runtime/components/Edit/Features/Translations/index.vue +193 -0
- package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +50 -0
- package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +51 -0
- package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +50 -0
- package/dist/runtime/components/Edit/Features/Validations/index.vue +70 -0
- package/dist/runtime/components/Edit/Features/index.vue +67 -0
- package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +39 -0
- package/dist/runtime/components/Edit/FormOverlay/index.vue +52 -0
- package/dist/runtime/components/Edit/Highlight/index.vue +94 -0
- package/dist/runtime/components/Edit/Icon/index.vue +21 -0
- package/dist/runtime/components/Edit/ItemIcon/index.vue +27 -0
- package/dist/runtime/components/Edit/Loading/index.vue +19 -0
- package/dist/runtime/components/Edit/Messages/Item/index.vue +107 -0
- package/dist/runtime/components/Edit/Messages/index.vue +37 -0
- package/dist/runtime/components/Edit/PreviewProvider.vue +223 -0
- package/dist/runtime/components/Edit/RelativeTime/index.vue +37 -0
- package/dist/runtime/components/Edit/Resizable/index.vue +90 -0
- package/dist/runtime/components/Edit/ScaleToFit/index.vue +57 -0
- package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +90 -0
- package/dist/runtime/components/Edit/Sortli/index.vue +92 -0
- package/dist/runtime/components/Edit/SystemRequirements/index.vue +91 -0
- package/dist/runtime/components/Edit/Toolbar/index.vue +106 -0
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +75 -0
- package/dist/runtime/components/Edit/index.d.ts +14 -0
- package/dist/runtime/components/Edit/index.js +28 -0
- package/dist/runtime/composables/defineBlokkli.d.ts +6 -0
- package/dist/runtime/composables/defineBlokkli.js +108 -0
- package/dist/runtime/composables/defineBlokkliFeature.d.ts +28 -0
- package/dist/runtime/composables/defineBlokkliFeature.js +62 -0
- package/dist/runtime/composables/defineBlokkliFragment.d.ts +3 -0
- package/dist/runtime/composables/defineBlokkliFragment.js +54 -0
- package/dist/runtime/composables/useBlokkli.d.ts +8 -0
- package/dist/runtime/composables/useBlokkli.js +5 -0
- package/dist/runtime/constants/index.d.ts +4 -0
- package/dist/runtime/constants/index.js +2 -0
- package/dist/runtime/css/output.css +1 -0
- package/dist/runtime/helpers/Artboard/index.d.ts +16 -0
- package/dist/runtime/helpers/Artboard/index.js +20 -0
- package/dist/runtime/helpers/DragStyle/index.d.ts +12 -0
- package/dist/runtime/helpers/DragStyle/index.js +86 -0
- package/dist/runtime/helpers/animationProvider.d.ts +25 -0
- package/dist/runtime/helpers/animationProvider.js +116 -0
- package/dist/runtime/helpers/broadcastProvider.d.ts +7 -0
- package/dist/runtime/helpers/broadcastProvider.js +26 -0
- package/dist/runtime/helpers/commandsProvider.d.ts +9 -0
- package/dist/runtime/helpers/commandsProvider.js +16 -0
- package/dist/runtime/helpers/composables/defineCommands.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineCommands.js +10 -0
- package/dist/runtime/helpers/composables/defineDropAreas.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineDropAreas.js +10 -0
- package/dist/runtime/helpers/composables/defineShortcut.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineShortcut.js +19 -0
- package/dist/runtime/helpers/composables/defineTourItem.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineTourItem.js +10 -0
- package/dist/runtime/helpers/composables/onBlokkliEvent.d.ts +2 -0
- package/dist/runtime/helpers/composables/onBlokkliEvent.js +10 -0
- package/dist/runtime/helpers/composables/useAnimationFrame.d.ts +1 -0
- package/dist/runtime/helpers/composables/useAnimationFrame.js +14 -0
- package/dist/runtime/helpers/composables/useDebugLogger.d.ts +2 -0
- package/dist/runtime/helpers/composables/useDebugLogger.js +5 -0
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +5 -0
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +26 -0
- package/dist/runtime/helpers/debugProvider.d.ts +23 -0
- package/dist/runtime/helpers/debugProvider.js +65 -0
- package/dist/runtime/helpers/dom/index.d.ts +5 -0
- package/dist/runtime/helpers/dom/index.js +37 -0
- package/dist/runtime/helpers/domProvider.d.ts +46 -0
- package/dist/runtime/helpers/domProvider.js +446 -0
- package/dist/runtime/helpers/dropAreaProvider.d.ts +9 -0
- package/dist/runtime/helpers/dropAreaProvider.js +22 -0
- package/dist/runtime/helpers/easing.d.ts +3 -0
- package/dist/runtime/helpers/easing.js +16 -0
- package/dist/runtime/helpers/eventBus.d.ts +3 -0
- package/dist/runtime/helpers/eventBus.js +5 -0
- package/dist/runtime/helpers/featuresProvider.d.ts +23 -0
- package/dist/runtime/helpers/featuresProvider.js +16 -0
- package/dist/runtime/helpers/frameEventBus.d.ts +9 -0
- package/dist/runtime/helpers/frameEventBus.js +2 -0
- package/dist/runtime/helpers/index.d.ts +87 -0
- package/dist/runtime/helpers/index.js +467 -0
- package/dist/runtime/helpers/keyboardProvider.d.ts +17 -0
- package/dist/runtime/helpers/keyboardProvider.js +79 -0
- package/dist/runtime/helpers/options.d.ts +2 -0
- package/dist/runtime/helpers/options.js +21 -0
- package/dist/runtime/helpers/runtimeHelpers/index.d.ts +10 -0
- package/dist/runtime/helpers/runtimeHelpers/index.js +35 -0
- package/dist/runtime/helpers/selectionProvider.d.ts +62 -0
- package/dist/runtime/helpers/selectionProvider.js +149 -0
- package/dist/runtime/helpers/stateProvider.d.ts +35 -0
- package/dist/runtime/helpers/stateProvider.js +226 -0
- package/dist/runtime/helpers/storageProvider.d.ts +15 -0
- package/dist/runtime/helpers/storageProvider.js +61 -0
- package/dist/runtime/helpers/symbols.d.ts +16 -0
- package/dist/runtime/helpers/symbols.js +18 -0
- package/dist/runtime/helpers/textProvider.d.ts +4 -0
- package/dist/runtime/helpers/textProvider.js +20 -0
- package/dist/runtime/helpers/themeProvider.d.ts +27 -0
- package/dist/runtime/helpers/themeProvider.js +124 -0
- package/dist/runtime/helpers/tourProvider.d.ts +11 -0
- package/dist/runtime/helpers/tourProvider.js +19 -0
- package/dist/runtime/helpers/transform.d.ts +2 -0
- package/dist/runtime/helpers/transform.js +17 -0
- package/dist/runtime/helpers/typesProvider.d.ts +36 -0
- package/dist/runtime/helpers/typesProvider.js +138 -0
- package/dist/runtime/helpers/uiProvider.d.ts +36 -0
- package/dist/runtime/helpers/uiProvider.js +278 -0
- package/dist/runtime/helpers/webgl/index.d.ts +32 -0
- package/dist/runtime/helpers/webgl/index.js +132 -0
- package/dist/runtime/icons/alert.svg +6 -0
- package/dist/runtime/icons/area.svg +5 -0
- package/dist/runtime/icons/arrow-down.svg +1 -0
- package/dist/runtime/icons/arrow-left.svg +1 -0
- package/dist/runtime/icons/arrow-right.svg +1 -0
- package/dist/runtime/icons/arrow-up.svg +1 -0
- package/dist/runtime/icons/artboard-disabled.svg +9 -0
- package/dist/runtime/icons/artboard-enabled.svg +29 -0
- package/dist/runtime/icons/artboard.svg +1 -0
- package/dist/runtime/icons/bug.svg +1 -0
- package/dist/runtime/icons/button-pointer.svg +1 -0
- package/dist/runtime/icons/caret.svg +12 -0
- package/dist/runtime/icons/cellphone.svg +1 -0
- package/dist/runtime/icons/chat-question.svg +1 -0
- package/dist/runtime/icons/check.svg +1 -0
- package/dist/runtime/icons/checkbox.svg +5 -0
- package/dist/runtime/icons/checks.svg +1 -0
- package/dist/runtime/icons/chevron-left.svg +1 -0
- package/dist/runtime/icons/chevron-right.svg +1 -0
- package/dist/runtime/icons/clipboard.svg +5 -0
- package/dist/runtime/icons/close.svg +5 -0
- package/dist/runtime/icons/cog.svg +5 -0
- package/dist/runtime/icons/command.svg +1 -0
- package/dist/runtime/icons/comment.svg +5 -0
- package/dist/runtime/icons/comment_add.svg +5 -0
- package/dist/runtime/icons/convert.svg +1 -0
- package/dist/runtime/icons/cursor-move.svg +1 -0
- package/dist/runtime/icons/dead.svg +1 -0
- package/dist/runtime/icons/delete.svg +8 -0
- package/dist/runtime/icons/detach.svg +7 -0
- package/dist/runtime/icons/drag.svg +1 -0
- package/dist/runtime/icons/duplicate.svg +12 -0
- package/dist/runtime/icons/edit.svg +8 -0
- package/dist/runtime/icons/exit.svg +6 -0
- package/dist/runtime/icons/expand.svg +1 -0
- package/dist/runtime/icons/file.svg +1 -0
- package/dist/runtime/icons/form.svg +1 -0
- package/dist/runtime/icons/fragment.svg +1 -0
- package/dist/runtime/icons/grid.svg +13 -0
- package/dist/runtime/icons/group.svg +5 -0
- package/dist/runtime/icons/help.svg +1 -0
- package/dist/runtime/icons/history.svg +1 -0
- package/dist/runtime/icons/image.svg +1 -0
- package/dist/runtime/icons/import.svg +5 -0
- package/dist/runtime/icons/laptop.svg +1 -0
- package/dist/runtime/icons/list-view-grid.svg +1 -0
- package/dist/runtime/icons/list-view-horizontal.svg +1 -0
- package/dist/runtime/icons/loader.svg +1 -0
- package/dist/runtime/icons/logo.svg +5 -0
- package/dist/runtime/icons/magnifier.svg +5 -0
- package/dist/runtime/icons/menu.svg +1 -0
- package/dist/runtime/icons/minus.svg +1 -0
- package/dist/runtime/icons/monitor.svg +1 -0
- package/dist/runtime/icons/multi-select.svg +1 -0
- package/dist/runtime/icons/multimedia.svg +1 -0
- package/dist/runtime/icons/opacity.svg +5 -0
- package/dist/runtime/icons/open_in_new.svg +3 -0
- package/dist/runtime/icons/palette.svg +1 -0
- package/dist/runtime/icons/plus-box.svg +1 -0
- package/dist/runtime/icons/plus.svg +1 -0
- package/dist/runtime/icons/preview.svg +5 -0
- package/dist/runtime/icons/publish.svg +12 -0
- package/dist/runtime/icons/puzzle.svg +1 -0
- package/dist/runtime/icons/qrcode.svg +5 -0
- package/dist/runtime/icons/question.svg +5 -0
- package/dist/runtime/icons/redo.svg +12 -0
- package/dist/runtime/icons/resize.svg +1 -0
- package/dist/runtime/icons/reusable.svg +5 -0
- package/dist/runtime/icons/revert.svg +5 -0
- package/dist/runtime/icons/robot.svg +1 -0
- package/dist/runtime/icons/rotate-phone.svg +1 -0
- package/dist/runtime/icons/sad.svg +1 -0
- package/dist/runtime/icons/save.svg +1 -0
- package/dist/runtime/icons/script.svg +1 -0
- package/dist/runtime/icons/scrolltotop.svg +6 -0
- package/dist/runtime/icons/search.svg +1 -0
- package/dist/runtime/icons/selection.svg +5 -0
- package/dist/runtime/icons/spinner.svg +15 -0
- package/dist/runtime/icons/star.svg +1 -0
- package/dist/runtime/icons/swap-horizontal.svg +1 -0
- package/dist/runtime/icons/tablet.svg +1 -0
- package/dist/runtime/icons/textbox.svg +1 -0
- package/dist/runtime/icons/texturebox.svg +5 -0
- package/dist/runtime/icons/tiktok.svg +1 -0
- package/dist/runtime/icons/title.svg +1 -0
- package/dist/runtime/icons/tools.svg +1 -0
- package/dist/runtime/icons/translate.svg +5 -0
- package/dist/runtime/icons/tree.svg +5 -0
- package/dist/runtime/icons/tutor.svg +1 -0
- package/dist/runtime/icons/ui-list-horizontal.svg +19 -0
- package/dist/runtime/icons/ui-list-sidebar.svg +21 -0
- package/dist/runtime/icons/ui-list-vertical.svg +9 -0
- package/dist/runtime/icons/undo.svg +12 -0
- package/dist/runtime/icons/unstar.svg +1 -0
- package/dist/runtime/icons/upload.svg +1 -0
- package/dist/runtime/icons/user.svg +1 -0
- package/dist/runtime/icons/video-outline.svg +1 -0
- package/dist/runtime/icons/vimeo.svg +3 -0
- package/dist/runtime/icons/window-maximize.svg +1 -0
- package/dist/runtime/icons/window-minimize.svg +1 -0
- package/dist/runtime/icons/youtube.svg +3 -0
- package/dist/runtime/plugins/blokkliEditable.d.ts +2 -0
- package/dist/runtime/plugins/blokkliEditable.js +31 -0
- package/dist/runtime/public/Inter.var.woff2 +0 -0
- package/dist/runtime/types/blokkOptions.d.ts +83 -0
- package/dist/runtime/types/blokkOptions.js +0 -0
- package/dist/runtime/types/generatedModuleTypes.d.ts +41 -0
- package/dist/runtime/types/generatedModuleTypes.js +0 -0
- package/dist/runtime/types/index.d.ts +1052 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/runtime/types/theme.d.ts +33 -0
- package/dist/runtime/types/theme.js +0 -0
- package/dist/types.d.mts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +103 -0
|
@@ -0,0 +1,643 @@
|
|
|
1
|
+
import { defineBlokkliEditAdapter } from "#blokkli/adapter";
|
|
2
|
+
import { falsy } from "#blokkli/helpers";
|
|
3
|
+
import {
|
|
4
|
+
useGraphqlQuery,
|
|
5
|
+
useGraphqlMutation,
|
|
6
|
+
computed,
|
|
7
|
+
useRoute,
|
|
8
|
+
useRouter
|
|
9
|
+
} from "#imports";
|
|
10
|
+
import {
|
|
11
|
+
ParagraphsBlokkliRemoteVideoProvider
|
|
12
|
+
} from "#graphql-operations";
|
|
13
|
+
export default defineBlokkliEditAdapter(
|
|
14
|
+
async (providedContext) => {
|
|
15
|
+
const ctx = computed(() => {
|
|
16
|
+
return {
|
|
17
|
+
...providedContext.value,
|
|
18
|
+
entityType: providedContext.value.entityType.toUpperCase()
|
|
19
|
+
};
|
|
20
|
+
});
|
|
21
|
+
const config = await useGraphqlQuery("pbConfig", {
|
|
22
|
+
entityType: providedContext.value.entityType,
|
|
23
|
+
entityBundle: providedContext.value.entityBundle
|
|
24
|
+
}).then((v) => {
|
|
25
|
+
return {
|
|
26
|
+
clipboard: v.data.clipboards || [],
|
|
27
|
+
availableFeatures: v.data.features,
|
|
28
|
+
allTypes: (v.data.allTypes.items || []).filter(
|
|
29
|
+
(v2) => v2 && "icon" in v2
|
|
30
|
+
),
|
|
31
|
+
fieldConfig: v.data.fieldConfig || [],
|
|
32
|
+
editableFieldConfig: v.data.editableFieldConfig || [],
|
|
33
|
+
droppableFieldConfig: v.data.droppableFieldConfig || [],
|
|
34
|
+
urlPrefixes: v.data.urlPrefixes.reduce(
|
|
35
|
+
(acc, item) => {
|
|
36
|
+
acc[item.langcode] = item.prefix;
|
|
37
|
+
return acc;
|
|
38
|
+
},
|
|
39
|
+
{}
|
|
40
|
+
)
|
|
41
|
+
};
|
|
42
|
+
});
|
|
43
|
+
const getImportItems = (searchText) => useGraphqlQuery("pbGetImportSourceEntities", {
|
|
44
|
+
entityType: ctx.value.entityType.toLowerCase(),
|
|
45
|
+
entityUuid: ctx.value.entityUuid,
|
|
46
|
+
searchText
|
|
47
|
+
}).then((data) => {
|
|
48
|
+
return {
|
|
49
|
+
total: data?.data.pbGetImportSourceEntities?.total || 0,
|
|
50
|
+
items: (data?.data.pbGetImportSourceEntities?.items || []).map(
|
|
51
|
+
(item) => {
|
|
52
|
+
return {
|
|
53
|
+
uuid: item.uuid,
|
|
54
|
+
label: item.label || item.uuid
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
)
|
|
58
|
+
};
|
|
59
|
+
});
|
|
60
|
+
const getConversions = () => useGraphqlQuery("pbConversions").then(
|
|
61
|
+
(v) => v?.data.paragraphsBlokkliConversions || []
|
|
62
|
+
);
|
|
63
|
+
const getAllBundles = () => {
|
|
64
|
+
return Promise.resolve(config.allTypes);
|
|
65
|
+
};
|
|
66
|
+
const loadState = (langcode) => useGraphqlQuery("pbEditState", {
|
|
67
|
+
...ctx.value,
|
|
68
|
+
langcode: langcode || void 0
|
|
69
|
+
}).then((v) => v?.data.state);
|
|
70
|
+
const getDisabledFeatures = () => {
|
|
71
|
+
const features = config.availableFeatures;
|
|
72
|
+
const disabled = [];
|
|
73
|
+
const mutations = features?.mutations || [];
|
|
74
|
+
if (!features?.comment) {
|
|
75
|
+
disabled.push("Comments");
|
|
76
|
+
}
|
|
77
|
+
if (!features?.conversion) {
|
|
78
|
+
disabled.push("Conversions");
|
|
79
|
+
}
|
|
80
|
+
if (!features?.library) {
|
|
81
|
+
disabled.push("Library");
|
|
82
|
+
}
|
|
83
|
+
if (!mutations.includes("duplicate")) {
|
|
84
|
+
disabled.push("Duplicate");
|
|
85
|
+
}
|
|
86
|
+
return Promise.resolve(disabled);
|
|
87
|
+
};
|
|
88
|
+
const mapMutation = (v) => v.data?.state?.action;
|
|
89
|
+
const takeOwnership = () => useGraphqlMutation("pbTakeOwnership", ctx.value).then(mapMutation);
|
|
90
|
+
const setHistoryIndex = (index) => useGraphqlMutation("pbSetHistoryIndex", {
|
|
91
|
+
...ctx.value,
|
|
92
|
+
index
|
|
93
|
+
}).then(mapMutation);
|
|
94
|
+
const setMutationItemStatus = (index, status) => useGraphqlMutation("pbSetMutationItemStatus", {
|
|
95
|
+
...ctx.value,
|
|
96
|
+
index,
|
|
97
|
+
status
|
|
98
|
+
}).then(mapMutation);
|
|
99
|
+
const publish = () => useGraphqlMutation("pbPublish", ctx.value).then(mapMutation);
|
|
100
|
+
const importFromExisting = (e) => useGraphqlMutation("pbCopyFromExisting", {
|
|
101
|
+
...ctx.value,
|
|
102
|
+
sourceUuid: e.sourceUuid,
|
|
103
|
+
fields: e.sourceFields
|
|
104
|
+
}).then(mapMutation);
|
|
105
|
+
const revertAllChanges = () => useGraphqlMutation("pbRevertAllChanges", ctx.value).then(mapMutation);
|
|
106
|
+
const makeBlockReusable = (e) => useGraphqlMutation("pbMakeParagraphReusable", {
|
|
107
|
+
...ctx.value,
|
|
108
|
+
...e
|
|
109
|
+
}).then(mapMutation);
|
|
110
|
+
const duplicateBlocks = (uuids) => {
|
|
111
|
+
if (uuids.length === 1) {
|
|
112
|
+
return useGraphqlMutation("pbDuplicateParagraph", {
|
|
113
|
+
...ctx.value,
|
|
114
|
+
uuid: uuids[0]
|
|
115
|
+
}).then(mapMutation);
|
|
116
|
+
}
|
|
117
|
+
return useGraphqlMutation("pbDuplicateMultipleParagraphs", {
|
|
118
|
+
...ctx.value,
|
|
119
|
+
uuids
|
|
120
|
+
}).then(mapMutation);
|
|
121
|
+
};
|
|
122
|
+
const pasteExistingBlocks = (e) => {
|
|
123
|
+
return useGraphqlMutation("pbDuplicateMultipleParagraphs", {
|
|
124
|
+
...ctx.value,
|
|
125
|
+
uuids: e.uuids,
|
|
126
|
+
afterUuid: e.preceedingUuid
|
|
127
|
+
}).then(mapMutation);
|
|
128
|
+
};
|
|
129
|
+
const detachReusableBlock = (e) => {
|
|
130
|
+
return useGraphqlMutation("pbDetachReusableParagraph", {
|
|
131
|
+
...ctx.value,
|
|
132
|
+
uuids: e.uuids
|
|
133
|
+
}).then(mapMutation);
|
|
134
|
+
};
|
|
135
|
+
const convertBlocks = (uuids, targetBundle) => {
|
|
136
|
+
if (uuids.length === 1) {
|
|
137
|
+
return useGraphqlMutation("pbConvertParagraph", {
|
|
138
|
+
...ctx.value,
|
|
139
|
+
uuid: uuids[0],
|
|
140
|
+
targetBundle
|
|
141
|
+
}).then(mapMutation);
|
|
142
|
+
}
|
|
143
|
+
return useGraphqlMutation("pbConvertMultiple", {
|
|
144
|
+
...ctx.value,
|
|
145
|
+
uuids,
|
|
146
|
+
targetBundle
|
|
147
|
+
}).then(mapMutation);
|
|
148
|
+
};
|
|
149
|
+
const deleteBlocks = (uuids) => useGraphqlMutation("pbDeleteMultipleParagraphs", {
|
|
150
|
+
...ctx.value,
|
|
151
|
+
uuids
|
|
152
|
+
}).then(mapMutation);
|
|
153
|
+
const addLibraryItem = (e) => useGraphqlMutation("pbAddReusableParagraph", {
|
|
154
|
+
...ctx.value,
|
|
155
|
+
libraryItemUuid: e.libraryItemUuid,
|
|
156
|
+
hostType: e.host.type,
|
|
157
|
+
hostUuid: e.host.uuid,
|
|
158
|
+
hostFieldName: e.host.fieldName,
|
|
159
|
+
afterUuid: e.afterUuid
|
|
160
|
+
}).then(mapMutation);
|
|
161
|
+
const moveMultipleBlocks = (e) => useGraphqlMutation("pbMoveMultipleItems", {
|
|
162
|
+
...ctx.value,
|
|
163
|
+
uuids: e.uuids,
|
|
164
|
+
hostType: e.host.type,
|
|
165
|
+
hostUuid: e.host.uuid,
|
|
166
|
+
hostFieldName: e.host.fieldName,
|
|
167
|
+
afterUuid: e.afterUuid
|
|
168
|
+
}).then(mapMutation);
|
|
169
|
+
const moveBlock = (e) => useGraphqlMutation("pbMoveParagraph", {
|
|
170
|
+
...ctx.value,
|
|
171
|
+
uuid: e.item.uuid,
|
|
172
|
+
hostType: e.host.type,
|
|
173
|
+
hostUuid: e.host.uuid,
|
|
174
|
+
hostFieldName: e.host.fieldName,
|
|
175
|
+
afterUuid: e.afterUuid
|
|
176
|
+
}).then(mapMutation);
|
|
177
|
+
const addNewBlock = (e) => useGraphqlMutation("pbAddParagraph", {
|
|
178
|
+
...ctx.value,
|
|
179
|
+
hostType: e.host.type,
|
|
180
|
+
hostFieldName: e.host.fieldName,
|
|
181
|
+
hostUuid: e.host.uuid,
|
|
182
|
+
afterUuid: e.afterUuid,
|
|
183
|
+
type: e.bundle
|
|
184
|
+
}).then(mapMutation);
|
|
185
|
+
const updateOptions = (options) => {
|
|
186
|
+
if (options.length === 1) {
|
|
187
|
+
return useGraphqlMutation("pbUpdateParagraphOption", {
|
|
188
|
+
...ctx.value,
|
|
189
|
+
uuid: options[0].uuid,
|
|
190
|
+
key: options[0].key,
|
|
191
|
+
value: options[0].value,
|
|
192
|
+
pluginId: "paragraphs_blokkli_data"
|
|
193
|
+
}).then(mapMutation);
|
|
194
|
+
}
|
|
195
|
+
const persistItems = options.map((v) => {
|
|
196
|
+
return {
|
|
197
|
+
uuid: v.uuid,
|
|
198
|
+
key: v.key,
|
|
199
|
+
value: v.value,
|
|
200
|
+
pluginId: "paragraphs_blokkli_data"
|
|
201
|
+
};
|
|
202
|
+
});
|
|
203
|
+
return useGraphqlMutation("pbBulkUpdateParagraphBehaviorSettings", {
|
|
204
|
+
...ctx.value,
|
|
205
|
+
items: persistItems
|
|
206
|
+
}).then(mapMutation);
|
|
207
|
+
};
|
|
208
|
+
const mapState = (state) => {
|
|
209
|
+
const currentIndex = state?.currentIndex === null || state?.currentIndex === void 0 ? -1 : state.currentIndex;
|
|
210
|
+
const mutations = state?.mutations || [];
|
|
211
|
+
const currentUserIsOwner = !!state?.currentUserIsOwner;
|
|
212
|
+
const ownerName = state?.ownerName || "";
|
|
213
|
+
const fields = state?.mutatedState?.fields || [];
|
|
214
|
+
const violations = state.mutatedState?.violations || [];
|
|
215
|
+
const entity = state.entity;
|
|
216
|
+
const mutatedOptions = state.mutatedState?.mutatedOptions || {};
|
|
217
|
+
Object.keys(mutatedOptions).forEach((uuid) => {
|
|
218
|
+
mutatedOptions[uuid] = mutatedOptions[uuid]?.paragraphs_blokkli_data || {};
|
|
219
|
+
});
|
|
220
|
+
const translationState = {
|
|
221
|
+
isTranslatable: !!state.translationState?.isTranslatable,
|
|
222
|
+
sourceLanguage: state.translationState?.sourceLanguage || "",
|
|
223
|
+
availableLanguages: (state.translationState?.availableLanguages || []).map((language) => {
|
|
224
|
+
return {
|
|
225
|
+
id: language.id,
|
|
226
|
+
name: language.name
|
|
227
|
+
};
|
|
228
|
+
}),
|
|
229
|
+
translations: (state.translationState?.translations || []).map((v) => {
|
|
230
|
+
if (v.id && v.url && v.editUrl) {
|
|
231
|
+
return {
|
|
232
|
+
id: v.id,
|
|
233
|
+
url: v.url,
|
|
234
|
+
editUrl: v.editUrl,
|
|
235
|
+
exists: !!v.exists,
|
|
236
|
+
status: !!v.status
|
|
237
|
+
};
|
|
238
|
+
}
|
|
239
|
+
return null;
|
|
240
|
+
}).filter(falsy)
|
|
241
|
+
};
|
|
242
|
+
return {
|
|
243
|
+
currentIndex,
|
|
244
|
+
mutations,
|
|
245
|
+
currentUserIsOwner,
|
|
246
|
+
ownerName,
|
|
247
|
+
mutatedState: {
|
|
248
|
+
fields,
|
|
249
|
+
violations,
|
|
250
|
+
mutatedOptions
|
|
251
|
+
},
|
|
252
|
+
entity,
|
|
253
|
+
mutatedEntity: state.mutatedEntity,
|
|
254
|
+
translationState
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
const mapComments = (comments) => comments.map((item) => {
|
|
258
|
+
if ("uuid" in item) {
|
|
259
|
+
return {
|
|
260
|
+
uuid: item.uuid,
|
|
261
|
+
blockUuids: item.blockUuids || [],
|
|
262
|
+
resolved: !!item.resolved,
|
|
263
|
+
body: item.body || "",
|
|
264
|
+
created: item.created?.first?.value || "",
|
|
265
|
+
user: {
|
|
266
|
+
label: item.user?.label || ""
|
|
267
|
+
}
|
|
268
|
+
};
|
|
269
|
+
}
|
|
270
|
+
return null;
|
|
271
|
+
}).filter(falsy);
|
|
272
|
+
const loadComments = () => useGraphqlQuery("pbComments", ctx.value).then(
|
|
273
|
+
(v) => mapComments(v.data.state?.comments || [])
|
|
274
|
+
);
|
|
275
|
+
const addComment = (blockUuids, body) => useGraphqlMutation("pbAddComment", {
|
|
276
|
+
...ctx.value,
|
|
277
|
+
blockUuids,
|
|
278
|
+
body
|
|
279
|
+
}).then((v) => mapComments(v.data.state?.action || []));
|
|
280
|
+
const resolveComment = (uuid) => useGraphqlMutation("pbResolveComment", {
|
|
281
|
+
...ctx.value,
|
|
282
|
+
uuid
|
|
283
|
+
}).then((v) => mapComments(v.data.state?.action || []));
|
|
284
|
+
const getLibraryItems = (data) => {
|
|
285
|
+
return useGraphqlQuery("pbLibraryItems", {
|
|
286
|
+
bundles: data.bundles,
|
|
287
|
+
text: data.text,
|
|
288
|
+
page: data.page
|
|
289
|
+
}).then((response) => {
|
|
290
|
+
const items = response.data.result.items?.map((v) => {
|
|
291
|
+
if (v && "uuid" in v && v.uuid) {
|
|
292
|
+
const paragraph = v.paragraphs;
|
|
293
|
+
const bundle = paragraph?.bundle;
|
|
294
|
+
if (bundle && paragraph && paragraph.props && paragraph) {
|
|
295
|
+
return {
|
|
296
|
+
uuid: v.uuid,
|
|
297
|
+
label: v.label,
|
|
298
|
+
bundle,
|
|
299
|
+
item: paragraph
|
|
300
|
+
};
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
return null;
|
|
304
|
+
}).filter(falsy) || [];
|
|
305
|
+
return {
|
|
306
|
+
items,
|
|
307
|
+
perPage: response.data.result?.perPage || 16,
|
|
308
|
+
total: response.data.result?.total || 0
|
|
309
|
+
};
|
|
310
|
+
});
|
|
311
|
+
};
|
|
312
|
+
const getLastChanged = () => $fetch(
|
|
313
|
+
`/paragraphs_blokkli/${ctx.value.entityType}/${ctx.value.entityUuid}/last_changed`
|
|
314
|
+
).then((v) => v.changed);
|
|
315
|
+
const getPreviewGrantUrl = () => useGraphqlQuery("pbGetPreviewGrantUrl", ctx.value).then(
|
|
316
|
+
(v) => v.data.getParagraphsEditState?.previewUrl
|
|
317
|
+
);
|
|
318
|
+
const getTransformPlugins = () => useGraphqlQuery("pbGetTransformPlugins").then((v) => v.data.paragraphsBlokkliGetTransformPlugins || []).then(
|
|
319
|
+
(plugins) => plugins.map((plugin) => {
|
|
320
|
+
return {
|
|
321
|
+
id: plugin.id,
|
|
322
|
+
label: plugin.label,
|
|
323
|
+
bundles: plugin.bundles,
|
|
324
|
+
targetBundles: plugin.targetBundles,
|
|
325
|
+
min: plugin.min,
|
|
326
|
+
max: plugin.max
|
|
327
|
+
};
|
|
328
|
+
})
|
|
329
|
+
);
|
|
330
|
+
const applyTransformPlugin = (e) => useGraphqlMutation("pbApplyTransformPlugin", {
|
|
331
|
+
...ctx.value,
|
|
332
|
+
...e
|
|
333
|
+
}).then(mapMutation);
|
|
334
|
+
const buildFormUrl = (parts, langcode) => {
|
|
335
|
+
const prefix = config.urlPrefixes[langcode];
|
|
336
|
+
if (prefix === null || prefix === void 0) {
|
|
337
|
+
throw new Error("Failed to get URL prefix for langcode: " + langcode);
|
|
338
|
+
}
|
|
339
|
+
const url = typeof parts === "string" ? parts : "/" + parts.join("/");
|
|
340
|
+
return { url: prefix + url + `?paragraphsBlokkli=true` };
|
|
341
|
+
};
|
|
342
|
+
const formFrameBuilder = (e) => {
|
|
343
|
+
const entityType = ctx.value.entityType.toLowerCase();
|
|
344
|
+
if (e.id === "block:add") {
|
|
345
|
+
return buildFormUrl(
|
|
346
|
+
[
|
|
347
|
+
"paragraphs_blokkli",
|
|
348
|
+
entityType,
|
|
349
|
+
ctx.value.entityUuid,
|
|
350
|
+
"add",
|
|
351
|
+
e.data.bundle,
|
|
352
|
+
e.data.host.type,
|
|
353
|
+
e.data.host.uuid,
|
|
354
|
+
e.data.host.fieldName,
|
|
355
|
+
e.data.afterUuid
|
|
356
|
+
],
|
|
357
|
+
ctx.value.language
|
|
358
|
+
);
|
|
359
|
+
} else if (e.id === "block:edit") {
|
|
360
|
+
return buildFormUrl(
|
|
361
|
+
`/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit/${e.data.uuid}`,
|
|
362
|
+
ctx.value.language
|
|
363
|
+
);
|
|
364
|
+
} else if (e.id === "block:translate") {
|
|
365
|
+
return buildFormUrl(
|
|
366
|
+
`/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit/${e.data.uuid}`,
|
|
367
|
+
e.langcode
|
|
368
|
+
);
|
|
369
|
+
} else if (e.id === "entity:edit") {
|
|
370
|
+
return buildFormUrl(
|
|
371
|
+
`/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit_entity/${ctx.value.language}`,
|
|
372
|
+
ctx.value.language
|
|
373
|
+
);
|
|
374
|
+
} else if (e.id === "entity:translate") {
|
|
375
|
+
return buildFormUrl(
|
|
376
|
+
`/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/edit_entity/${e.translation.id}`,
|
|
377
|
+
e.translation.id
|
|
378
|
+
);
|
|
379
|
+
} else if (e.id === "batchTranslate") {
|
|
380
|
+
return buildFormUrl(
|
|
381
|
+
`/paragraphs_blokkli/${entityType}/${ctx.value.entityUuid}/translate-paragraphs`,
|
|
382
|
+
ctx.value.language
|
|
383
|
+
);
|
|
384
|
+
}
|
|
385
|
+
};
|
|
386
|
+
const getFieldConfig = () => {
|
|
387
|
+
return Promise.resolve(config.fieldConfig);
|
|
388
|
+
};
|
|
389
|
+
const getEditableFieldConfig = () => {
|
|
390
|
+
return Promise.resolve(config.editableFieldConfig);
|
|
391
|
+
};
|
|
392
|
+
const getDroppableFieldConfig = () => {
|
|
393
|
+
return Promise.resolve(config.droppableFieldConfig);
|
|
394
|
+
};
|
|
395
|
+
const updateFieldValue = (e) => useGraphqlMutation("pbUpdateFieldValue", {
|
|
396
|
+
...ctx.value,
|
|
397
|
+
langcode: ctx.value.language,
|
|
398
|
+
uuid: e.uuid,
|
|
399
|
+
fieldName: e.fieldName,
|
|
400
|
+
value: e.fieldValue
|
|
401
|
+
}).then(mapMutation);
|
|
402
|
+
const buildEditableFrameUrl = (e) => {
|
|
403
|
+
const url = "/" + [
|
|
404
|
+
"paragraphs_blokkli",
|
|
405
|
+
ctx.value.entityType,
|
|
406
|
+
ctx.value.entityUuid,
|
|
407
|
+
"edit",
|
|
408
|
+
"rich_text",
|
|
409
|
+
e.fieldName,
|
|
410
|
+
e.uuid
|
|
411
|
+
].filter(falsy).join("/");
|
|
412
|
+
return buildFormUrl(url, ctx.value.language).url;
|
|
413
|
+
};
|
|
414
|
+
const fragmentsAddBlock = (e) => useGraphqlMutation("pbAddFragmentParagraph", {
|
|
415
|
+
...ctx.value,
|
|
416
|
+
hostType: e.host.type,
|
|
417
|
+
hostFieldName: e.host.fieldName,
|
|
418
|
+
hostUuid: e.host.uuid,
|
|
419
|
+
afterUuid: e.preceedingUuid,
|
|
420
|
+
name: e.name
|
|
421
|
+
}).then(mapMutation);
|
|
422
|
+
const mediaLibraryReplaceMedia = (e) => useGraphqlMutation("pbReplaceMedia", {
|
|
423
|
+
...ctx.value,
|
|
424
|
+
langcode: providedContext.value.language,
|
|
425
|
+
uuid: e.host.uuid,
|
|
426
|
+
fieldName: e.host.fieldName,
|
|
427
|
+
mediaId: e.mediaId
|
|
428
|
+
}).then(mapMutation);
|
|
429
|
+
const mediaLibraryReplaceEntityMedia = (e) => useGraphqlMutation("pbReplaceHostEntityMedia", {
|
|
430
|
+
...ctx.value,
|
|
431
|
+
langcode: providedContext.value.language,
|
|
432
|
+
fieldName: e.host.fieldName,
|
|
433
|
+
mediaId: e.mediaId
|
|
434
|
+
}).then(mapMutation);
|
|
435
|
+
const updateEntityFieldValue = (e) => useGraphqlMutation("pbUpdateHostEntityFieldValue", {
|
|
436
|
+
...ctx.value,
|
|
437
|
+
langcode: providedContext.value.language,
|
|
438
|
+
fieldName: e.fieldName,
|
|
439
|
+
value: e.fieldValue
|
|
440
|
+
}).then(mapMutation);
|
|
441
|
+
const mediaLibraryGetResults = (e) => {
|
|
442
|
+
return useGraphqlQuery("pbMediaLibraryGetResults", {
|
|
443
|
+
text: e.filters.text,
|
|
444
|
+
bundle: e.filters.bundle,
|
|
445
|
+
page: e.page
|
|
446
|
+
}).then((data) => {
|
|
447
|
+
return {
|
|
448
|
+
filters: (data.data.pbMediaLibraryGetResults?.filters || []).reduce((acc, filter) => {
|
|
449
|
+
if (filter.__typename === "ParagraphsBlokkliMediaLibraryFilterText") {
|
|
450
|
+
acc[filter.id] = {
|
|
451
|
+
type: "text",
|
|
452
|
+
placeholder: filter.placeholder,
|
|
453
|
+
label: filter.label
|
|
454
|
+
};
|
|
455
|
+
} else if (filter.__typename === "ParagraphsBlokkliMediaLibraryFilterSelect") {
|
|
456
|
+
acc[filter.id] = {
|
|
457
|
+
type: "select",
|
|
458
|
+
label: filter.label,
|
|
459
|
+
default: filter.default,
|
|
460
|
+
options: filter.options
|
|
461
|
+
};
|
|
462
|
+
}
|
|
463
|
+
return acc;
|
|
464
|
+
}, {}),
|
|
465
|
+
items: data.data.pbMediaLibraryGetResults?.items || [],
|
|
466
|
+
total: data.data.pbMediaLibraryGetResults?.total || 0,
|
|
467
|
+
perPage: data.data.pbMediaLibraryGetResults?.perPage || 50
|
|
468
|
+
};
|
|
469
|
+
});
|
|
470
|
+
};
|
|
471
|
+
const mediaLibraryAddBlock = (e) => {
|
|
472
|
+
return useGraphqlMutation("pbAddEntityReference", {
|
|
473
|
+
...ctx.value,
|
|
474
|
+
targetId: e.item.mediaId,
|
|
475
|
+
targetBundle: e.item.mediaBundle,
|
|
476
|
+
targetType: "media",
|
|
477
|
+
paragraphBundle: e.item.itemBundle,
|
|
478
|
+
hostType: e.host.type,
|
|
479
|
+
hostUuid: e.host.uuid,
|
|
480
|
+
hostFieldName: e.host.fieldName,
|
|
481
|
+
afterUuid: e.preceedingUuid
|
|
482
|
+
}).then(mapMutation);
|
|
483
|
+
};
|
|
484
|
+
const getContentSearchTabs = () => {
|
|
485
|
+
return useGraphqlQuery("pbSearchTabs").then((v) => {
|
|
486
|
+
return (v.data.tabs || []).reduce(
|
|
487
|
+
(acc, tab) => {
|
|
488
|
+
acc[tab.id] = tab.label;
|
|
489
|
+
return acc;
|
|
490
|
+
},
|
|
491
|
+
{}
|
|
492
|
+
);
|
|
493
|
+
});
|
|
494
|
+
};
|
|
495
|
+
const getContentSearchResults = (id, text) => {
|
|
496
|
+
return useGraphqlQuery("pbSearch", {
|
|
497
|
+
id,
|
|
498
|
+
text
|
|
499
|
+
}).then((v) => v.data.paragraphsBlokkliSearch || []);
|
|
500
|
+
};
|
|
501
|
+
const addContentSearchItem = (e) => {
|
|
502
|
+
return useGraphqlMutation("pbAddEntityReference", {
|
|
503
|
+
...ctx.value,
|
|
504
|
+
targetId: e.item.id,
|
|
505
|
+
targetType: e.item.entityType,
|
|
506
|
+
targetBundle: e.item.entityBundle,
|
|
507
|
+
paragraphBundle: e.bundle,
|
|
508
|
+
hostType: e.host.type,
|
|
509
|
+
hostUuid: e.host.uuid,
|
|
510
|
+
hostFieldName: e.host.fieldName,
|
|
511
|
+
afterUuid: e.afterUuid
|
|
512
|
+
}).then(mapMutation);
|
|
513
|
+
};
|
|
514
|
+
const clipboardMapBundle = (e) => {
|
|
515
|
+
if (e.type === "video") {
|
|
516
|
+
return config.clipboard.find((v) => {
|
|
517
|
+
if (v.__typename === "ParagraphsBlokkliSupportedClipboardRemoteVideo") {
|
|
518
|
+
const providers = v.videoProviders;
|
|
519
|
+
if (e.videoService === "vimeo") {
|
|
520
|
+
return providers.includes(
|
|
521
|
+
ParagraphsBlokkliRemoteVideoProvider.VIMEO
|
|
522
|
+
);
|
|
523
|
+
} else if (e.videoService === "youtube") {
|
|
524
|
+
return providers.includes(
|
|
525
|
+
ParagraphsBlokkliRemoteVideoProvider.YOUTUBE
|
|
526
|
+
);
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
return false;
|
|
530
|
+
})?.possibleParagraphBundles?.[0];
|
|
531
|
+
} else if (e.type === "plaintext") {
|
|
532
|
+
return config.clipboard.find((v) => {
|
|
533
|
+
return v.__typename === "ParagraphsBlokkliSupportedClipboardRichText";
|
|
534
|
+
})?.possibleParagraphBundles?.[0];
|
|
535
|
+
} else if (e.type === "image") {
|
|
536
|
+
return config.clipboard.find((v) => {
|
|
537
|
+
return v.__typename === "ParagraphsBlokkliSupportedClipboardImage";
|
|
538
|
+
})?.possibleParagraphBundles?.[0];
|
|
539
|
+
} else if (e.type === "file") {
|
|
540
|
+
return config.clipboard.find((v) => {
|
|
541
|
+
return v.__typename === "ParagraphsBlokkliSupportedClipboardFile";
|
|
542
|
+
})?.possibleParagraphBundles?.[0];
|
|
543
|
+
}
|
|
544
|
+
};
|
|
545
|
+
const addBlockFromClipboardItem = (e) => {
|
|
546
|
+
if (e.item.type === "text") {
|
|
547
|
+
return useGraphqlMutation("pbAddClipboardText", {
|
|
548
|
+
...ctx.value,
|
|
549
|
+
text: e.item.data,
|
|
550
|
+
hostType: e.host.type,
|
|
551
|
+
hostUuid: e.host.uuid,
|
|
552
|
+
hostFieldName: e.host.fieldName,
|
|
553
|
+
afterUuid: e.afterUuid
|
|
554
|
+
}).then(mapMutation);
|
|
555
|
+
} else if (e.item.type === "image") {
|
|
556
|
+
return useGraphqlMutation("pbAddImage", {
|
|
557
|
+
...ctx.value,
|
|
558
|
+
data: e.item.data,
|
|
559
|
+
fileName: e.item.additional || "",
|
|
560
|
+
hostType: e.host.type,
|
|
561
|
+
hostUuid: e.host.uuid,
|
|
562
|
+
hostFieldName: e.host.fieldName,
|
|
563
|
+
afterUuid: e.afterUuid
|
|
564
|
+
}).then(mapMutation);
|
|
565
|
+
} else if (e.item.type === "file") {
|
|
566
|
+
return useGraphqlMutation("pbAddFile", {
|
|
567
|
+
...ctx.value,
|
|
568
|
+
data: e.item.data,
|
|
569
|
+
fileName: e.item.additional || "",
|
|
570
|
+
hostType: e.host.type,
|
|
571
|
+
hostUuid: e.host.uuid,
|
|
572
|
+
hostFieldName: e.host.fieldName,
|
|
573
|
+
afterUuid: e.afterUuid
|
|
574
|
+
}).then(mapMutation);
|
|
575
|
+
} else if (e.item.type === "video") {
|
|
576
|
+
return useGraphqlMutation("pbAddVideoRemote", {
|
|
577
|
+
...ctx.value,
|
|
578
|
+
url: e.item.data,
|
|
579
|
+
hostType: e.host.type,
|
|
580
|
+
hostUuid: e.host.uuid,
|
|
581
|
+
hostFieldName: e.host.fieldName,
|
|
582
|
+
afterUuid: e.afterUuid
|
|
583
|
+
}).then(mapMutation);
|
|
584
|
+
}
|
|
585
|
+
};
|
|
586
|
+
const route = useRoute();
|
|
587
|
+
const router = useRouter();
|
|
588
|
+
const changeLanguage = (translation) => {
|
|
589
|
+
return router.push({ path: translation.url, query: route.query });
|
|
590
|
+
};
|
|
591
|
+
return {
|
|
592
|
+
buildEditableFrameUrl,
|
|
593
|
+
getTransformPlugins,
|
|
594
|
+
applyTransformPlugin,
|
|
595
|
+
getImportItems,
|
|
596
|
+
getConversions,
|
|
597
|
+
getAllBundles,
|
|
598
|
+
loadState,
|
|
599
|
+
getDisabledFeatures,
|
|
600
|
+
takeOwnership,
|
|
601
|
+
setHistoryIndex,
|
|
602
|
+
setMutationItemStatus,
|
|
603
|
+
publish,
|
|
604
|
+
importFromExisting,
|
|
605
|
+
revertAllChanges,
|
|
606
|
+
makeBlockReusable,
|
|
607
|
+
duplicateBlocks,
|
|
608
|
+
convertBlocks,
|
|
609
|
+
addLibraryItem,
|
|
610
|
+
moveMultipleBlocks,
|
|
611
|
+
moveBlock,
|
|
612
|
+
addNewBlock,
|
|
613
|
+
updateOptions,
|
|
614
|
+
mapState,
|
|
615
|
+
loadComments,
|
|
616
|
+
addComment,
|
|
617
|
+
resolveComment,
|
|
618
|
+
getLibraryItems,
|
|
619
|
+
detachReusableBlock,
|
|
620
|
+
getLastChanged,
|
|
621
|
+
getPreviewGrantUrl,
|
|
622
|
+
formFrameBuilder,
|
|
623
|
+
deleteBlocks,
|
|
624
|
+
getFieldConfig,
|
|
625
|
+
pasteExistingBlocks,
|
|
626
|
+
updateFieldValue,
|
|
627
|
+
getEditableFieldConfig,
|
|
628
|
+
fragmentsAddBlock,
|
|
629
|
+
mediaLibraryReplaceMedia,
|
|
630
|
+
mediaLibraryReplaceEntityMedia,
|
|
631
|
+
updateEntityFieldValue,
|
|
632
|
+
getDroppableFieldConfig,
|
|
633
|
+
mediaLibraryGetResults,
|
|
634
|
+
mediaLibraryAddBlock,
|
|
635
|
+
getContentSearchTabs,
|
|
636
|
+
getContentSearchResults,
|
|
637
|
+
addContentSearchItem,
|
|
638
|
+
clipboardMapBundle,
|
|
639
|
+
addBlockFromClipboardItem,
|
|
640
|
+
changeLanguage
|
|
641
|
+
};
|
|
642
|
+
}
|
|
643
|
+
);
|