fchat-rising/bbcode/UrlTagView.vue

62 lines
1.5 KiB
Vue
Raw Normal View History

2019-06-08 02:26:01 +00:00
<template>
<span>
2019-06-08 02:26:01 +00:00
<i class="fa fa-link"></i>
<a
:href="url"
rel="nofollow noreferrer noopener"
target="_blank"
class="user-link"
@mouseover="show()"
@mouseenter="show()"
@mouseleave="dismiss()"
@mouseout="dismiss()"
2019-07-04 19:34:21 +00:00
@click.middle.prevent="toggleStickyness()"
2019-06-08 02:26:01 +00:00
>{{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';
2019-06-29 01:37:41 +00:00
import {EventBus} from '../chat/event-bus';
2019-06-08 02:26:01 +00:00
// 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;
@Hook("beforeDestroy")
beforeDestroy(): void {
2019-06-08 02:26:01 +00:00
this.dismiss();
}
@Hook("deactivated")
deactivate(): void {
2019-06-08 02:26:01 +00:00
this.dismiss();
}
dismiss(): void {
2019-06-08 02:26:01 +00:00
EventBus.$emit('imagepreview-dismiss', {url: this.url});
}
show(): void {
2019-06-08 02:26:01 +00:00
EventBus.$emit('imagepreview-show', {url: this.url});
}
2019-07-04 19:34:21 +00:00
toggleStickyness(): void {
EventBus.$emit('imagepreview-toggle-stickyness', {url: this.url});
}
2019-06-08 02:26:01 +00:00
}
</script>