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>
|
|
|
|
<Fa :icon="faExclamationCircle" style="margin-right: 0.5em;"/>
|
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>
|
|
|
|
<div class="dpvffvvy">
|
|
|
|
<div class="_section">
|
|
|
|
<div class="_content">
|
|
|
|
<MkTextarea v-model:value="comment">
|
2020-12-25 19:47:36 -06:00
|
|
|
<span>{{ $ts.details }}</span>
|
|
|
|
<template #desc>{{ $ts.fillAbuseReportDescription }}</template>
|
2020-10-19 05:29:04 -05:00
|
|
|
</MkTextarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="_section">
|
|
|
|
<div class="_content">
|
2020-12-25 19:47:36 -06:00
|
|
|
<MkButton @click="send" primary full :disabled="comment.length === 0">{{ $ts.send }}</MkButton>
|
2020-10-19 05:29:04 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</XWindow>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, markRaw } from 'vue';
|
|
|
|
import { faExclamationCircle } from '@fortawesome/free-solid-svg-icons';
|
2021-03-23 03:30:14 -05:00
|
|
|
import XWindow from '@client/components/ui/window.vue';
|
|
|
|
import MkTextarea from '@client/components/ui/textarea.vue';
|
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
|
|
import * as os from '@client/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 || '',
|
|
|
|
faExclamationCircle,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
send() {
|
|
|
|
os.apiWithDialog('users/report-abuse', {
|
|
|
|
userId: this.user.id,
|
|
|
|
comment: this.comment,
|
|
|
|
}, undefined, res => {
|
|
|
|
os.dialog({
|
|
|
|
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 {
|
|
|
|
--section-padding: 16px;
|
|
|
|
}
|
|
|
|
</style>
|