2022-04-02 08:28:49 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormInput v-model="name" class="_formBlock">
|
|
|
|
<template #label>Name</template>
|
|
|
|
</FormInput>
|
|
|
|
|
|
|
|
<FormInput v-model="url" type="url" class="_formBlock">
|
|
|
|
<template #label>URL</template>
|
|
|
|
</FormInput>
|
|
|
|
|
|
|
|
<FormInput v-model="secret" class="_formBlock">
|
|
|
|
<template #prefix><i class="ph-lock ph-bold ph-lg"></i></template>
|
|
|
|
<template #label>Secret</template>
|
|
|
|
</FormInput>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>Events</template>
|
|
|
|
|
|
|
|
<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"
|
|
|
|
>Note</FormSwitch
|
|
|
|
>
|
|
|
|
<FormSwitch v-model="event_reply" class="_formBlock"
|
|
|
|
>Reply</FormSwitch
|
|
|
|
>
|
|
|
|
<FormSwitch v-model="event_renote" class="_formBlock"
|
|
|
|
>Renote</FormSwitch
|
|
|
|
>
|
|
|
|
<FormSwitch v-model="event_reaction" class="_formBlock"
|
|
|
|
>Reaction</FormSwitch
|
|
|
|
>
|
|
|
|
<FormSwitch v-model="event_mention" class="_formBlock"
|
|
|
|
>Mention</FormSwitch
|
|
|
|
>
|
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSwitch v-model="active" class="_formBlock">Active</FormSwitch>
|
|
|
|
|
|
|
|
<div
|
|
|
|
class="_formBlock"
|
|
|
|
style="display: flex; gap: var(--margin); flex-wrap: wrap"
|
|
|
|
>
|
|
|
|
<FormButton primary inline @click="save"
|
|
|
|
><i class="ph-check ph-bold ph-lg"></i>
|
|
|
|
{{ i18n.ts.save }}</FormButton
|
|
|
|
>
|
|
|
|
</div>
|
2022-04-02 08:28:49 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {} from "vue";
|
|
|
|
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";
|
2022-05-26 15:53:09 +02:00
|
|
|
|
2022-07-20 16:21:42 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
webhookId: string;
|
|
|
|
}>();
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const webhook = await os.api("i/webhooks/show", {
|
2022-07-20 16:21:42 +02:00
|
|
|
webhookId: props.webhookId,
|
2022-04-02 08:28:49 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
let name = $ref(webhook.name);
|
|
|
|
let url = $ref(webhook.url);
|
|
|
|
let secret = $ref(webhook.secret);
|
|
|
|
let active = $ref(webhook.active);
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
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"));
|
2022-04-02 08:28:49 +02:00
|
|
|
|
|
|
|
async function save(): Promise<void> {
|
|
|
|
const events = [];
|
2023-04-08 02:01:42 +02:00
|
|
|
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", {
|
2022-04-02 08:28:49 +02:00
|
|
|
name,
|
|
|
|
url,
|
|
|
|
secret,
|
|
|
|
on: events,
|
|
|
|
active,
|
|
|
|
});
|
|
|
|
}
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
2023-04-08 02:01:42 +02:00
|
|
|
title: "Edit webhook",
|
|
|
|
icon: "ph-lightning ph-bold ph-lg",
|
2022-06-20 10:38:49 +02:00
|
|
|
});
|
2022-04-02 08:28:49 +02:00
|
|
|
</script>
|