fchat-rising/bbcode/UrlTagView.vue

68 lines
1.7 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>
2019-07-12 22:11:55 +00:00
<!-- No prevent for @click on purpose -->
2019-06-08 02:26:01 +00:00
<a
:href="url"
rel="nofollow noreferrer noopener"
target="_blank"
class="user-link"
2019-07-12 22:11:55 +00:00
@click="handleClick()"
@mouseover.prevent="show()"
@mouseenter.prevent="show()"
@mouseleave.prevent="dismiss()"
@mouseout.prevent="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;
2019-07-06 16:49:19 +00:00
@Hook('beforeDestroy')
beforeDestroy(): void {
2019-06-08 02:26:01 +00:00
this.dismiss();
}
2019-07-06 16:49:19 +00:00
@Hook('deactivated')
deactivate(): void {
2019-06-08 02:26:01 +00:00
this.dismiss();
}
2019-07-12 22:11:55 +00:00
dismiss(force: boolean = false): void {
EventBus.$emit('imagepreview-dismiss', {url: this.url, force});
2019-06-08 02:26:01 +00:00
}
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-07-12 22:11:55 +00:00
handleClick(): void {
this.dismiss(true);
}
2019-06-08 02:26:01 +00:00
}
</script>