akkoma-fe/src/components/mention_link/mention_link.js

96 lines
2.2 KiB
JavaScript
Raw Normal View History

2021-06-07 13:16:10 +00:00
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
import { mapGetters, mapState } from 'vuex'
2021-06-07 20:42:04 +00:00
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faAt
} from '@fortawesome/free-solid-svg-icons'
library.add(
faAt
)
2021-06-07 13:16:10 +00:00
const MentionLink = {
name: 'MentionLink',
props: {
url: {
required: true,
2021-06-07 13:16:10 +00:00
type: String
},
content: {
required: true,
type: String
},
2021-06-08 14:04:57 +00:00
userId: {
required: false,
type: String
},
userScreenName: {
required: false,
type: String
2021-06-07 13:16:10 +00:00
}
},
methods: {
onClick () {
2021-06-08 14:04:57 +00:00
const link = generateProfileLink(
this.userId || this.user.id,
this.userScreenName || this.user.screen_name
)
2021-06-07 13:16:10 +00:00
this.$router.push(link)
}
},
computed: {
user () {
2021-06-08 14:04:57 +00:00
return this.url && this.$store.getters.findUserByUrl(this.url)
2021-06-07 13:16:10 +00:00
},
isYou () {
// FIXME why user !== currentUser???
2021-06-08 14:04:57 +00:00
return this.user && this.user.screen_name === this.currentUser.screen_name
2021-06-07 13:16:10 +00:00
},
userName () {
2021-06-08 14:04:57 +00:00
return this.user && this.userNameFullUi.split('@')[0]
2021-06-07 13:16:10 +00:00
},
userNameFull () {
2021-06-08 14:04:57 +00:00
return this.user && this.user.screen_name
2021-06-07 13:16:10 +00:00
},
userNameFullUi () {
2021-06-08 14:04:57 +00:00
return this.user && this.user.screen_name_ui
2021-06-07 13:16:10 +00:00
},
highlight () {
2021-06-08 14:04:57 +00:00
return this.user && this.mergedConfig.highlight[this.user.screen_name]
2021-06-07 13:16:10 +00:00
},
2021-06-07 20:42:04 +00:00
highlightType () {
return this.highlight && ('-' + this.highlight.type)
2021-06-07 13:16:10 +00:00
},
2021-06-07 20:42:04 +00:00
highlightClass () {
if (this.highlight) return highlightClass(this.user)
2021-06-07 13:16:10 +00:00
},
style () {
2021-06-07 20:42:04 +00:00
if (this.highlight) {
const {
backgroundColor,
backgroundPosition,
backgroundImage,
...rest
} = highlightStyle(this.highlight)
return rest
}
2021-06-07 13:16:10 +00:00
},
2021-06-08 08:38:44 +00:00
classnames () {
return [
{
'-you': this.isYou,
'-highlighted': this.highlight
2021-06-08 08:38:44 +00:00
},
this.highlightType
]
},
2021-06-07 13:16:10 +00:00
...mapGetters(['mergedConfig']),
...mapState({
currentUser: state => state.users.currentUser
})
}
}
export default MentionLink