use scroll for triggers
This commit is contained in:
@@ -234,7 +234,7 @@
|
||||
<p>Page not available for operators</p>
|
||||
</div>
|
||||
{:else}
|
||||
<CenteredPage>
|
||||
<CenteredPage useScroll>
|
||||
<PageHeader
|
||||
title="Kafka triggers"
|
||||
tooltip="Windmill can consume kafka events and trigger scripts or flows based on them."
|
||||
|
||||
@@ -228,7 +228,7 @@
|
||||
f={(x) => (x.summary ?? '') + ' ' + x.path + ' (' + x.script_path + ')'}
|
||||
/>
|
||||
|
||||
<CenteredPage>
|
||||
<CenteredPage useScroll>
|
||||
<PageHeader
|
||||
title="MQTT triggers"
|
||||
tooltip="Windmill can connect to an MQTT broker, subscribe to specific topics, and trigger scripts or flows based on those topics."
|
||||
|
||||
@@ -233,7 +233,7 @@
|
||||
<p>Page not available for operators</p>
|
||||
</div>
|
||||
{:else}
|
||||
<CenteredPage>
|
||||
<CenteredPage useScroll>
|
||||
<PageHeader
|
||||
title="NATS triggers"
|
||||
tooltip="Windmill can consume NATS events and trigger scripts or flows based on them."
|
||||
|
||||
@@ -226,7 +226,7 @@
|
||||
f={(x) => (x.summary ?? '') + ' ' + x.path + ' (' + x.script_path + ')'}
|
||||
/>
|
||||
|
||||
<CenteredPage>
|
||||
<CenteredPage useScroll>
|
||||
<PageHeader
|
||||
title="Postgres triggers"
|
||||
tooltip="Windmill enables real-time responsiveness by listening to specific database transactions—such as inserts, updates, and deletes—and automatically triggering scripts or workflows in response."
|
||||
|
||||
@@ -193,17 +193,19 @@
|
||||
<p>Page not available for operators</p>
|
||||
</div>
|
||||
{:else}
|
||||
<CenteredPage>
|
||||
<CenteredPage useScroll>
|
||||
<PageHeader
|
||||
title="Custom HTTP routes"
|
||||
tooltip="Every script and flow already has a canonical HTTP API endpoint/webhook attached to it, this is to create additional parametrizable ones."
|
||||
documentationLink="https://www.windmill.dev/docs/core_concepts/http_routing"
|
||||
>
|
||||
{#if $userStore?.is_admin || $userStore?.is_super_admin}
|
||||
<Button size="md" startIcon={{ icon: Plus }} on:click={() => routeEditor.openNew(false)}>
|
||||
New route
|
||||
</Button>
|
||||
{/if}
|
||||
<div class="min-h-[41px]">
|
||||
{#if $userStore?.is_admin || $userStore?.is_super_admin}
|
||||
<Button size="md" startIcon={{ icon: Plus }} on:click={() => routeEditor.openNew(false)}>
|
||||
New route
|
||||
</Button>
|
||||
{/if}
|
||||
</div>
|
||||
</PageHeader>
|
||||
<div class="w-full h-full flex flex-col">
|
||||
<div class="w-full pb-4 pt-6">
|
||||
|
||||
@@ -227,7 +227,7 @@
|
||||
f={(x) => (x.summary ?? '') + ' ' + x.path + ' (' + x.script_path + ')'}
|
||||
/>
|
||||
|
||||
<CenteredPage>
|
||||
<CenteredPage useScroll>
|
||||
<PageHeader title="SQS triggers" tooltip="SQS trigger">
|
||||
<Button size="md" startIcon={{ icon: Plus }} on:click={() => sqsTriggerEditor.openNew(false)}>
|
||||
New SQS trigger
|
||||
|
||||
@@ -226,7 +226,7 @@
|
||||
f={(x) => (x.summary ?? '') + ' ' + x.path + ' (' + x.script_path + ')'}
|
||||
/>
|
||||
|
||||
<CenteredPage>
|
||||
<CenteredPage useScroll>
|
||||
<PageHeader
|
||||
title="WebSocket triggers"
|
||||
tooltip="Windmill can listen to WebSocket events and trigger scripts or flows based on them."
|
||||
|
||||
Reference in New Issue
Block a user