pleroma-fe/src/components/notification/notification.js

115 lines
3.3 KiB
JavaScript
Raw Normal View History

2020-05-26 00:01:25 +02:00
import StatusContent from '../status_content/status_content.vue'
2020-05-07 15:10:53 +02:00
import { mapState } from 'vuex'
import Status from '../status/status.vue'
import UserAvatar from '../user_avatar/user_avatar.vue'
2019-03-05 20:01:49 +01:00
import UserCard from '../user_card/user_card.vue'
2019-06-18 22:28:31 +02:00
import Timeago from '../timeago/timeago.vue'
import { isStatusNotification } from '../../services/notification_utils/notification_utils.js'
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faCheck,
faTimes,
faStar,
faRetweet,
faUserPlus,
faEyeSlash,
faUser,
faSuitcaseRolling
} from '@fortawesome/free-solid-svg-icons'
library.add(
faCheck,
faTimes,
faStar,
faRetweet,
faUserPlus,
faUser,
faEyeSlash,
faSuitcaseRolling
)
const Notification = {
data () {
return {
userExpanded: false,
betterShadow: this.$store.state.interface.browserSupport.cssFilter,
unmuted: false
}
},
props: [ 'notification' ],
components: {
2020-05-26 00:01:25 +02:00
StatusContent,
2019-06-18 22:28:31 +02:00
UserAvatar,
UserCard,
2020-05-26 00:01:25 +02:00
Timeago,
2020-05-26 00:06:34 +02:00
Status
},
methods: {
toggleUserExpanded () {
this.userExpanded = !this.userExpanded
2018-12-17 00:52:27 +01:00
},
generateUserProfileLink (user) {
return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames)
2019-02-18 15:49:32 +01:00
},
getUser (notification) {
2019-04-12 09:49:22 +02:00
return this.$store.state.users.usersObject[notification.from_profile.id]
},
toggleMute () {
this.unmuted = !this.unmuted
},
approveUser () {
this.$store.state.api.backendInteractor.approveUser({ id: this.user.id })
this.$store.dispatch('removeFollowRequest', this.user)
this.$store.dispatch('markSingleNotificationAsSeen', { id: this.notification.id })
this.$store.dispatch('updateNotification', {
id: this.notification.id,
updater: notification => {
notification.type = 'follow'
}
})
},
denyUser () {
this.$store.state.api.backendInteractor.denyUser({ id: this.user.id })
.then(() => {
this.$store.dispatch('dismissNotificationLocal', { id: this.notification.id })
this.$store.dispatch('removeFollowRequest', this.user)
})
}
},
computed: {
userClass () {
2019-04-01 03:59:18 +02:00
return highlightClass(this.notification.from_profile)
},
userStyle () {
const highlight = this.$store.getters.mergedConfig.highlight
2019-04-01 03:59:18 +02:00
const user = this.notification.from_profile
return highlightStyle(highlight[user.screen_name])
2019-04-01 16:26:13 +02:00
},
user () {
2019-12-11 10:48:18 +01:00
return this.$store.getters.findUser(this.notification.from_profile.id)
},
userProfileLink () {
2019-09-10 22:21:52 +02:00
return this.generateUserProfileLink(this.user)
},
2019-12-10 20:02:25 +01:00
targetUser () {
2019-12-11 10:48:18 +01:00
return this.$store.getters.findUser(this.notification.target.id)
2019-12-10 20:02:25 +01:00
},
targetUserProfileLink () {
return this.generateUserProfileLink(this.targetUser)
},
needMute () {
return this.$store.getters.relationship(this.user.id).muting
},
isStatusNotification () {
return isStatusNotification(this.notification.type)
2020-05-07 15:10:53 +02:00
},
...mapState({
currentUser: state => state.users.currentUser
})
}
}
export default Notification