2020-10-19 10:29:04 +00:00
|
|
|
<template>
|
2023-01-06 00:59:17 +00:00
|
|
|
<MkWindow ref="uiWindow" :initial-width="400" :initial-height="500" :can-resize="true" @closed="emit('closed')">
|
2020-10-19 10:29:04 +00:00
|
|
|
<template #header>
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-exclamation-circle" style="margin-right: 0.5em;"></i>
|
2022-01-28 02:39:49 +00:00
|
|
|
<I18n :src="i18n.ts.reportAbuseOf" tag="span">
|
2020-10-19 10:29:04 +00:00
|
|
|
<template #name>
|
|
|
|
<b><MkAcct :user="user"/></b>
|
|
|
|
</template>
|
2020-12-26 01:01:32 +00:00
|
|
|
</I18n>
|
2020-10-19 10:29:04 +00:00
|
|
|
</template>
|
2023-01-06 00:59:17 +00:00
|
|
|
<MkSpacer :margin-min="20" :margin-max="28">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="dpvffvvy _gaps_m">
|
2023-01-06 00:59:17 +00:00
|
|
|
<div class="">
|
|
|
|
<MkTextarea v-model="comment">
|
|
|
|
<template #label>{{ i18n.ts.details }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.fillAbuseReportDescription }}</template>
|
|
|
|
</MkTextarea>
|
|
|
|
</div>
|
|
|
|
<div class="">
|
|
|
|
<MkButton primary full :disabled="comment.length === 0" @click="send">{{ i18n.ts.send }}</MkButton>
|
|
|
|
</div>
|
2020-10-19 10:29:04 +00:00
|
|
|
</div>
|
2023-01-06 00:59:17 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</MkWindow>
|
2020-10-19 10:29:04 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-10 15:05:18 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-03 04:37:32 +00:00
|
|
|
import { ref, shallowRef } from 'vue';
|
2022-01-10 15:05:18 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-01-06 00:59:17 +00:00
|
|
|
import MkWindow from '@/components/MkWindow.vue';
|
2023-01-07 06:09:46 +00:00
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-01-10 15:05:18 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-10-19 10:29:04 +00:00
|
|
|
|
2022-01-10 15:05:18 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
user: Misskey.entities.User;
|
|
|
|
initialComment?: string;
|
|
|
|
}>();
|
2020-10-19 10:29:04 +00:00
|
|
|
|
2022-01-10 15:05:18 +00:00
|
|
|
const emit = defineEmits<{
|
2022-05-26 13:53:09 +00:00
|
|
|
(ev: 'closed'): void;
|
2022-01-10 15:05:18 +00:00
|
|
|
}>();
|
2020-10-19 10:29:04 +00:00
|
|
|
|
2023-01-06 00:59:17 +00:00
|
|
|
const uiWindow = shallowRef<InstanceType<typeof MkWindow>>();
|
2022-01-10 15:05:18 +00:00
|
|
|
const comment = ref(props.initialComment || '');
|
2020-10-19 10:29:04 +00:00
|
|
|
|
2022-01-10 15:05:18 +00:00
|
|
|
function send() {
|
|
|
|
os.apiWithDialog('users/report-abuse', {
|
|
|
|
userId: props.user.id,
|
|
|
|
comment: comment.value,
|
|
|
|
}, undefined).then(res => {
|
|
|
|
os.alert({
|
|
|
|
type: 'success',
|
2022-12-22 07:01:59 +00:00
|
|
|
text: i18n.ts.abuseReported,
|
2022-01-10 15:05:18 +00:00
|
|
|
});
|
2022-07-04 13:27:21 +00:00
|
|
|
uiWindow.value?.close();
|
2022-01-10 15:05:18 +00:00
|
|
|
emit('closed');
|
|
|
|
});
|
|
|
|
}
|
2020-10-19 10:29:04 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-10-19 10:29:04 +00:00
|
|
|
.dpvffvvy {
|
2021-04-10 03:40:50 +00:00
|
|
|
--root-margin: 16px;
|
2020-10-19 10:29:04 +00:00
|
|
|
}
|
|
|
|
</style>
|