hippofish/packages/frontend/src/pages/settings/webhook.edit.vue

120 lines
3.6 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-01-06 05:40:17 +01:00
<div class="_gaps_m">
2023-01-07 07:09:46 +01:00
<MkInput v-model="name">
<template #label>{{ i18n.ts._webhookSettings.name }}</template>
2023-01-07 07:09:46 +01:00
</MkInput>
2023-01-07 07:09:46 +01:00
<MkInput v-model="url" type="url">
<template #label>URL</template>
2023-01-07 07:09:46 +01:00
</MkInput>
2023-01-07 07:09:46 +01:00
<MkInput v-model="secret">
<template #prefix><i class="ti ti-lock"></i></template>
<template #label>{{ i18n.ts._webhookSettings.secret }}</template>
2023-01-07 07:09:46 +01:00
</MkInput>
<FormSection>
<template #label>{{ i18n.ts._webhookSettings.events }}</template>
2023-01-06 05:40:17 +01:00
<div class="_gaps_s">
<MkSwitch v-model="event_follow">{{ i18n.ts._webhookSettings._events.follow }}</MkSwitch>
<MkSwitch v-model="event_followed">{{ i18n.ts._webhookSettings._events.followed }}</MkSwitch>
<MkSwitch v-model="event_note">{{ i18n.ts._webhookSettings._events.note }}</MkSwitch>
<MkSwitch v-model="event_reply">{{ i18n.ts._webhookSettings._events.reply }}</MkSwitch>
<MkSwitch v-model="event_renote">{{ i18n.ts._webhookSettings._events.renote }}</MkSwitch>
<MkSwitch v-model="event_reaction">{{ i18n.ts._webhookSettings._events.reaction }}</MkSwitch>
<MkSwitch v-model="event_mention">{{ i18n.ts._webhookSettings._events.mention }}</MkSwitch>
2023-01-05 13:04:56 +01:00
</div>
</FormSection>
<MkSwitch v-model="active">{{ i18n.ts._webhookSettings.active }}</MkSwitch>
2023-01-06 01:41:14 +01:00
<div class="_buttons">
<MkButton primary inline @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton>
<MkButton danger inline @click="del"><i class="ti ti-trash"></i> {{ i18n.ts.delete }}</MkButton>
</div>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
2023-01-07 07:09:46 +01:00
import MkInput from '@/components/MkInput.vue';
import FormSection from '@/components/form/section.vue';
2023-01-07 06:59:54 +01:00
import MkSwitch from '@/components/MkSwitch.vue';
2023-01-06 01:41:14 +01:00
import MkButton from '@/components/MkButton.vue';
2023-09-19 09:37:43 +02:00
import * as os from '@/os.js';
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
import { useRouter } from '@/router.js';
const router = useRouter();
2022-07-20 16:21:42 +02:00
const props = defineProps<{
webhookId: string;
}>();
const webhook = await os.api('i/webhooks/show', {
2022-07-20 16:21:42 +02:00
webhookId: props.webhookId,
});
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-13 01:34:57 +02:00
webhookId: props.webhookId,
on: events,
active,
});
}
async function del(): Promise<void> {
const { canceled } = await os.confirm({
type: 'warning',
text: i18n.t('deleteAreYouSure', { x: webhook.name }),
});
if (canceled) return;
await os.apiWithDialog('i/webhooks/delete', {
webhookId: props.webhookId,
});
router.push('/settings/webhook');
}
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: 'Edit webhook',
icon: 'ti ti-webhook',
});
</script>