egirlskey/packages/frontend/src/components/MkAbuseReportWindow.vue

66 lines
1.6 KiB
Vue
Raw Normal View History

2020-10-19 10:29:04 +00:00
<template>
2022-07-04 13:27:21 +00:00
<XWindow ref="uiWindow" :initial-width="400" :initial-height="500" :can-resize="true" @closed="emit('closed')">
2020-10-19 10:29:04 +00:00
<template #header>
<i class="ti ti-exclamation-circle" style="margin-right: 0.5em;"></i>
<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>
2021-04-13 03:43:19 +00:00
<div class="dpvffvvy _monolithic_">
<div class="_section">
2021-08-06 13:29:19 +00:00
<MkTextarea v-model="comment">
<template #label>{{ i18n.ts.details }}</template>
<template #caption>{{ i18n.ts.fillAbuseReportDescription }}</template>
2021-04-11 03:31:24 +00:00
</MkTextarea>
2020-10-19 10:29:04 +00:00
</div>
2021-04-13 03:43:19 +00:00
<div class="_section">
<MkButton primary full :disabled="comment.length === 0" @click="send">{{ i18n.ts.send }}</MkButton>
2020-10-19 10:29:04 +00:00
</div>
</div>
</XWindow>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import * as Misskey from 'misskey-js';
import XWindow from '@/components/MkWindow.vue';
2021-11-11 17:02:25 +00:00
import MkTextarea from '@/components/form/textarea.vue';
import MkButton from '@/components/MkButton.vue';
2021-11-11 17:02:25 +00:00
import * as os from '@/os';
import { i18n } from '@/i18n';
2020-10-19 10:29:04 +00:00
const props = defineProps<{
user: Misskey.entities.User;
initialComment?: string;
}>();
2020-10-19 10:29:04 +00:00
const emit = defineEmits<{
(ev: 'closed'): void;
}>();
2020-10-19 10:29:04 +00:00
2022-07-04 13:27:21 +00:00
const uiWindow = ref<InstanceType<typeof XWindow>>();
const comment = ref(props.initialComment || '');
2020-10-19 10:29:04 +00:00
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,
});
2022-07-04 13:27:21 +00:00
uiWindow.value?.close();
emit('closed');
});
}
2020-10-19 10:29:04 +00:00
</script>
<style lang="scss" scoped>
2020-10-19 10:29:04 +00:00
.dpvffvvy {
--root-margin: 16px;
2020-10-19 10:29:04 +00:00
}
</style>