2022-04-02 06:28:49 +00:00
|
|
|
<template>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-01-05 12:04:56 +00:00
|
|
|
<FormInput v-model="name">
|
2022-04-02 06:28:49 +00:00
|
|
|
<template #label>Name</template>
|
|
|
|
</FormInput>
|
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<FormInput v-model="url" type="url">
|
2022-04-02 06:28:49 +00:00
|
|
|
<template #label>URL</template>
|
|
|
|
</FormInput>
|
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<FormInput v-model="secret">
|
2022-12-19 10:01:30 +00:00
|
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
2022-04-02 06:28:49 +00:00
|
|
|
<template #label>Secret</template>
|
|
|
|
</FormInput>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>Events</template>
|
|
|
|
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_s">
|
2023-01-07 05:59:54 +00:00
|
|
|
<MkSwitch v-model="event_follow">Follow</MkSwitch>
|
|
|
|
<MkSwitch v-model="event_followed">Followed</MkSwitch>
|
|
|
|
<MkSwitch v-model="event_note">Note</MkSwitch>
|
|
|
|
<MkSwitch v-model="event_reply">Reply</MkSwitch>
|
|
|
|
<MkSwitch v-model="event_renote">Renote</MkSwitch>
|
|
|
|
<MkSwitch v-model="event_reaction">Reaction</MkSwitch>
|
|
|
|
<MkSwitch v-model="event_mention">Mention</MkSwitch>
|
2023-01-05 12:04:56 +00:00
|
|
|
</div>
|
2022-04-02 06:28:49 +00:00
|
|
|
</FormSection>
|
|
|
|
|
2023-01-07 05:59:54 +00:00
|
|
|
<MkSwitch v-model="active">Active</MkSwitch>
|
2022-04-02 06:28:49 +00:00
|
|
|
|
2023-01-06 00:41:14 +00:00
|
|
|
<div class="_buttons">
|
|
|
|
<MkButton primary inline @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton>
|
2022-04-02 06:28:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
2023-01-07 05:59:54 +00:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-01-06 00:41:14 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-04-02 06:28:49 +00:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-05-26 13:53:09 +00:00
|
|
|
|
2022-07-20 14:21:42 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
webhookId: string;
|
|
|
|
}>();
|
|
|
|
|
2022-04-02 06:28:49 +00:00
|
|
|
const webhook = await os.api('i/webhooks/show', {
|
2022-07-20 14:21:42 +00:00
|
|
|
webhookId: props.webhookId,
|
2022-04-02 06:28:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
let name = $ref(webhook.name);
|
|
|
|
let url = $ref(webhook.url);
|
|
|
|
let secret = $ref(webhook.secret);
|
|
|
|
let active = $ref(webhook.active);
|
|
|
|
|
|
|
|
let event_follow = $ref(webhook.on.includes('follow'));
|
|
|
|
let event_followed = $ref(webhook.on.includes('followed'));
|
|
|
|
let event_note = $ref(webhook.on.includes('note'));
|
|
|
|
let event_reply = $ref(webhook.on.includes('reply'));
|
|
|
|
let event_renote = $ref(webhook.on.includes('renote'));
|
|
|
|
let event_reaction = $ref(webhook.on.includes('reaction'));
|
|
|
|
let event_mention = $ref(webhook.on.includes('mention'));
|
|
|
|
|
|
|
|
async function save(): Promise<void> {
|
|
|
|
const events = [];
|
|
|
|
if (event_follow) events.push('follow');
|
|
|
|
if (event_followed) events.push('followed');
|
|
|
|
if (event_note) events.push('note');
|
|
|
|
if (event_reply) events.push('reply');
|
|
|
|
if (event_renote) events.push('renote');
|
|
|
|
if (event_reaction) events.push('reaction');
|
|
|
|
if (event_mention) events.push('mention');
|
|
|
|
|
|
|
|
os.apiWithDialog('i/webhooks/update', {
|
|
|
|
name,
|
|
|
|
url,
|
|
|
|
secret,
|
2022-10-12 23:34:57 +00:00
|
|
|
webhookId: props.webhookId,
|
2022-04-02 06:28:49 +00:00
|
|
|
on: events,
|
|
|
|
active,
|
|
|
|
});
|
|
|
|
}
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: 'Edit webhook',
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-webhook',
|
2022-06-20 08:38:49 +00:00
|
|
|
});
|
2022-04-02 06:28:49 +00:00
|
|
|
</script>
|