2020-10-19 05:29:04 -05:00
|
|
|
<template>
|
|
|
|
<XWindow ref="window" :initial-width="400" :initial-height="500" :can-resize="true" @closed="$emit('closed')">
|
|
|
|
<template #header>
|
2021-04-20 09:22:59 -05:00
|
|
|
<i class="fas fa-exclamation-circle" style="margin-right: 0.5em;"></i>
|
2020-12-25 19:47:36 -06:00
|
|
|
<I18n :src="$ts.reportAbuseOf" tag="span">
|
2020-10-19 05:29:04 -05:00
|
|
|
<template #name>
|
|
|
|
<b><MkAcct :user="user"/></b>
|
|
|
|
</template>
|
2020-12-25 19:01:32 -06:00
|
|
|
</I18n>
|
2020-10-19 05:29:04 -05:00
|
|
|
</template>
|
2021-04-12 22:43:19 -05:00
|
|
|
<div class="dpvffvvy _monolithic_">
|
|
|
|
<div class="_section">
|
2021-08-06 08:29:19 -05:00
|
|
|
<MkTextarea v-model="comment">
|
|
|
|
<template #label>{{ $ts.details }}</template>
|
|
|
|
<template #caption>{{ $ts.fillAbuseReportDescription }}</template>
|
2021-04-10 22:31:24 -05:00
|
|
|
</MkTextarea>
|
2020-10-19 05:29:04 -05:00
|
|
|
</div>
|
2021-04-12 22:43:19 -05:00
|
|
|
<div class="_section">
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkButton primary full :disabled="comment.length === 0" @click="send">{{ $ts.send }}</MkButton>
|
2020-10-19 05:29:04 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</XWindow>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, markRaw } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import XWindow from '@/components/ui/window.vue';
|
|
|
|
import MkTextarea from '@/components/form/textarea.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import * as os from '@/os';
|
2020-10-19 05:29:04 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XWindow,
|
|
|
|
MkTextarea,
|
|
|
|
MkButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
initialComment: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['closed'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
comment: this.initialComment || '',
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
send() {
|
|
|
|
os.apiWithDialog('users/report-abuse', {
|
|
|
|
userId: this.user.id,
|
|
|
|
comment: this.comment,
|
|
|
|
}, undefined, res => {
|
2021-11-18 03:45:58 -06:00
|
|
|
os.alert({
|
2020-10-19 05:29:04 -05:00
|
|
|
type: 'success',
|
2020-12-25 19:47:36 -06:00
|
|
|
text: this.$ts.abuseReported
|
2020-10-19 05:29:04 -05:00
|
|
|
});
|
|
|
|
this.$refs.window.close();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.dpvffvvy {
|
2021-04-09 22:40:50 -05:00
|
|
|
--root-margin: 16px;
|
2020-10-19 05:29:04 -05:00
|
|
|
}
|
|
|
|
</style>
|