2017-12-05 01:47:27 +00:00
|
|
|
<template>
|
2018-03-04 02:32:26 +00:00
|
|
|
<modal id="reportDialog" :action="'Report character' + name" :disabled="!dataValid || submitting" @submit.prevent="submitReport">
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Type</label>
|
|
|
|
<select v-select="validTypes" v-model="type" class="form-control"></select>
|
|
|
|
</div>
|
|
|
|
<div v-if="type !== 'takedown'">
|
|
|
|
<div class="form-group" v-if="type === 'profile'">
|
|
|
|
<label>Violation Type</label>
|
|
|
|
<select v-select="violationTypes" v-model="violation" class="form-control"></select>
|
2017-12-05 01:47:27 +00:00
|
|
|
</div>
|
2018-03-04 02:32:26 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<label>Your Character</label>
|
|
|
|
<character-select v-model="ourCharacter"></character-select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Reason/Message</label>
|
|
|
|
<bbcode-editor v-model="message" :maxlength="45000" :classes="'form-control'"></bbcode-editor>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-show="type === 'takedown'" class="alert alert-info">
|
|
|
|
Please file art takedowns from the <a :href="ticketUrl">tickets page.</a>
|
2017-12-05 01:47:27 +00:00
|
|
|
</div>
|
2018-03-04 02:32:26 +00:00
|
|
|
</modal>
|
2017-12-05 01:47:27 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Component from 'vue-class-component';
|
|
|
|
import {Prop} from 'vue-property-decorator';
|
2018-03-04 02:32:26 +00:00
|
|
|
import CustomDialog from '../../components/custom_dialog';
|
|
|
|
import Modal from '../../components/Modal.vue';
|
2017-12-05 01:47:27 +00:00
|
|
|
import * as Utils from '../utils';
|
|
|
|
import {methods} from './data_store';
|
|
|
|
import {Character, SelectItem} from './interfaces';
|
|
|
|
|
2018-03-04 02:32:26 +00:00
|
|
|
@Component({
|
|
|
|
components: {modal: Modal}
|
|
|
|
})
|
|
|
|
export default class ReportDialog extends CustomDialog {
|
2017-12-05 01:47:27 +00:00
|
|
|
@Prop({required: true})
|
2018-03-04 02:32:26 +00:00
|
|
|
private readonly character!: Character;
|
2017-12-05 01:47:27 +00:00
|
|
|
|
|
|
|
private ourCharacter = Utils.Settings.defaultCharacter;
|
|
|
|
private type = '';
|
|
|
|
private violation = '';
|
|
|
|
private message = '';
|
|
|
|
|
|
|
|
submitting = false;
|
|
|
|
|
|
|
|
ticketUrl = `${Utils.siteDomain}tickets/new`;
|
|
|
|
|
|
|
|
validTypes: ReadonlyArray<SelectItem> = [
|
|
|
|
{text: 'None', value: ''},
|
|
|
|
{text: 'Profile Violation', value: 'profile'},
|
|
|
|
{text: 'Name Request', value: 'name_request'},
|
|
|
|
{text: 'Art Takedown', value: 'takedown'},
|
|
|
|
{text: 'Other', value: 'other'}
|
|
|
|
];
|
|
|
|
violationTypes: ReadonlyArray<string> = [
|
|
|
|
'Real life images on underage character',
|
|
|
|
'Real life animal images on sexual character',
|
|
|
|
'Amateur/farmed real life images',
|
|
|
|
'Defamation',
|
|
|
|
'OOC Kinks',
|
|
|
|
'Real life contact information',
|
|
|
|
'Solicitation for real life contact',
|
|
|
|
'Other'
|
|
|
|
];
|
|
|
|
|
|
|
|
get name(): string {
|
|
|
|
return this.character.character.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
get dataValid(): boolean {
|
|
|
|
if(this.type === '' || this.type === 'takedown')
|
|
|
|
return false;
|
|
|
|
if(this.message === '')
|
|
|
|
return false;
|
|
|
|
if(this.type === 'profile' && this.violation === '')
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
async submitReport(): Promise<void> {
|
|
|
|
try {
|
|
|
|
this.submitting = true;
|
|
|
|
const message = (this.type === 'profile' ? `Reporting character for violation: ${this.violation}\n\n` : '') + this.message;
|
|
|
|
await methods.characterReport({
|
|
|
|
subject: (this.type === 'name_request' ? 'Requesting name: ' : 'Reporting character: ') + this.name,
|
|
|
|
message,
|
|
|
|
character: this.ourCharacter,
|
|
|
|
type: this.type,
|
|
|
|
url: Utils.characterURL(this.name),
|
|
|
|
reported_character: this.character.character.id
|
|
|
|
});
|
|
|
|
this.submitting = false;
|
2018-03-04 02:32:26 +00:00
|
|
|
this.hide();
|
2017-12-05 01:47:27 +00:00
|
|
|
Utils.flashSuccess('Character reported.');
|
|
|
|
} catch(e) {
|
|
|
|
this.submitting = false;
|
|
|
|
Utils.ajaxError(e, 'Unable to report character');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|