2020-10-19 12:29:04 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<XWindow
|
|
|
|
ref="uiWindow"
|
|
|
|
:initial-width="400"
|
|
|
|
:initial-height="500"
|
|
|
|
:can-resize="true"
|
|
|
|
@closed="emit('closed')"
|
|
|
|
>
|
|
|
|
<template #header>
|
|
|
|
<i
|
|
|
|
class="ph-warning-circle ph-bold ph-lg"
|
|
|
|
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>
|
2020-10-19 12:29:04 +02:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
</XWindow>
|
2020-10-19 12:29:04 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
<script setup lang="ts">
|
2023-04-08 02:01:42 +02:00
|
|
|
import { ref } from "vue";
|
|
|
|
import * as Misskey from "calckey-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";
|
2020-10-19 12:29:04 +02:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
user: Misskey.entities.User;
|
|
|
|
initialComment?: string;
|
|
|
|
}>();
|
2020-10-19 12:29:04 +02:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
const emit = defineEmits<{
|
2023-04-08 02:01:42 +02:00
|
|
|
(ev: "closed"): void;
|
2022-01-10 16:05:18 +01:00
|
|
|
}>();
|
2020-10-19 12:29:04 +02:00
|
|
|
|
2022-07-04 15:27:21 +02:00
|
|
|
const uiWindow = ref<InstanceType<typeof XWindow>>();
|
2023-04-08 02:01:42 +02:00
|
|
|
const comment = ref(props.initialComment || "");
|
2020-10-19 12:29:04 +02:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
function send() {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.apiWithDialog(
|
|
|
|
"users/report-abuse",
|
|
|
|
{
|
|
|
|
userId: props.user.id,
|
|
|
|
comment: comment.value,
|
|
|
|
},
|
|
|
|
undefined
|
|
|
|
).then((res) => {
|
2022-01-10 16:05:18 +01:00
|
|
|
os.alert({
|
2023-04-08 02:01:42 +02:00
|
|
|
type: "success",
|
|
|
|
text: i18n.ts.abuseReported,
|
2022-01-10 16:05:18 +01:00
|
|
|
});
|
2022-07-04 15:27:21 +02:00
|
|
|
uiWindow.value?.close();
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("closed");
|
2022-01-10 16:05:18 +01:00
|
|
|
});
|
|
|
|
}
|
2020-10-19 12:29:04 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.dpvffvvy {
|
2021-04-10 05:40:50 +02:00
|
|
|
--root-margin: 16px;
|
2020-10-19 12:29:04 +02:00
|
|
|
}
|
|
|
|
</style>
|