fchat-rising/chat/UrlTagView.vue

59 lines
1.3 KiB
Vue
Raw Normal View History

2019-06-08 02:26:01 +00:00
<template>
<span
@mouseover="show()"
@mouseleave="dismiss()"
>
<i class="fa fa-link"></i>
<a
:href="url"
rel="nofollow noreferrer noopener"
target="_blank"
class="user-link"
:title="url"
>{{text}}</a>
<span
class="link-domain bbcode-pseudo"
> [{{domain}}]</span>
</span>
</template>
<script lang="ts">
import {Component, Hook, Prop} from '@f-list/vue-ts';
import Vue from 'vue';
import {EventBus} from './event-bus';
// import core from './core';
@Component
export default class UrlTagView extends Vue {
@Prop({required: true})
readonly url!: string;
@Prop({required: true})
readonly text!: string;
@Prop({required: true})
readonly domain!: string;
@Prop()
hover!: boolean = false;
@Hook("beforeDestroy")
beforeDestroy() {
this.dismiss();
}
@Hook("deactivated")
deactivate() {
this.dismiss();
}
dismiss() {
EventBus.$emit('imagepreview-dismiss', {url: this.url});
}
show() {
EventBus.$emit('imagepreview-show', {url: this.url});
}
}
</script>