hippofish/packages/client/src/pages/settings/webhook.new.vue

100 lines
2.6 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<div class="_formRoot">
<FormInput v-model="name" class="_formBlock">
<template #label>Name</template>
</FormInput>
2023-04-08 02:01:42 +02:00
<FormInput v-model="url" type="url" class="_formBlock">
<template #label>URL</template>
</FormInput>
2023-04-08 02:01:42 +02:00
<FormInput v-model="secret" class="_formBlock">
<template #prefix><i class="ph-lock ph-bold ph-lg"></i></template>
<template #label>Secret</template>
</FormInput>
2023-04-08 02:01:42 +02:00
<FormSection>
<template #label>Events</template>
2023-04-08 02:01:42 +02:00
<FormSwitch v-model="event_follow" class="_formBlock"
>Follow</FormSwitch
>
<FormSwitch v-model="event_followed" class="_formBlock"
>Followed</FormSwitch
>
<FormSwitch v-model="event_note" class="_formBlock"
2023-05-24 02:59:58 +02:00
>Posts</FormSwitch
2023-04-08 02:01:42 +02:00
>
<FormSwitch v-model="event_reply" class="_formBlock"
2023-05-24 02:59:58 +02:00
>Replies</FormSwitch
2023-04-08 02:01:42 +02:00
>
<FormSwitch v-model="event_renote" class="_formBlock"
2023-05-24 02:59:58 +02:00
>Boosts</FormSwitch
2023-04-08 02:01:42 +02:00
>
<FormSwitch v-model="event_reaction" class="_formBlock"
>Reaction</FormSwitch
>
<FormSwitch v-model="event_mention" class="_formBlock"
>Mention</FormSwitch
>
</FormSection>
2023-04-08 02:01:42 +02:00
<div
class="_formBlock"
style="display: flex; gap: var(--margin); flex-wrap: wrap"
>
<FormButton primary inline @click="create"
><i class="ph-check ph-bold ph-lg"></i>
{{ i18n.ts.create }}</FormButton
>
</div>
</div>
</template>
<script lang="ts" setup>
import { ref } from "vue";
2023-04-08 02:01:42 +02:00
import FormInput from "@/components/form/input.vue";
import FormSection from "@/components/form/section.vue";
import FormSwitch from "@/components/form/switch.vue";
import FormButton from "@/components/MkButton.vue";
import * as os from "@/os";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
const name = ref("");
const url = ref("");
const secret = ref("");
const event_follow = ref(true);
const event_followed = ref(true);
const event_note = ref(true);
const event_reply = ref(true);
const event_renote = ref(true);
const event_reaction = ref(true);
const event_mention = ref(true);
async function create(): Promise<void> {
const events = [];
if (event_follow.value) events.push("follow");
if (event_followed.value) events.push("followed");
if (event_note.value) events.push("note");
if (event_reply.value) events.push("reply");
if (event_renote.value) events.push("renote");
if (event_reaction.value) events.push("reaction");
if (event_mention.value) events.push("mention");
2023-04-08 02:01:42 +02:00
os.apiWithDialog("i/webhooks/create", {
name: name.value,
url: url.value,
secret: secret.value,
on: events,
});
}
definePageMetadata({
2023-04-08 02:01:42 +02:00
title: "Create new webhook",
2023-05-24 02:59:58 +02:00
icon: "ph-webhooks-logo ph-bold ph-lg",
});
</script>