1
0
Fork 0
mirror of synced 2024-09-21 03:43:21 +12:00

Update automation grouping to group by datasource first

This commit is contained in:
Andrew Kingston 2024-08-22 16:44:57 +01:00
parent c810f023de
commit c7a4fddd11
No known key found for this signature in database
2 changed files with 48 additions and 11 deletions

View file

@ -3,13 +3,21 @@
import { Modal, notifications, Layout } from "@budibase/bbui" import { Modal, notifications, Layout } from "@budibase/bbui"
import NavHeader from "components/common/NavHeader.svelte" import NavHeader from "components/common/NavHeader.svelte"
import { onMount } from "svelte" import { onMount } from "svelte"
import { automationStore } from "stores/builder" import { automationStore, tables } from "stores/builder"
import AutomationNavItem from "./AutomationNavItem.svelte" import AutomationNavItem from "./AutomationNavItem.svelte"
import { TriggerStepID } from "constants/backend/automations"
export let modal export let modal
export let webhookModal export let webhookModal
let searchString let searchString
const dsTriggers = [
TriggerStepID.ROW_SAVED,
TriggerStepID.ROW_UPDATED,
TriggerStepID.ROW_DELETED,
TriggerStepID.ROW_ACTION,
]
$: filteredAutomations = $automationStore.automations $: filteredAutomations = $automationStore.automations
.filter(automation => { .filter(automation => {
return ( return (
@ -29,19 +37,47 @@
return lowerA > lowerB ? 1 : -1 return lowerA > lowerB ? 1 : -1
}) })
$: groupedAutomations = filteredAutomations.reduce((acc, auto) => { $: groupedAutomations = groupAutomations(filteredAutomations)
const catName = auto.definition?.trigger?.event || "No Trigger"
acc[catName] ??= {
icon: auto.definition?.trigger?.icon || "AlertCircle",
name: (auto.definition?.trigger?.name || "No Trigger").toUpperCase(),
entries: [],
}
acc[catName].entries.push(auto)
return acc
}, {})
$: showNoResults = searchString && !filteredAutomations.length $: showNoResults = searchString && !filteredAutomations.length
const groupAutomations = automations => {
let groups = {}
for (let auto of automations) {
let category = null
let dataTrigger = false
// Group by datasource if possible
if (dsTriggers.includes(auto.definition?.trigger?.stepId)) {
if (auto.definition.trigger.inputs?.tableId) {
const tableId = auto.definition.trigger.inputs?.tableId
category = $tables.list.find(x => x._id === tableId)?.name
}
}
// Otherwise group by trigger
if (!category) {
category = auto.definition?.trigger?.name || "No Trigger"
} else {
dataTrigger = true
}
groups[category] ??= {
icon: auto.definition?.trigger?.icon || "AlertCircle",
name: category.toUpperCase(),
entries: [],
dataTrigger,
}
groups[category].entries.push(auto)
}
return Object.values(groups).sort((a, b) => {
if (a.dataTrigger === b.dataTrigger) {
return a.name < b.name ? -1 : 1
}
return a.dataTrigger ? -1 : 1
})
}
onMount(async () => { onMount(async () => {
try { try {
await automationStore.actions.fetch() await automationStore.actions.fetch()

View file

@ -5,6 +5,7 @@ export const TriggerStepID = {
WEBHOOK: "WEBHOOK", WEBHOOK: "WEBHOOK",
APP: "APP", APP: "APP",
CRON: "CRON", CRON: "CRON",
ROW_ACTION: "ROW_ACTION",
} }
export const ActionStepID = { export const ActionStepID = {