summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkAbuseReportWindow.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/components/MkAbuseReportWindow.vue')
-rw-r--r--packages/client/src/components/MkAbuseReportWindow.vue65
1 files changed, 0 insertions, 65 deletions
diff --git a/packages/client/src/components/MkAbuseReportWindow.vue b/packages/client/src/components/MkAbuseReportWindow.vue
deleted file mode 100644
index 039f77c859..0000000000
--- a/packages/client/src/components/MkAbuseReportWindow.vue
+++ /dev/null
@@ -1,65 +0,0 @@
-<template>
-<XWindow ref="uiWindow" :initial-width="400" :initial-height="500" :can-resize="true" @closed="emit('closed')">
- <template #header>
- <i class="ti ti-exclamation-circle" style="margin-right: 0.5em;"></i>
- <I18n :src="i18n.ts.reportAbuseOf" tag="span">
- <template #name>
- <b><MkAcct :user="user"/></b>
- </template>
- </I18n>
- </template>
- <div class="dpvffvvy _monolithic_">
- <div class="_section">
- <MkTextarea v-model="comment">
- <template #label>{{ i18n.ts.details }}</template>
- <template #caption>{{ i18n.ts.fillAbuseReportDescription }}</template>
- </MkTextarea>
- </div>
- <div class="_section">
- <MkButton primary full :disabled="comment.length === 0" @click="send">{{ i18n.ts.send }}</MkButton>
- </div>
- </div>
-</XWindow>
-</template>
-
-<script setup lang="ts">
-import { ref } from 'vue';
-import * as Misskey from 'misskey-js';
-import XWindow from '@/components/MkWindow.vue';
-import MkTextarea from '@/components/form/textarea.vue';
-import MkButton from '@/components/MkButton.vue';
-import * as os from '@/os';
-import { i18n } from '@/i18n';
-
-const props = defineProps<{
- user: Misskey.entities.User;
- initialComment?: string;
-}>();
-
-const emit = defineEmits<{
- (ev: 'closed'): void;
-}>();
-
-const uiWindow = ref<InstanceType<typeof XWindow>>();
-const comment = ref(props.initialComment || '');
-
-function send() {
- os.apiWithDialog('users/report-abuse', {
- userId: props.user.id,
- comment: comment.value,
- }, undefined).then(res => {
- os.alert({
- type: 'success',
- text: i18n.ts.abuseReported,
- });
- uiWindow.value?.close();
- emit('closed');
- });
-}
-</script>
-
-<style lang="scss" scoped>
-.dpvffvvy {
- --root-margin: 16px;
-}
-</style>