blob: 84ed3205064899434c97f8be932d888e6a585a36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<template>
<span class="MentionLink">
<a v-if="!user" v-html="content" href="url" class="original"/>
<span v-if="user" class="new" :style="style" :class="{ '-you': isYou }" >
<button class="button-unstyled short" @click.prevent="onClick">
<span class="shortName">@<span v-html="userName" /></span> <span v-if="isYou">(You)</span>
</button>
<span class="full" v-if="userName !== userNameFull">
@<span v-html="userNameFull" />
</span>
</span>
</span>
</template>
<script src="./mention_link.js"/>
<style lang="scss" src="./mention_link.scss"/>
|