1
0
Fork 0
mirror of synced 2024-07-06 06:50:49 +12:00

Prevent screen slot or something containing the screen slot from being deleted

This commit is contained in:
Andrew Kingston 2021-10-01 15:01:16 +01:00
parent cc78f08032
commit 9e74acfec0

View file

@ -8,6 +8,7 @@ import {
selectedComponent,
selectedAccessRole,
} from "builderStore"
import { notifications } from "@budibase/bbui"
import {
datasources,
integrations,
@ -25,6 +26,7 @@ import {
findComponentParent,
findClosestMatchingComponent,
findAllMatchingComponents,
findComponent,
} from "../storeUtils"
import { uuid } from "../uuid"
import { removeBindings } from "../dataBinding"
@ -464,6 +466,28 @@ export const getFrontendStore = () => {
if (!asset) {
return
}
// Fetch full definition
component = findComponent(asset.props, component._id)
// Ensure we aren't deleting the screen slot
if (component._component?.endsWith("/screenslot")) {
notifications.error("You can't delete the screen slot")
return
}
// Ensure we aren't deleting something that contains the screen slot
const screenslot = findComponentType(
component,
"@budibase/standard-components/screenslot"
)
if (screenslot != null) {
notifications.error(
"You can't delete a component that contains the screen slot"
)
return
}
const parent = findComponentParent(asset.props, component._id)
if (parent) {
parent._children = parent._children.filter(