Files
speckle-server/packages/frontend-2/components/project/page/settings/webhooks/CreateOrEditDialog.vue
T
andrewwallacespeckle 4c1ab5f5a0 refactor(fe2): Inputs and Settings Dialog Updates (#2941)
* WIP

* Up to General

* Projects Table

* Other menu items

* Tidy up other inputs

* Refactor Developer Settings to be more modular

* Move buttons to menus

* Minor changes

* Fix build

* Updates from testing

* Fixes from testing
2024-09-12 16:15:27 +01:00

240 lines
6.5 KiB
Vue

<template>
<LayoutDialog
v-model:open="isOpen"
max-width="sm"
:buttons="dialogButtons"
prevent-close-on-click-outside
>
<template #header>
{{ props.webhook ? 'Edit webhook' : 'Create webhook' }}
</template>
<form @submit="onSubmit">
<div class="flex flex-col gap-3">
<FormTextInput
v-model="url"
label="URL"
help="A POST request will be sent to this URL when this webhook is triggered"
name="hookUrl"
show-label
:rules="[isRequired, isUrl]"
type="text"
color="foundation"
/>
<FormTextInput
v-model="description"
label="Webhook name"
help="An optional name to help you identify this webhook"
name="hookName"
show-label
show-optional
type="text"
color="foundation"
/>
<FormTextInput
v-if="!props.webhook"
v-model="secret"
label="Secret"
help="An optional secret. You'll be able to change this in the future, but you won't be able to retrieve it."
name="hookSecret"
show-label
show-optional
type="text"
color="foundation"
/>
<FormSelectBadges
v-model="triggers"
multiple
name="triggers"
label="Events"
placeholder="Choose events"
mount-menu-on-body
help="Choose what events will trigger this webhook."
:rules="[isItemSelected]"
show-label
:items="webhookTriggerItems"
:label-id="badgesLabelId"
:button-id="badgesButtonId"
by="id"
/>
</div>
</form>
</LayoutDialog>
</template>
<script setup lang="ts">
import { useMutation } from '@vue/apollo-composable'
import { WebhookTriggers } from '@speckle/shared'
import {
LayoutDialog,
FormSelectBadges,
type LayoutDialogButton
} from '@speckle/ui-components'
import type { WebhookItem, WebhookFormValues } from '~~/lib/projects/helpers/types'
import {
createWebhookMutation,
updateWebhookMutation
} from '~~/lib/projects/graphql/mutations'
import {
isRequired,
isUrl,
isItemSelected,
fullyResetForm
} from '~~/lib/common/helpers/validation'
import { useForm } from 'vee-validate'
import {
convertThrowIntoFetchResult,
getCacheId,
getFirstErrorMessage
} from '~~/lib/common/helpers/graphql'
import { useGlobalToast, ToastNotificationType } from '~~/lib/common/composables/toast'
import type { ValueOf } from 'type-fest'
const props = defineProps<{
webhook?: WebhookItem | null
streamId?: string
}>()
const emit = defineEmits<{
(e: 'webhook-created'): void
}>()
const { mutate: updateMutation } = useMutation(updateWebhookMutation)
const { mutate: createWebhook } = useMutation(createWebhookMutation)
const { triggerNotification } = useGlobalToast()
const { handleSubmit, resetForm } = useForm<WebhookFormValues>()
const isOpen = defineModel<boolean>('open', { required: true })
const triggers = ref<typeof webhookTriggerItems.value>([])
const url = ref('')
const description = ref('')
const secret = ref('')
const badgesLabelId = useId()
const badgesButtonId = useId()
const webhookTriggerItems = computed(() => {
return Object.values(WebhookTriggers).map((value) => ({
id: value,
text: value
}))
})
const onSubmit = handleSubmit(async (webhookFormValues) => {
if (props.webhook) {
const webhookId = props.webhook.id
const result = await updateMutation(
{
webhook: {
id: webhookId,
streamId: props.webhook.streamId,
url: url.value,
description: description.value,
secret: secret.value?.length ? secret.value : null,
triggers: webhookFormValues.triggers.map((t) => t.id)
}
},
{
update: (cache, { data }) => {
if (data?.webhookUpdate) {
cache.modify({
id: getCacheId('Webhook', webhookId),
fields: {
url: () => webhookFormValues.url,
description: () => webhookFormValues.description || '',
triggers: () => webhookFormValues.triggers.map((t) => t.id)
}
})
}
}
}
).catch(convertThrowIntoFetchResult)
if (result?.data?.webhookUpdate) {
isOpen.value = false
triggerNotification({
type: ToastNotificationType.Success,
title: 'Webhook updated',
description: 'The webhook has been successfully updated'
})
} else {
const errorMessage = getFirstErrorMessage(result?.errors)
triggerNotification({
type: ToastNotificationType.Danger,
title: 'Failed to update webhook',
description: errorMessage
})
}
} else {
const result = await createWebhook({
webhook: {
description: description.value,
url: url.value,
secret: secret.value?.length ? secret.value : null,
streamId: props.streamId || '',
triggers: webhookFormValues.triggers.map((t) => t.id),
enabled: true
}
}).catch(convertThrowIntoFetchResult)
if (result?.data?.webhookCreate) {
isOpen.value = false
emit('webhook-created')
triggerNotification({
type: ToastNotificationType.Success,
title: 'Webhook created',
description: 'The webhook has been successfully created'
})
} else {
const errorMessage = getFirstErrorMessage(result?.errors)
triggerNotification({
type: ToastNotificationType.Danger,
title: 'Failed to create webhook',
description: errorMessage
})
}
}
})
watch(
() => isOpen.value,
(newVal, oldVal) => {
if (!(newVal && !oldVal)) return
// Only run on open
// Reset vee-validate form initialValues to prevent inheriting previous dialog values
fullyResetForm(resetForm)
// Explicitly reset values
resetWebhookModel()
}
)
const resetWebhookModel = () => {
url.value = props.webhook?.url || ''
description.value = props.webhook?.description || ''
secret.value = ''
triggers.value = (
(props.webhook?.triggers || []) as Array<ValueOf<typeof WebhookTriggers>>
).map((i) => ({
id: i,
text: i
}))
}
const dialogButtons = computed((): LayoutDialogButton[] => [
{
text: 'Cancel',
props: { color: 'outline' },
onClick: () => {
isOpen.value = false
}
},
{
text: props.webhook ? 'Save' : 'Create',
props: {},
onClick: onSubmit
}
])
</script>