iceshrimp-legacy/packages/client/src/components/MkAbuseReportWindow.vue

87 lines
1.7 KiB
Vue
Raw Normal View History

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>
<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
const props = defineProps<{
user: Misskey.entities.User;
initialComment?: string;
}>();
2020-10-19 12:29:04 +02:00
const emit = defineEmits<{
2023-04-08 02:01:42 +02:00
(ev: "closed"): void;
}>();
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
function send() {
2023-04-08 02:01:42 +02:00
os.apiWithDialog(
"users/report-abuse",
{
userId: props.user.id,
comment: comment.value,
},
2023-07-06 03:28:27 +02:00
undefined,
2023-04-08 02:01:42 +02:00
).then((res) => {
os.alert({
2023-04-08 02:01:42 +02:00
type: "success",
text: i18n.ts.abuseReported,
});
2022-07-04 15:27:21 +02:00
uiWindow.value?.close();
2023-04-08 02:01:42 +02:00
emit("closed");
});
}
2020-10-19 12:29:04 +02:00
</script>
<style lang="scss" scoped>
.dpvffvvy {
--root-margin: 16px;
2020-10-19 12:29:04 +02:00
}
</style>