Files
windmill/frontend/src/lib/components/flows/map/FlowErrorHandlerItem.svelte
2023-03-07 14:47:17 +01:00

70 lines
2.1 KiB
Svelte

<script lang="ts">
import type { FlowEditorContext } from '../types'
import { getContext } from 'svelte'
import Icon from 'svelte-awesome'
import { faBug } from '@fortawesome/free-solid-svg-icons'
import { classNames, emptySchema } from '$lib/utils'
import type { FlowModuleState } from '../flowState'
import Toggle from '$lib/components/Toggle.svelte'
import { NEVER_TESTED_THIS_FAR } from '../utils'
const { selectedId, flowStateStore, flowStore } =
getContext<FlowEditorContext>('FlowEditorContext')
function onToggle() {
if ($flowStore?.value?.failure_module) {
$flowStore.value.failure_module = undefined
// By default, we return to settings when disabling the failure module
$selectedId = 'settings-metadata'
} else {
const failureModule: FlowModuleState = {
schema: emptySchema(),
previewResult: NEVER_TESTED_THIS_FAR
}
$flowStateStore['failure'] = failureModule
$flowStore.value.failure_module = {
id: 'failure',
value: { type: 'identity' }
}
$selectedId = 'failure'
}
}
</script>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div
on:click={() => {
if ($flowStore?.value?.failure_module) {
$selectedId = 'failure'
} else {
onToggle()
}
}}
class={classNames(
'border mx-auto rounded-sm px-2 py-1 bg-white text-sm border-gray-400 cursor-pointer flex justify-between items-center flex-row overflow-x-hidden ',
$selectedId?.includes('failure') ? 'outline outline-offset-1 outline-2 outline-slate-900' : ''
)}
style="min-width: 275px"
>
<div class=" flex justify-between items-center flex-wrap">
<div>
<Icon data={faBug} class="mr-2" />
<span class="font-bold text-xs">Error handler</span>
</div>
</div>
<div class=" items-center truncate flex text-xs">
{#if Boolean($flowStore?.value?.failure_module)}
<span>
{$flowStore.value.failure_module?.summary ||
($flowStore.value.failure_module?.value.type === 'rawscript'
? `${$flowStore.value.failure_module?.value.language}`
: 'TBD')}
</span>
{/if}
</div>
<div class="-my-1">
<Toggle checked={Boolean($flowStore?.value?.failure_module)} on:change={onToggle} />
</div>
</div>