2018-04-09 20:44:37 +03:00
|
|
|
import Status from '../status/status.vue'
|
2019-02-02 15:33:02 -05:00
|
|
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
2019-03-05 14:01:49 -05:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2018-06-18 12:09:14 +03:00
|
|
|
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
2018-12-13 19:57:11 +03:00
|
|
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
2018-04-09 20:44:37 +03:00
|
|
|
|
|
|
|
const Notification = {
|
|
|
|
data () {
|
|
|
|
return {
|
2018-11-30 16:39:07 +03:00
|
|
|
userExpanded: false,
|
|
|
|
betterShadow: this.$store.state.interface.browserSupport.cssFilter
|
2018-04-09 20:44:37 +03:00
|
|
|
}
|
|
|
|
},
|
2018-12-28 21:39:54 +02:00
|
|
|
props: [ 'notification' ],
|
2018-04-09 20:44:37 +03:00
|
|
|
components: {
|
2019-03-05 14:01:49 -05:00
|
|
|
Status, UserAvatar, UserCard
|
2018-04-09 20:44:37 +03:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toggleUserExpanded () {
|
|
|
|
this.userExpanded = !this.userExpanded
|
2018-12-17 02:52:27 +03:00
|
|
|
},
|
|
|
|
userProfileLink (user) {
|
2018-12-26 14:50:48 +01:00
|
|
|
return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames)
|
2019-02-18 17:49:32 +03:00
|
|
|
},
|
|
|
|
getUser (notification) {
|
2019-04-12 10:49:22 +03:00
|
|
|
return this.$store.state.users.usersObject[notification.from_profile.id]
|
2018-04-09 20:44:37 +03:00
|
|
|
}
|
2018-06-18 12:09:14 +03:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
userClass () {
|
2019-03-31 21:59:18 -04:00
|
|
|
return highlightClass(this.notification.from_profile)
|
2018-06-18 12:09:14 +03:00
|
|
|
},
|
|
|
|
userStyle () {
|
2018-06-19 16:17:50 +03:00
|
|
|
const highlight = this.$store.state.config.highlight
|
2019-03-31 21:59:18 -04:00
|
|
|
const user = this.notification.from_profile
|
2018-08-05 05:18:04 +03:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2019-04-01 07:26:13 -07:00
|
|
|
},
|
|
|
|
userInStore () {
|
2019-04-01 12:22:49 -04:00
|
|
|
return this.$store.getters.findUser(this.notification.from_profile.id)
|
2019-04-01 07:26:13 -07:00
|
|
|
},
|
|
|
|
user () {
|
|
|
|
if (this.userInStore) {
|
|
|
|
return this.userInStore
|
|
|
|
}
|
2019-04-01 12:22:49 -04:00
|
|
|
return this.notification.from_profile
|
2018-06-19 16:17:50 +03:00
|
|
|
}
|
2018-04-09 20:44:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Notification
|