fchat-rising/chat/ads/AdView.vue

79 lines
2.0 KiB
Vue
Raw Normal View History

2019-07-08 23:27:14 +00:00
<template>
<modal :buttons="false" ref="dialog" @open="onOpen" @close="onClose" style="width:98%" dialogClass="ads-dialog">
<template slot="title">
2019-07-15 16:59:16 +00:00
Channel Ads for <user :character="character">{{character.name}}</user>
2019-07-08 23:27:14 +00:00
</template>
<div class="row ad-viewer" ref="pageBody">
<template v-for="message in messages">
<h3>#{{message.channelName}} <span class="message-time">{{formatTime(message.datePosted)}}</span></h3>
2020-03-17 18:06:08 +00:00
<div class="border-bottom">
<bbcode :text="message.message"></bbcode>
</div>
2019-07-08 23:27:14 +00:00
</template>
</div>
</modal>
</template>
<script lang="ts">
import * as _ from 'lodash';
import { Component, Hook, Prop, Watch } from '@f-list/vue-ts';
2020-03-15 16:23:39 +00:00
import CustomDialog from '../../components/custom_dialog';
import Modal from '../../components/Modal.vue';
import { Character } from '../../fchat/interfaces';
import { AdCachedPosting } from '../../learn/ad-cache';
import core from '../core';
import {formatTime} from '../common';
import UserView from '../UserView.vue';
2020-03-17 18:06:08 +00:00
import { BBCodeView } from '../../bbcode/view';
2019-07-08 23:27:14 +00:00
@Component({
2020-03-17 18:06:08 +00:00
components: {modal: Modal, user: UserView, bbcode: BBCodeView(core.bbCodeParser)}
2019-07-08 23:27:14 +00:00
})
export default class AdView extends CustomDialog {
@Prop({required: true})
readonly character!: Character;
messages: AdCachedPosting[] = [];
formatTime = formatTime;
@Watch('character')
onNameUpdate(): void {
this.update();
}
@Hook('mounted')
onMounted(): void {
this.update();
}
update(): void {
if (!this.character) {
this.messages = [];
return;
}
const cache = core.cache.adCache.get(this.character.name);
2020-03-15 02:31:28 +00:00
this.messages = ((cache) ? _.takeRight(cache.posts, 10).reverse() : []) as AdCachedPosting[];
2019-07-08 23:27:14 +00:00
}
async onOpen(): Promise<void> {
// empty
2020-03-15 14:02:31 +00:00
return;
2019-07-08 23:27:14 +00:00
}
async onClose(): Promise<void> {
// empty
2020-03-15 14:02:31 +00:00
return;
2019-07-08 23:27:14 +00:00
}
}
</script>