61 lines
1.4 KiB
Svelte
61 lines
1.4 KiB
Svelte
<script>
|
|
import { goto } from "@roxi/routify"
|
|
import { database } from "stores/backend"
|
|
import { automationStore } from "builderStore"
|
|
import { notifications } from "@budibase/bbui"
|
|
import { Icon, Input, ModalContent } from "@budibase/bbui"
|
|
import analytics from "analytics"
|
|
|
|
let name
|
|
|
|
$: valid = !!name
|
|
$: instanceId = $database._id
|
|
|
|
async function createAutomation() {
|
|
await automationStore.actions.create({
|
|
name,
|
|
instanceId,
|
|
})
|
|
notifications.success(`Automation ${name} created.`)
|
|
$goto(`./${$automationStore.selectedAutomation.automation._id}`)
|
|
analytics.captureEvent("Automation Created", { name })
|
|
}
|
|
</script>
|
|
|
|
<ModalContent
|
|
title="Create Automation"
|
|
confirmText="Create"
|
|
size="L"
|
|
onConfirm={createAutomation}
|
|
disabled={!valid}
|
|
>
|
|
<Input bind:value={name} label="Name" />
|
|
<a
|
|
slot="footer"
|
|
target="_blank"
|
|
href="https://docs.budibase.com/automate/introduction-to-automate"
|
|
>
|
|
<Icon name="InfoOutline" />
|
|
<span>Learn about automations</span>
|
|
</a>
|
|
</ModalContent>
|
|
|
|
<style>
|
|
a {
|
|
color: var(--ink);
|
|
font-size: 14px;
|
|
vertical-align: middle;
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
}
|
|
a span {
|
|
text-decoration: underline;
|
|
margin-left: var(--spectrum-alias-item-padding-s);
|
|
}
|
|
i {
|
|
font-size: 20px;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|