aboutsummaryrefslogtreecommitdiff
path: root/src/components/mention_link/mention_link.vue
blob: ea35631507d627854adf8fa0f27b2f56dfb5c408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<template>
  <span class="MentionLink">
    <!-- eslint-disable vue/no-v-html -->
    <a
      v-if="!user"
      href="url"
      class="original"
      v-html="content"
    />
    <!-- eslint-enable vue/no-v-html -->
    <span
      v-if="user"
      class="new"
      :style="style"
      :class="{ '-you': isYou }"
    >
      <button
        class="button-unstyled short"
        @click.prevent="onClick"
      >
        <!-- eslint-disable vue/no-v-html -->
        <span class="shortName">@<span v-html="userName" /></span> <span v-if="isYou">{{ $t('status.you')}}</span>
        <!-- eslint-enable vue/no-v-html -->
      </button>
      <span
        v-if="userName !== userNameFull"
        class="full"
      >
        <!-- eslint-disable vue/no-v-html -->
        @<span v-html="userNameFull" />
        <!-- eslint-enable vue/no-v-html -->
      </span>
    </span>
  </span>
</template>

<script src="./mention_link.js"/>

<style lang="scss" src="./mention_link.scss"/>