pleroma-fe/src/components/mentions_line/mentions_line.js
2026-01-08 17:42:20 +02:00

38 lines
747 B
JavaScript

import { mapGetters } from 'vuex'
import MentionLink from 'src/components/mention_link/mention_link.vue'
export const MENTIONS_LIMIT = 5
const MentionsLine = {
name: 'MentionsLine',
props: {
mentions: {
required: true,
type: Array,
},
},
data: () => ({ expanded: false }),
components: {
MentionLink,
},
computed: {
mentionsComputed() {
return this.mentions.slice(0, MENTIONS_LIMIT)
},
extraMentions() {
return this.mentions.slice(MENTIONS_LIMIT)
},
manyMentions() {
return this.extraMentions.length > 0
},
...mapGetters(['mergedConfig']),
},
methods: {
toggleShowMore() {
this.expanded = !this.expanded
},
},
}
export default MentionsLine