mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-13 08:05:23 +00:00
* Remove $$props.field usage * Rename slots to ensure no hyphen * _props * _trigger * OnSelectedIteration type correct capitalization * rename _content * Remove afterUpdate * Migrate everything to svelte 5 * array bind * Fix popover * type never * nit fixes * Fixed many trivial errors * onClick * Fix errors * use let: * nit typing * fix: wrap state_referenced_locally vars with untrack() Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add untrack import * Fix all syntax errors due to untrack migration * Fix undefined errors * Fix more undefined errors * untrack(() => initialOpen) * svelte-ignore * Fix state_descriptors_fixed error in Chart.svelte Use $state.snapshot() to pass plain copies of data/options to Chart.js instead of $state proxies. Chart.js's listenArrayEvents tries to define property descriptors on data arrays, which Svelte 5 proxies reject. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * nit typing * Merge issue * Fix "path is not set" error in resource picker / editor * Fix InputTransformForm error when rerunning some flows * fix npm run check --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
111 lines
2.7 KiB
Svelte
111 lines
2.7 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
CancelablePromise,
|
|
KafkaTriggerService,
|
|
MqttTriggerService,
|
|
NatsTriggerService,
|
|
SqsTriggerService,
|
|
PostgresTriggerService,
|
|
WebsocketTriggerService,
|
|
GcpTriggerService
|
|
} from '$lib/gen'
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { sendUserToast } from '$lib/toast'
|
|
import Button from '../common/button/Button.svelte'
|
|
|
|
interface Props {
|
|
kind: 'websocket' | 'nats' | 'kafka' | 'postgres' | 'sqs' | 'mqtt' | 'gcp';
|
|
args: Record<string, any>;
|
|
noButton?: boolean;
|
|
testLoading?: boolean;
|
|
}
|
|
|
|
let {
|
|
kind,
|
|
args,
|
|
noButton = false,
|
|
testLoading = $bindable(false)
|
|
}: Props = $props();
|
|
|
|
const kindToName: { [key: string]: string } = {
|
|
websocket: 'WebSocket',
|
|
nats: 'NATS server(s)',
|
|
kafka: 'Kafka broker(s)',
|
|
sqs: 'SQS',
|
|
postgres: 'Postgres',
|
|
mqtt: 'MQTT broker',
|
|
gcp: 'Google Cloud Pub/Sub'
|
|
}
|
|
|
|
let promise: CancelablePromise<any> | null = null
|
|
export async function testTriggerConnection() {
|
|
if (testLoading) {
|
|
promise?.cancel()
|
|
return
|
|
}
|
|
|
|
testLoading = true
|
|
try {
|
|
if (kind === 'websocket') {
|
|
promise = WebsocketTriggerService.testWebsocketConnection({
|
|
workspace: $workspaceStore!,
|
|
requestBody: args as any
|
|
})
|
|
} else if (kind === 'nats') {
|
|
promise = NatsTriggerService.testNatsConnection({
|
|
workspace: $workspaceStore!,
|
|
requestBody: args as any
|
|
})
|
|
} else if (kind === 'kafka') {
|
|
promise = KafkaTriggerService.testKafkaConnection({
|
|
workspace: $workspaceStore!,
|
|
requestBody: args as any
|
|
})
|
|
} else if (kind === 'mqtt') {
|
|
promise = MqttTriggerService.testMqttConnection({
|
|
workspace: $workspaceStore!,
|
|
requestBody: args as any
|
|
})
|
|
} else if (kind === 'sqs') {
|
|
promise = SqsTriggerService.testSqsConnection({
|
|
workspace: $workspaceStore!,
|
|
requestBody: args as any
|
|
})
|
|
} else if (kind === 'postgres') {
|
|
promise = PostgresTriggerService.testPostgresConnection({
|
|
workspace: $workspaceStore!,
|
|
requestBody: args as any
|
|
})
|
|
} else if (kind === 'gcp') {
|
|
promise = GcpTriggerService.testGcpConnection({
|
|
workspace: $workspaceStore!,
|
|
requestBody: args as any
|
|
})
|
|
}
|
|
await promise
|
|
sendUserToast(`Successfully connected to ${kindToName[kind]}`)
|
|
} catch (err) {
|
|
if (!promise?.isCancelled) {
|
|
sendUserToast(`Error testing ${kindToName[kind]}: ${err?.body ?? 'Unknown error'}`, true)
|
|
}
|
|
} finally {
|
|
testLoading = false
|
|
}
|
|
}
|
|
</script>
|
|
|
|
{#if !noButton}
|
|
<div class="flex flex-row justify-end mt-1">
|
|
<Button
|
|
spacingSize="sm"
|
|
size="xs"
|
|
variant="default"
|
|
on:click={testTriggerConnection}
|
|
loading={testLoading}
|
|
clickableWhileLoading
|
|
>
|
|
Test connection
|
|
</Button>
|
|
</div>
|
|
{/if}
|