{#if Object.keys(blockRefs).length} {#each blocks as block, idx (block.id)} diff --git a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte index 0fa93f360d..0e5a932aa0 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte @@ -400,6 +400,7 @@ width: 480px; font-size: 16px; border-radius: 4px; + cursor: default; } .block .wrap { width: 100%; diff --git a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItemActions.svelte b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItemActions.svelte index 1542c65650..e3014f3e56 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItemActions.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItemActions.svelte @@ -47,5 +47,6 @@ display: flex; gap: var(--spacing-m); padding: 8px 12px; + cursor: default; } From 0eb83239ddc861506806e68c02c6c8f40996b291 Mon Sep 17 00:00:00 2001 From: Dean Date: Tue, 26 Nov 2024 16:56:43 +0000 Subject: [PATCH 07/12] Lint --- .../automation/AutomationBuilder/DraggableCanvas.svelte | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte b/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte index 53de2bec24..f3dcbf9181 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte @@ -44,7 +44,6 @@ w: contentDims.original.w, h: contentDims.original.h, } - dragOffset = [] contentPos.update(state => ({ ...state, x: 0, @@ -135,9 +134,6 @@ // Size of the view port let viewDims = {} - // When dragging the content, maintain the drag start offset - let dragOffset = [] - // Edge around the draggable content let contentDragPadding = 200 @@ -356,7 +352,6 @@ const onViewDragEnd = () => { down = false - dragOffset = [0, 0] } const handleDragDrop = () => { @@ -381,7 +376,6 @@ viewDragOffset = [0, 0] if ($view.dragging) { - dragOffset = [0, 0] view.update(state => ({ ...state, dragging: false, @@ -491,8 +485,6 @@ return } const { x, y } = eleXY(e, viewPort) - - dragOffset = [Math.abs(x - $contentPos.x), Math.abs(y - $contentPos.y)] } const isDraggable = e => { From 1f0de9b9cb802938ffb5b2749beb549f165c8741 Mon Sep 17 00:00:00 2001 From: Dean Date: Tue, 26 Nov 2024 17:00:02 +0000 Subject: [PATCH 08/12] Remove unused --- .../automation/AutomationBuilder/DraggableCanvas.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte b/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte index f3dcbf9181..9e53015f3e 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte @@ -484,7 +484,6 @@ if (down || !viewPort) { return } - const { x, y } = eleXY(e, viewPort) } const isDraggable = e => { From 29c780a458bfa4f41baa42991407c3ba8d060194 Mon Sep 17 00:00:00 2001 From: Dean Date: Tue, 26 Nov 2024 17:31:32 +0000 Subject: [PATCH 09/12] Removed unnecessary mouse behaviour and added in a fix for dragging an element into its own drag zone. --- .../AutomationBuilder/DraggableCanvas.svelte | 12 +----------- packages/builder/src/stores/builder/automations.js | 14 +++++++++++--- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte b/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte index 9e53015f3e..b1a4f37f46 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/DraggableCanvas.svelte @@ -480,12 +480,6 @@ } } - const onMoveContent = e => { - if (down || !viewPort) { - return - } - } - const isDraggable = e => { const draggable = ["draggable-view", ...draggableClasses] return draggable.some(cls => e.target.classList.contains(cls)) @@ -596,11 +590,7 @@ }} >
-
+
diff --git a/packages/builder/src/stores/builder/automations.js b/packages/builder/src/stores/builder/automations.js index 8f54f85ef5..aa35f8ca09 100644 --- a/packages/builder/src/stores/builder/automations.js +++ b/packages/builder/src/stores/builder/automations.js @@ -77,6 +77,17 @@ const automationActions = store => ({ * @param {Object} automation the automaton to be mutated */ moveBlock: async (sourcePath, destPath, automation) => { + // The last part of the source node address, containing the id. + const pathSource = sourcePath.at(-1) + + // The last part of the destination node address, containing the id. + const pathEnd = destPath.at(-1) + + // If they are the same then ignore the drag and drop + if (pathSource.id === pathEnd.id) { + return + } + // Use core delete to remove and return the deleted block // from the automation const { deleted, newAutomation } = store.actions.deleteBlock( @@ -89,9 +100,6 @@ const automationActions = store => ({ const newRefs = {} store.actions.traverse(newRefs, newAutomation) - // The last part of the destination node address, containing the id. - const pathEnd = destPath.at(-1) - let finalPath // If dropping in a branch-step dropzone you need to find // the updated parent step route then add the branch details again From 5ccd20a00b02f09f14b586801219e9fa591f4202 Mon Sep 17 00:00:00 2001 From: Dean Date: Wed, 27 Nov 2024 10:07:15 +0000 Subject: [PATCH 10/12] Added checks to ignore a drag and drop if it doesn't alter the tree structure --- packages/builder/src/stores/builder/automations.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/packages/builder/src/stores/builder/automations.js b/packages/builder/src/stores/builder/automations.js index 08d5cbe816..d9e9f39f0f 100644 --- a/packages/builder/src/stores/builder/automations.js +++ b/packages/builder/src/stores/builder/automations.js @@ -84,8 +84,18 @@ const automationActions = store => ({ // The last part of the destination node address, containing the id. const pathEnd = destPath.at(-1) - // If they are the same then ignore the drag and drop - if (pathSource.id === pathEnd.id) { + // Check if dragging a step into its own drag zone + const isOwnDragzone = pathSource.id === pathEnd.id + + // Check if dragging the first branch step into the branch node drag zone + const isFirstBranchStep = + pathEnd.branchStepId && + pathEnd.branchIdx === pathSource.branchIdx && + pathSource.stepIdx === 0 + + // If dragging into an area that will not affect the tree structure + // Ignore the drag and drop. + if (isOwnDragzone || isFirstBranchStep) { return } From 2a1d002d7fbc083e90ed62a8b2c834bcc0074d69 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Wed, 11 Dec 2024 11:05:11 +0000 Subject: [PATCH 11/12] Fix client error SVG --- packages/client/src/components/ClientApp.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/ClientApp.svelte b/packages/client/src/components/ClientApp.svelte index 1610f36bdc..2840d82f47 100644 --- a/packages/client/src/components/ClientApp.svelte +++ b/packages/client/src/components/ClientApp.svelte @@ -2,7 +2,7 @@ import { writable, get } from "svelte/store" import { setContext, onMount } from "svelte" import { Layout, Heading, Body } from "@budibase/bbui" - import ErrorSVG from "@budibase/frontend-core/assets/error.svg" + import ErrorSVG from "@budibase/frontend-core/assets/error.svg?raw" import { Constants, CookieUtils } from "@budibase/frontend-core" import { getThemeClassNames } from "@budibase/shared-core" import Component from "./Component.svelte" From eca009920ce2dcb8b10940a59267fa87f8d8a0c4 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Thu, 12 Dec 2024 16:00:28 +0000 Subject: [PATCH 12/12] Fixing some type issue found during the frontend-core updates. --- packages/server/src/api/controllers/permission.ts | 4 ++-- packages/types/src/api/web/app/permission.ts | 2 +- packages/types/src/api/web/global/self.ts | 2 +- packages/types/src/documents/app/app.ts | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/server/src/api/controllers/permission.ts b/packages/server/src/api/controllers/permission.ts index 2ef197dbca..e38c736c20 100644 --- a/packages/server/src/api/controllers/permission.ts +++ b/packages/server/src/api/controllers/permission.ts @@ -9,7 +9,7 @@ import { RemovePermissionRequest, RemovePermissionResponse, FetchResourcePermissionInfoResponse, - FetchBuiltinPermissionsRequest, + FetchBuiltinPermissionsResponse, FetchPermissionLevelsRequest, } from "@budibase/types" import { @@ -22,7 +22,7 @@ import { PermissionUpdateType } from "../../sdk/app/permissions" const SUPPORTED_LEVELS = CURRENTLY_SUPPORTED_LEVELS export function fetchBuiltin( - ctx: UserCtx + ctx: UserCtx ) { ctx.body = Object.values(permissions.getBuiltinPermissions()) } diff --git a/packages/types/src/api/web/app/permission.ts b/packages/types/src/api/web/app/permission.ts index 1a19fb0834..407dc2be86 100644 --- a/packages/types/src/api/web/app/permission.ts +++ b/packages/types/src/api/web/app/permission.ts @@ -1,6 +1,6 @@ import { BuiltinPermission, PermissionLevel } from "../../../sdk" -export type FetchBuiltinPermissionsRequest = BuiltinPermission[] +export type FetchBuiltinPermissionsResponse = BuiltinPermission[] export type FetchPermissionLevelsRequest = string[] diff --git a/packages/types/src/api/web/global/self.ts b/packages/types/src/api/web/global/self.ts index 4ba51d2cd5..5f21a8ddc5 100644 --- a/packages/types/src/api/web/global/self.ts +++ b/packages/types/src/api/web/global/self.ts @@ -1,7 +1,7 @@ import { DevInfo, User } from "../../../documents" export interface GenerateAPIKeyRequest { - userId: string + userId?: string } export interface GenerateAPIKeyResponse extends DevInfo {} diff --git a/packages/types/src/documents/app/app.ts b/packages/types/src/documents/app/app.ts index 06fca8307c..e31dd1e9ac 100644 --- a/packages/types/src/documents/app/app.ts +++ b/packages/types/src/documents/app/app.ts @@ -28,6 +28,7 @@ export interface App extends Document { upgradableVersion?: string snippets?: Snippet[] creationVersion?: string + updatedBy?: string } export interface AppInstance {