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

68 lines
1.7 KiB
Vue
Raw Normal View History

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>
<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>
2023-01-06 00:59:17 +00:00
<MkSpacer :margin-min="20" :margin-max="28">
2023-05-14 01:21:56 +00:00
<div class="_gaps_m" :class="$style.root">
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>
<script setup lang="ts">
import { ref, shallowRef } from 'vue';
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';
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
2023-01-06 00:59:17 +00:00
const uiWindow = shallowRef<InstanceType<typeof MkWindow>>();
2023-02-22 06:28:17 +00:00
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>
2023-05-14 01:21:56 +00:00
<style lang="scss" module>
.root {
--root-margin: 16px;
2020-10-19 10:29:04 +00:00
}
</style>