2024-06-08 08:34:19 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { defineAsyncComponent } from 'vue';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
|
|
|
|
export type SystemWebhookEventType = 'abuseReport' | 'abuseReportResolved';
|
|
|
|
|
|
|
|
export type MkSystemWebhookEditorProps = {
|
|
|
|
mode: 'create' | 'edit';
|
|
|
|
id?: string;
|
|
|
|
requiredEvents?: SystemWebhookEventType[];
|
|
|
|
};
|
|
|
|
|
|
|
|
export type MkSystemWebhookResult = {
|
|
|
|
id?: string;
|
|
|
|
isActive: boolean;
|
|
|
|
name: string;
|
|
|
|
on: SystemWebhookEventType[];
|
|
|
|
url: string;
|
|
|
|
secret: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export async function showSystemWebhookEditorDialog(props: MkSystemWebhookEditorProps): Promise<MkSystemWebhookResult | null> {
|
2024-07-27 11:09:57 +02:00
|
|
|
const { result } = await new Promise<{ result: MkSystemWebhookResult | null }>(async resolve => {
|
|
|
|
const { dispose } = os.popup(
|
2024-06-08 08:34:19 +02:00
|
|
|
defineAsyncComponent(() => import('@/components/MkSystemWebhookEditor.vue')),
|
|
|
|
props,
|
|
|
|
{
|
|
|
|
submitted: (ev: MkSystemWebhookResult) => {
|
2024-07-27 11:09:57 +02:00
|
|
|
resolve({ result: ev });
|
|
|
|
},
|
|
|
|
canceled: () => {
|
|
|
|
resolve({ result: null });
|
2024-06-08 08:34:19 +02:00
|
|
|
},
|
|
|
|
closed: () => {
|
2024-07-27 11:09:57 +02:00
|
|
|
dispose();
|
2024-06-08 08:34:19 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|