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.
99 lines
3.0 KiB
99 lines
3.0 KiB
<script setup lang="ts"> |
|
import { useToast } from 'vue-toastification' |
|
import { onMounted } from '@vue/runtime-core' |
|
import { MetaInj } from '~/context' |
|
import MdiHookIcon from '~icons/mdi/hook' |
|
import MdiDeleteOutlineIcon from '~icons/mdi/delete-outline' |
|
|
|
const emit = defineEmits(['edit']) |
|
|
|
const { $api, $e } = useNuxtApp() |
|
|
|
const toast = useToast() |
|
|
|
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) { |
|
toast.error(e.message) |
|
} |
|
} |
|
|
|
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) |
|
} |
|
toast.success('Hook deleted successfully') |
|
if (!hooks.value.length) { |
|
hooks.value = [] |
|
} |
|
} catch (e: any) { |
|
toast.error(e.message) |
|
} |
|
|
|
$e('a:webhook:delete') |
|
} |
|
|
|
onMounted(() => { |
|
loadHooksList() |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div class="h-5/6"> |
|
<div class="mb-4"> |
|
<div class="float-left font-bold text-xl mt-2 mb-4">{{ meta.title }} : Webhooks</div> |
|
<a-button class="float-right" type="primary" size="large" @click="emit('add')"> |
|
{{ $t('activity.addWebhook') }} |
|
</a-button> |
|
</div> |
|
<a-divider /> |
|
<div v-if="hooks.length"> |
|
<a-list item-layout="horizontal" :data-source="hooks" class="cursor-pointer pl-5 pr-5 pt-2 pb-2"> |
|
<template #renderItem="{ item, index }"> |
|
<a-list-item class="pa-2" @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"> |
|
<MdiHookIcon 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"> |
|
<MdiDeleteOutlineIcon class="text-xl" @click.stop="deleteHook(item, index)" /> |
|
</div> |
|
</div> |
|
</template> |
|
</a-list-item> |
|
</template> |
|
</a-list> |
|
</div> |
|
<div v-else class="pa-4 bg-gray-100 text-gray-600"> |
|
Webhooks list is empty, create new webhook by clicking 'Create webhook' button. |
|
</div> |
|
</div> |
|
</template>
|
|
|