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.
186 lines
5.0 KiB
186 lines
5.0 KiB
<template> |
|
<div> |
|
<v-card-title> |
|
Webhooks |
|
<v-spacer /> |
|
<v-btn |
|
outlined |
|
tooltip="Save" |
|
small |
|
@click.prevent="$emit('add')" |
|
> |
|
Create webhook |
|
</v-btn> |
|
</v-card-title> |
|
|
|
<div v-if="hooks " class="pa-4"> |
|
<template v-if=" hooks.length"> |
|
<v-card v-for="(hook,i) in hooks" :key="hook.id" class="elevation-0 backgroundColor nc-hook" @click="$emit('edit', hook)"> |
|
<div class="pa-4 "> |
|
<h4 class="nc-text"> |
|
{{ hook.title }} |
|
</h4> |
|
<div class="d-flex"> |
|
<!--Title--> |
|
<span class="caption textColor1--text">{{ $t("general.event") }} : {{ hook.event }} {{ |
|
hook.operation |
|
}}</span> |
|
<v-spacer /> |
|
<!--Notify Via--> |
|
<span class="caption textColor1--text">{{ |
|
$t("labels.notifyVia") |
|
}} : {{ hook.notification && hook.notification.type }} |
|
</span> |
|
</div> |
|
</div> |
|
|
|
<v-icon class="nc-hook-delete-icon" small @click.stop="deleteHook(hook,i)"> |
|
mdi-delete-outline |
|
</v-icon> |
|
</v-card> |
|
</template> |
|
<div v-else class="pa-4 backgroundColor caption textColor--text text--lighten-3"> |
|
Webhooks list is empty, create new webhook by clicking 'Create webhook' button. |
|
</div> |
|
</div> |
|
|
|
<!-- <v-simple-table dense> |
|
<template #default> |
|
<thead> |
|
<tr> |
|
<th> |
|
<!–Title–> |
|
{{ $t("general.title") }} |
|
</th> |
|
<th> |
|
<!–Event–> |
|
{{ $t("general.event") }} |
|
</th> |
|
<th> |
|
<!–Condition–> |
|
{{ $t("general.condition") }} |
|
</th> |
|
<th> |
|
<!–Notify Via–> |
|
{{ $t("labels.notifyVia") }} |
|
</th> |
|
<th> |
|
<!–Action–> |
|
{{ $t("labels.action") }} |
|
</th> |
|
</tr> |
|
</thead> |
|
|
|
<tbody> |
|
<template v-if="hooks && hooks.length"> |
|
<tr v-for="(item, i) in hooks" :key="i"> |
|
<td>{{ item.title }}</td> |
|
<td>{{ item.event }} {{ item.operation }}</td> |
|
<td> |
|
<v-icon v-if="item.condition" color="success" small> |
|
mdi-check-bold |
|
</v-icon> |
|
</td> |
|
<td> |
|
{{ item.notification && item.notification.type }} |
|
</td> |
|
<td> |
|
<x-icon |
|
small |
|
color="error" |
|
@click.stop="deleteHook(item, i)" |
|
> |
|
mdi-delete |
|
</x-icon> |
|
<!– <x-icon small :color="loading || !valid || !hook.event ? 'grey' : 'primary'" |
|
@click.stop="(!loading && valid && hook.event) && saveHooks()">save |
|
</x-icon>–> |
|
</td> |
|
</tr> |
|
</template> |
|
<tr> |
|
<td colspan="6" class="text-center py-5"> |
|
<!–:tooltip="$t('tooltip.saveChanges')"–> |
|
<x-btn |
|
v-ge="['hooks', 'add new']" |
|
outlined |
|
color="primary" |
|
small |
|
@click.prevent="$emit('add')" |
|
> |
|
<v-icon small left> |
|
mdi-plus |
|
</v-icon> |
|
<!–Add New Webhook–> |
|
{{ $t("activity.addWebhook") }} |
|
</x-btn> |
|
</td> |
|
</tr> |
|
</tbody> |
|
</template> |
|
</v-simple-table>--> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
name: 'WebhookList', |
|
props: { meta: Object }, |
|
data: () => ({ |
|
hooks: null, loading: false |
|
}), |
|
mounted() { |
|
this.loadHooksList() |
|
}, |
|
methods: { |
|
async loadHooksList() { |
|
this.key++ |
|
this.loading = true |
|
|
|
const hooks = await this.$api.dbTableWebhook.list(this.meta.id) |
|
|
|
this.hooks = hooks.list.map((h) => { |
|
h.notification = h.notification && JSON.parse(h.notification) |
|
return h |
|
}) |
|
this.loading = false |
|
}, |
|
async deleteHook(item, i) { |
|
try { |
|
if (item.id) { |
|
await this.$api.dbTableWebhook.delete(item.id) |
|
this.hooks.splice(i, 1) |
|
} else { |
|
this.hooks.splice(i, 1) |
|
} |
|
this.$toast.success('Hook deleted successfully').goAway(3000) |
|
if (!this.hooks.length) { |
|
this.hook = null |
|
} |
|
} catch (e) { |
|
this.$toast.error(e.message).goAway(3000) |
|
} |
|
|
|
this.$e('a:webhook:delete') |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.nc-hook { |
|
position: relative; |
|
|
|
.nc-hook-delete-icon { |
|
position: absolute; |
|
opacity: 0; |
|
transition: .3s opacity; |
|
right: 16px; |
|
top: 16px |
|
} |
|
|
|
&:hover .nc-hook-delete-icon { |
|
opacity: 1; |
|
} |
|
} |
|
</style>
|
|
|