2021-06-08 11:34:47 +00:00
|
|
|
import MentionLink from 'src/components/mention_link/mention_link.vue'
|
|
|
|
import { mapGetters } from 'vuex'
|
|
|
|
|
|
|
|
const MentionsLine = {
|
|
|
|
name: 'MentionsLine',
|
|
|
|
props: {
|
2021-06-10 09:08:31 +00:00
|
|
|
mentions: {
|
2021-06-08 11:34:47 +00:00
|
|
|
required: true,
|
2021-06-08 14:04:57 +00:00
|
|
|
type: Array
|
2021-06-08 11:34:47 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
data: () => ({ expanded: false }),
|
|
|
|
components: {
|
|
|
|
MentionLink
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
limit () {
|
2021-08-11 23:49:37 +00:00
|
|
|
return 2
|
2021-06-08 11:34:47 +00:00
|
|
|
},
|
2021-06-10 09:08:31 +00:00
|
|
|
mentionsComputed () {
|
|
|
|
return this.mentions.slice(0, this.limit)
|
2021-06-08 11:34:47 +00:00
|
|
|
},
|
|
|
|
extraMentions () {
|
2021-06-10 09:08:31 +00:00
|
|
|
return this.mentions.slice(this.limit)
|
2021-06-08 11:34:47 +00:00
|
|
|
},
|
|
|
|
manyMentions () {
|
|
|
|
return this.extraMentions.length > 0
|
|
|
|
},
|
2021-06-08 11:51:42 +00:00
|
|
|
...mapGetters(['mergedConfig'])
|
2021-06-08 11:34:47 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toggleShowMore () {
|
|
|
|
this.expanded = !this.expanded
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MentionsLine
|