fchat-rising/chat/ads/ConversationAdSettings.vue

140 lines
3.9 KiB
Vue
Raw Normal View History

2020-03-22 18:39:45 +00:00
<template>
<modal :action="`Ads for ${conversation.name}`" @submit="submit" ref="dialog" @open="load()" dialogClass="w-100"
2020-03-22 18:39:45 +00:00
:buttonText="l('conversationSettings.save')">
2020-11-21 20:41:08 +00:00
<div>
[] Randomize the order of the ads every time you start automated posting.
</div>
2020-03-22 18:39:45 +00:00
<div class="form-group ad-list" v-for="(ad, index) in ads">
<label :for="'ad' + conversation.key + '-' + index" class="control-label">Ad #{{(index + 1)}}
<a v-if="(index > 0)" @click="moveAdUp(index)" title="Move Up"><i class="fa fa-arrow-up"></i></a>
<a v-if="(index < ads.length - 1)" @click="moveAdDown(index)" title="Move Down"><i class="fa fa-arrow-down"></i></a>
<a @click="removeAd(index)" title="Remove Ad"><i class="fas fa-times-circle"></i></a>
2020-03-22 18:39:45 +00:00
</label>
2020-11-27 20:58:14 +00:00
<editor :id="'ad' + conversation.key + '-' + index" v-model="ads[index]" :hasToolbar="true" class="form-control" :maxlength="core.connection.vars.lfrp_max">
2020-10-24 20:57:49 +00:00
</editor>
2020-03-22 18:39:45 +00:00
</div>
<button class="btn btn-outline-secondary" @click="addAd()">Add Another</button>
</modal>
</template>
<script lang="ts">
import {Component, Prop} from '@f-list/vue-ts';
import CustomDialog from '../../components/custom_dialog';
import Modal from '../../components/Modal.vue';
import {Conversation} from '../interfaces';
import l from '../localize';
2020-10-24 20:57:49 +00:00
import {Editor} from '../bbcode';
2020-11-27 20:58:14 +00:00
import core from '../core';
2020-03-22 18:39:45 +00:00
@Component({
2020-10-24 20:57:49 +00:00
components: {modal: Modal, editor: Editor}
2020-03-22 18:39:45 +00:00
})
export default class ConversationAdSettings extends CustomDialog {
@Prop({required: true})
readonly conversation!: Conversation;
l = l;
setting = Conversation.Setting;
ads!: string[];
2020-11-27 20:58:14 +00:00
core = core;
2020-03-22 18:39:45 +00:00
load(): void {
const settings = this.conversation.settings;
this.ads = settings.adSettings.ads.slice(0);
if (this.ads.length === 0) {
this.ads.push('');
}
}
submit(): void {
this.conversation.settings = {
notify: this.conversation.settings.notify,
highlight: this.conversation.settings.highlight,
highlightWords: this.conversation.settings.highlightWords,
joinMessages: this.conversation.settings.joinMessages,
defaultHighlights: this.conversation.settings.defaultHighlights,
adSettings: {
ads: this.ads.map((ad: string) => ad.trim()).filter((ad: string) => (ad.length > 0))
}
};
}
addAd(): void {
this.ads.push('');
}
removeAd(index: number): void {
if (confirm('Are you sure you wish to remove this ad?')) {
this.ads.splice(index, 1);
}
}
moveAdUp(index: number): void {
const ad = this.ads.splice(index, 1);
this.ads.splice(index - 1, 0, ad[0]);
}
moveAdDown(index: number): void {
const ad = this.ads.splice(index, 1);
this.ads.splice(index + 1, 0, ad[0]);
}
}
</script>
<style lang="scss">
.w-100 {
min-width: 70%;
}
.form-group.ad-list {
label {
font-size: 140%;
a {
2020-03-22 18:39:45 +00:00
padding-right: 0.3rem;
opacity:0.3;
font-size: 70%;
&:hover {
opacity:0.6
}
}
}
.bbcode-preview {
margin-top: 0;
border: 1px solid;
padding: 5px;
border-radius: 0 5px 5px 5px;
background: var(--input-bg);
border-color: var(--secondary);
2020-03-22 18:39:45 +00:00
}
.bbcode-editor {
border: none;
background: none;
height: auto;
textarea {
width: 100%;
color: var(--input-color);
background-color: var(--input-bg);
border-radius: 0 5px 5px 5px;
}
2020-03-22 18:39:45 +00:00
}
}
2020-03-22 18:39:45 +00:00
</style>