mirror of https://github.com/Budibase/budibase.git
nocodelowcodelow-codedockerdocker-composeinternal-projectinternal-toolinternal-toolslow-code-developmentlow-code-development-platformopensourceselfhostedweb-devweb-developmentweb-development-toolswebdevwebdevelopmentworkflow-automationautomationdeveloper-tools
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.7 KiB
89 lines
1.7 KiB
<script>
|
|
import { store, backendUiStore, automationStore } from "builderStore"
|
|
import { notifier } from "builderStore/store/notifications"
|
|
import ActionButton from "components/common/ActionButton.svelte"
|
|
|
|
export let onClosed
|
|
|
|
let name
|
|
|
|
$: valid = !!name
|
|
$: instanceId = $backendUiStore.selectedDatabase._id
|
|
|
|
async function deleteAutomation() {
|
|
await automationStore.actions.delete({
|
|
instanceId,
|
|
automation: $automationStore.selectedAutomation.automation,
|
|
})
|
|
onClosed()
|
|
notifier.danger("Automation deleted.")
|
|
}
|
|
</script>
|
|
|
|
<header>
|
|
<i class="ri-stackshare-line" />
|
|
Delete Automation
|
|
</header>
|
|
<div>
|
|
<p>
|
|
Are you sure you want to delete this automation? This action can't be
|
|
undone.
|
|
</p>
|
|
</div>
|
|
<footer>
|
|
<a href="https://docs.budibase.com">
|
|
<i class="ri-information-line" />
|
|
Learn about automations
|
|
</a>
|
|
<ActionButton on:click={onClosed}>Cancel</ActionButton>
|
|
<ActionButton alert on:click={deleteAutomation}>Delete</ActionButton>
|
|
</footer>
|
|
|
|
<style>
|
|
header {
|
|
font-size: 24px;
|
|
color: var(--ink);
|
|
font-weight: bold;
|
|
padding: 30px;
|
|
}
|
|
|
|
header i {
|
|
margin-right: 10px;
|
|
font-size: 20px;
|
|
background: var(--blue-light);
|
|
color: var(--grey-4);
|
|
padding: 8px;
|
|
}
|
|
|
|
div {
|
|
padding: 0 30px 30px 30px;
|
|
}
|
|
|
|
label {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
footer {
|
|
display: grid;
|
|
grid-auto-flow: column;
|
|
grid-gap: 5px;
|
|
grid-auto-columns: 3fr 1fr 1fr;
|
|
padding: 20px;
|
|
background: var(--grey-1);
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
footer a {
|
|
color: var(--primary);
|
|
font-size: 14px;
|
|
vertical-align: middle;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
footer i {
|
|
font-size: 20px;
|
|
margin-right: 10px;
|
|
}
|
|
</style>
|
|
|