mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.1 KiB
103 lines
3.1 KiB
<script setup lang="ts"> |
|
import { message } from 'ant-design-vue' |
|
import { useI18n } from 'vue-i18n' |
|
import { MetaInj } from '~/context' |
|
import { inject, onMounted, ref, useNuxtApp } from '#imports' |
|
import { extractSdkResponseErrorMsg } from '~/utils' |
|
|
|
const emit = defineEmits(['edit', 'add']) |
|
|
|
const { t } = useI18n() |
|
|
|
const { $api, $e } = useNuxtApp() |
|
|
|
const hooks = ref<Record<string, any>[]>([]) |
|
|
|
const meta = inject(MetaInj)! |
|
|
|
async function loadHooksList() { |
|
try { |
|
const hookList = (await $api.dbTableWebhook.list(meta?.value.id as string)).list as Record<string, any>[] |
|
hooks.value = hookList.map((hook) => { |
|
hook.notification = hook.notification && JSON.parse(hook.notification) |
|
return hook |
|
}) |
|
} catch (e: any) { |
|
message.error(await extractSdkResponseErrorMsg(e)) |
|
} |
|
} |
|
|
|
async function deleteHook(item: Record<string, any>, index: number) { |
|
try { |
|
if (item.id) { |
|
await $api.dbTableWebhook.delete(item.id) |
|
hooks.value.splice(index, 1) |
|
} else { |
|
hooks.value.splice(index, 1) |
|
} |
|
|
|
// Hook deleted successfully |
|
message.success(t('msg.success.webhookDeleted')) |
|
if (!hooks.value.length) { |
|
hooks.value = [] |
|
} |
|
} catch (e: any) { |
|
message.error(await extractSdkResponseErrorMsg(e)) |
|
} |
|
|
|
$e('a:webhook:delete') |
|
} |
|
|
|
onMounted(() => { |
|
loadHooksList() |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div class=""> |
|
<div class="mb-2"> |
|
<div class="float-left font-bold text-xl mt-2 mb-4">{{ meta.title }} : Webhooks</div> |
|
<a-button class="float-right nc-btn-create-webhook" type="primary" size="large" @click="emit('add')"> |
|
{{ $t('activity.addWebhook') }} |
|
</a-button> |
|
</div> |
|
<a-divider /> |
|
<div v-if="hooks.length" class=""> |
|
<a-list item-layout="horizontal" :data-source="hooks" class="cursor-pointer scrollbar-thin-primary"> |
|
<template #renderItem="{ item, index }"> |
|
<a-list-item class="p-2 nc-hook" @click="emit('edit', item)"> |
|
<a-list-item-meta> |
|
<template #description> |
|
<span class="uppercase"> {{ item.event }} {{ item.operation }}</span> |
|
</template> |
|
<template #title> |
|
<span class="text-xl normal-case"> |
|
{{ item.title }} |
|
</span> |
|
</template> |
|
<template #avatar> |
|
<div class="mt-4"> |
|
<MdiHook class="text-xl" /> |
|
</div> |
|
</template> |
|
</a-list-item-meta> |
|
<template #extra> |
|
<div> |
|
<!-- Notify Via --> |
|
<div class="mr-2">{{ $t('labels.notifyVia') }} : {{ item?.notification?.type }}</div> |
|
<div class="float-right pt-2 pr-1"> |
|
<MdiDeleteOutline class="text-xl nc-hook-delete-icon" @click.stop="deleteHook(item, index)" /> |
|
</div> |
|
</div> |
|
</template> |
|
</a-list-item> |
|
</template> |
|
</a-list> |
|
</div> |
|
<div v-else class="min-h-[75vh]"> |
|
<div class="p-4 bg-gray-100 text-gray-600"> |
|
Webhooks list is empty, create new webhook by clicking 'Create webhook' button. |
|
</div> |
|
</div> |
|
</div> |
|
</template>
|
|
|