2022-04-02 09:28:49 +03:00
|
|
|
<template>
|
2023-01-06 06:40:17 +02:00
|
|
|
<div class="_gaps_m">
|
2023-01-05 14:04:56 +02:00
|
|
|
<FormInput v-model="name">
|
2022-04-02 09:28:49 +03:00
|
|
|
<template #label>Name</template>
|
|
|
|
</FormInput>
|
|
|
|
|
2023-01-05 14:04:56 +02:00
|
|
|
<FormInput v-model="url" type="url">
|
2022-04-02 09:28:49 +03:00
|
|
|
<template #label>URL</template>
|
|
|
|
</FormInput>
|
|
|
|
|
2023-01-05 14:04:56 +02:00
|
|
|
<FormInput v-model="secret">
|
2022-12-19 12:01:30 +02:00
|
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
2022-04-02 09:28:49 +03:00
|
|
|
<template #label>Secret</template>
|
|
|
|
</FormInput>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>Events</template>
|
|
|
|
|
2023-01-06 06:40:17 +02:00
|
|
|
<div class="_gaps_s">
|
2023-01-05 14:04:56 +02:00
|
|
|
<FormSwitch v-model="event_follow">Follow</FormSwitch>
|
|
|
|
<FormSwitch v-model="event_followed">Followed</FormSwitch>
|
|
|
|
<FormSwitch v-model="event_note">Note</FormSwitch>
|
|
|
|
<FormSwitch v-model="event_reply">Reply</FormSwitch>
|
|
|
|
<FormSwitch v-model="event_renote">Renote</FormSwitch>
|
|
|
|
<FormSwitch v-model="event_reaction">Reaction</FormSwitch>
|
|
|
|
<FormSwitch v-model="event_mention">Mention</FormSwitch>
|
|
|
|
</div>
|
2022-04-02 09:28:49 +03:00
|
|
|
</FormSection>
|
|
|
|
|
2023-01-06 02:41:14 +02:00
|
|
|
<div class="_buttons">
|
|
|
|
<MkButton primary inline @click="create"><i class="ti ti-check"></i> {{ i18n.ts.create }}</MkButton>
|
2022-04-02 09:28:49 +03: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';
|
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
2023-01-06 02:41:14 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-04-02 09:28:49 +03:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-04-02 09:28:49 +03:00
|
|
|
|
|
|
|
let name = $ref('');
|
|
|
|
let url = $ref('');
|
|
|
|
let secret = $ref('');
|
|
|
|
|
|
|
|
let event_follow = $ref(true);
|
|
|
|
let event_followed = $ref(true);
|
|
|
|
let event_note = $ref(true);
|
|
|
|
let event_reply = $ref(true);
|
|
|
|
let event_renote = $ref(true);
|
|
|
|
let event_reaction = $ref(true);
|
|
|
|
let event_mention = $ref(true);
|
|
|
|
|
|
|
|
async function create(): 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/create', {
|
|
|
|
name,
|
|
|
|
url,
|
|
|
|
secret,
|
|
|
|
on: events,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: 'Create new webhook',
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-webhook',
|
2022-04-02 09:28:49 +03:00
|
|
|
});
|
|
|
|
</script>
|