pleroma-fe/src/components/mention_link/mention_link.vue

45 lines
1.2 KiB
Vue
Raw Normal View History

2021-06-07 23:16:10 +10:00
<template>
2021-06-08 19:58:28 +10:00
<span
class="MentionLink"
:class="{ '-oldPlace': oldPlace }"
>
2021-06-07 23:37:12 +10:00
<!-- 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"
2021-06-08 18:38:44 +10:00
:class="classnames"
2021-06-07 23:37:12 +10:00
>
<button
2021-06-08 19:58:28 +10:00
class="short"
:class="[{ '-sublime': !highlight }, oldStyle ? 'button-unstyled' : 'button-default']"
2021-06-07 23:37:12 +10:00
@click.prevent="onClick"
>
<!-- eslint-disable vue/no-v-html -->
2021-06-08 06:42:04 +10:00
<span class="shortName"><span class="userName" v-html="userName" /></span><span class="you" v-if="isYou">{{ $t('status.you')}}</span>
2021-06-07 23:37:12 +10:00
<!-- eslint-enable vue/no-v-html -->
2021-06-07 23:16:10 +10:00
</button>
2021-06-07 23:37:12 +10:00
<span
v-if="userName !== userNameFull"
2021-06-08 06:42:04 +10:00
class="full popover-default"
:class="[highlightType]"
2021-06-07 23:37:12 +10:00
>
<!-- eslint-disable vue/no-v-html -->
2021-06-08 06:42:04 +10:00
<span class="userNameFull" v-html="userNameFull" />
2021-06-07 23:37:12 +10:00
<!-- eslint-enable vue/no-v-html -->
2021-06-07 23:16:10 +10:00
</span>
</span>
</span>
</template>
<script src="./mention_link.js"/>
<style lang="scss" src="./mention_link.scss"/>