2019-02-02 19:23:16 +00:00
|
|
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
2019-03-19 18:36:27 +00:00
|
|
|
import RemoteFollow from '../remote_follow/remote_follow.vue'
|
2019-04-25 08:19:22 +00:00
|
|
|
import ProgressButton from '../progress_button/progress_button.vue'
|
2019-02-18 14:49:32 +00:00
|
|
|
import ModerationTools from '../moderation_tools/moderation_tools.vue'
|
2017-11-20 20:45:09 +00:00
|
|
|
import { hex2rgb } from '../../services/color_convert/color_convert.js'
|
2019-02-10 04:05:23 +00:00
|
|
|
import { requestFollow, requestUnfollow } from '../../services/follow_manipulate/follow_manipulate'
|
2018-12-13 16:57:11 +00:00
|
|
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
2017-11-20 20:45:09 +00:00
|
|
|
|
|
|
|
export default {
|
2019-07-25 19:14:44 +00:00
|
|
|
props: [ 'user', 'switcher', 'selected', 'hideBio', 'rounded', 'bordered', 'allowZoomingAvatar' ],
|
2018-09-03 23:32:25 +00:00
|
|
|
data () {
|
|
|
|
return {
|
2018-12-04 09:50:29 +00:00
|
|
|
followRequestInProgress: false,
|
|
|
|
followRequestSent: false,
|
2018-10-16 13:09:29 +00:00
|
|
|
hideUserStatsLocal: typeof this.$store.state.config.hideUserStats === 'undefined'
|
|
|
|
? this.$store.state.instance.hideUserStats
|
2018-11-30 13:39:07 +00:00
|
|
|
: this.$store.state.config.hideUserStats,
|
|
|
|
betterShadow: this.$store.state.interface.browserSupport.cssFilter
|
2018-09-03 23:32:25 +00:00
|
|
|
}
|
|
|
|
},
|
2019-03-07 22:35:30 +00:00
|
|
|
created () {
|
|
|
|
this.$store.dispatch('fetchUserRelationship', this.user.id)
|
|
|
|
},
|
2017-11-20 20:45:09 +00:00
|
|
|
computed: {
|
2019-03-05 07:32:23 +00:00
|
|
|
classes () {
|
|
|
|
return [{
|
2019-07-05 07:02:14 +00:00
|
|
|
'user-card-rounded-t': this.rounded === 'top', // set border-top-left-radius and border-top-right-radius
|
|
|
|
'user-card-rounded': this.rounded === true, // set border-radius for all sides
|
|
|
|
'user-card-bordered': this.bordered === true // set border for all sides
|
2019-03-05 07:32:23 +00:00
|
|
|
}]
|
|
|
|
},
|
|
|
|
style () {
|
2018-11-26 18:22:44 +00:00
|
|
|
const color = this.$store.state.config.customTheme.colors
|
2019-07-05 07:02:14 +00:00
|
|
|
? this.$store.state.config.customTheme.colors.bg // v2
|
|
|
|
: this.$store.state.config.colors.bg // v1
|
2018-11-26 17:25:14 +00:00
|
|
|
|
2017-11-20 20:45:09 +00:00
|
|
|
if (color) {
|
2018-11-21 15:22:05 +00:00
|
|
|
const rgb = (typeof color === 'string') ? hex2rgb(color) : color
|
2018-05-12 13:07:18 +00:00
|
|
|
const tintColor = `rgba(${Math.floor(rgb.r)}, ${Math.floor(rgb.g)}, ${Math.floor(rgb.b)}, .5)`
|
2018-12-13 17:41:23 +00:00
|
|
|
|
|
|
|
const gradient = [
|
|
|
|
[tintColor, this.hideBio ? '60%' : ''],
|
|
|
|
this.hideBio ? [
|
|
|
|
color, '100%'
|
|
|
|
] : [
|
|
|
|
tintColor, ''
|
|
|
|
]
|
|
|
|
].map(_ => _.join(' ')).join(', ')
|
|
|
|
|
2017-11-20 20:45:09 +00:00
|
|
|
return {
|
2018-05-12 13:07:18 +00:00
|
|
|
backgroundColor: `rgb(${Math.floor(rgb.r * 0.53)}, ${Math.floor(rgb.g * 0.56)}, ${Math.floor(rgb.b * 0.59)})`,
|
|
|
|
backgroundImage: [
|
2018-12-13 17:41:23 +00:00
|
|
|
`linear-gradient(to bottom, ${gradient})`,
|
2018-05-12 13:07:18 +00:00
|
|
|
`url(${this.user.cover_photo})`
|
|
|
|
].join(', ')
|
2017-11-20 20:45:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
isOtherUser () {
|
|
|
|
return this.user.id !== this.$store.state.users.currentUser.id
|
|
|
|
},
|
2018-02-01 19:30:49 +00:00
|
|
|
subscribeUrl () {
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
const serverUrl = new URL(this.user.statusnet_profile_url)
|
|
|
|
return `${serverUrl.protocol}//${serverUrl.host}/main/ostatus`
|
|
|
|
},
|
2017-11-20 20:45:09 +00:00
|
|
|
loggedIn () {
|
|
|
|
return this.$store.state.users.currentUser
|
|
|
|
},
|
|
|
|
dailyAvg () {
|
|
|
|
const days = Math.ceil((new Date() - new Date(this.user.created_at)) / (60 * 60 * 24 * 1000))
|
|
|
|
return Math.round(this.user.statuses_count / days)
|
2018-06-18 08:36:58 +00:00
|
|
|
},
|
2018-08-05 02:18:04 +00:00
|
|
|
userHighlightType: {
|
2018-06-18 08:36:58 +00:00
|
|
|
get () {
|
2018-08-05 02:18:04 +00:00
|
|
|
const data = this.$store.state.config.highlight[this.user.screen_name]
|
2019-07-06 21:54:17 +00:00
|
|
|
return (data && data.type) || 'disabled'
|
2018-06-18 08:36:58 +00:00
|
|
|
},
|
2018-08-05 02:18:04 +00:00
|
|
|
set (type) {
|
|
|
|
const data = this.$store.state.config.highlight[this.user.screen_name]
|
|
|
|
if (type !== 'disabled') {
|
2019-07-06 21:54:17 +00:00
|
|
|
this.$store.dispatch('setHighlight', { user: this.user.screen_name, color: (data && data.color) || '#FFFFFF', type })
|
2018-06-18 08:36:58 +00:00
|
|
|
} else {
|
2018-06-19 13:17:50 +00:00
|
|
|
this.$store.dispatch('setHighlight', { user: this.user.screen_name, color: undefined })
|
2018-06-18 08:36:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
userHighlightColor: {
|
|
|
|
get () {
|
2018-08-05 02:18:04 +00:00
|
|
|
const data = this.$store.state.config.highlight[this.user.screen_name]
|
|
|
|
return data && data.color
|
2018-06-18 08:36:58 +00:00
|
|
|
},
|
2018-06-19 13:17:50 +00:00
|
|
|
set (color) {
|
|
|
|
this.$store.dispatch('setHighlight', { user: this.user.screen_name, color })
|
2018-06-18 08:36:58 +00:00
|
|
|
}
|
2019-02-04 14:03:35 +00:00
|
|
|
},
|
|
|
|
visibleRole () {
|
2019-02-18 14:49:32 +00:00
|
|
|
const rights = this.user.rights
|
|
|
|
if (!rights) { return }
|
|
|
|
const validRole = rights.admin || rights.moderator
|
|
|
|
const roleTitle = rights.admin ? 'admin' : 'moderator'
|
|
|
|
return validRole && roleTitle
|
2017-11-20 20:45:09 +00:00
|
|
|
}
|
|
|
|
},
|
2018-03-11 23:31:33 +00:00
|
|
|
components: {
|
2019-03-19 18:36:27 +00:00
|
|
|
UserAvatar,
|
2019-02-18 14:49:32 +00:00
|
|
|
RemoteFollow,
|
2019-04-16 14:13:26 +00:00
|
|
|
ModerationTools,
|
2019-04-25 08:19:22 +00:00
|
|
|
ProgressButton
|
2018-03-11 23:31:33 +00:00
|
|
|
},
|
2017-11-20 20:45:09 +00:00
|
|
|
methods: {
|
|
|
|
followUser () {
|
2019-02-15 15:52:34 +00:00
|
|
|
const store = this.$store
|
2018-12-04 09:50:29 +00:00
|
|
|
this.followRequestInProgress = true
|
2019-07-05 07:02:14 +00:00
|
|
|
requestFollow(this.user, store).then(({ sent }) => {
|
2019-02-10 04:05:23 +00:00
|
|
|
this.followRequestInProgress = false
|
|
|
|
this.followRequestSent = sent
|
|
|
|
})
|
2017-11-20 20:45:09 +00:00
|
|
|
},
|
|
|
|
unfollowUser () {
|
2019-02-15 15:52:34 +00:00
|
|
|
const store = this.$store
|
2018-12-04 09:50:29 +00:00
|
|
|
this.followRequestInProgress = true
|
2019-02-15 15:52:34 +00:00
|
|
|
requestUnfollow(this.user, store).then(() => {
|
2019-02-10 04:05:23 +00:00
|
|
|
this.followRequestInProgress = false
|
2019-02-18 19:39:35 +00:00
|
|
|
store.commit('removeStatus', { timeline: 'friends', userId: this.user.id })
|
2019-02-10 04:05:23 +00:00
|
|
|
})
|
2017-11-20 20:45:09 +00:00
|
|
|
},
|
|
|
|
blockUser () {
|
2019-02-24 08:02:04 +00:00
|
|
|
this.$store.dispatch('blockUser', this.user.id)
|
2017-11-20 20:45:09 +00:00
|
|
|
},
|
|
|
|
unblockUser () {
|
2019-02-24 08:02:04 +00:00
|
|
|
this.$store.dispatch('unblockUser', this.user.id)
|
|
|
|
},
|
2019-03-01 16:37:34 +00:00
|
|
|
muteUser () {
|
2019-02-24 08:02:04 +00:00
|
|
|
this.$store.dispatch('muteUser', this.user.id)
|
|
|
|
},
|
2019-03-01 16:37:34 +00:00
|
|
|
unmuteUser () {
|
2019-02-24 08:02:04 +00:00
|
|
|
this.$store.dispatch('unmuteUser', this.user.id)
|
2017-11-20 20:45:09 +00:00
|
|
|
},
|
2019-04-25 08:19:22 +00:00
|
|
|
subscribeUser () {
|
2019-04-25 08:30:08 +00:00
|
|
|
return this.$store.dispatch('subscribeUser', this.user.id)
|
2019-04-25 08:19:22 +00:00
|
|
|
},
|
|
|
|
unsubscribeUser () {
|
2019-04-25 08:30:08 +00:00
|
|
|
return this.$store.dispatch('unsubscribeUser', this.user.id)
|
2019-04-25 08:19:22 +00:00
|
|
|
},
|
2017-11-20 20:45:09 +00:00
|
|
|
setProfileView (v) {
|
2018-04-15 05:04:16 +00:00
|
|
|
if (this.switcher) {
|
|
|
|
const store = this.$store
|
|
|
|
store.commit('setProfileView', { v })
|
|
|
|
}
|
2018-12-04 08:38:00 +00:00
|
|
|
},
|
2019-07-05 07:02:14 +00:00
|
|
|
linkClicked ({ target }) {
|
2018-12-04 08:38:00 +00:00
|
|
|
if (target.tagName === 'SPAN') {
|
|
|
|
target = target.parentNode
|
|
|
|
}
|
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
2018-12-15 03:16:44 +00:00
|
|
|
},
|
|
|
|
userProfileLink (user) {
|
2018-12-26 13:50:48 +00:00
|
|
|
return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames)
|
2019-03-19 08:53:11 +00:00
|
|
|
},
|
|
|
|
reportUser () {
|
|
|
|
this.$store.dispatch('openUserReportingModal', this.user.id)
|
2019-07-22 20:58:20 +00:00
|
|
|
},
|
2019-07-25 19:14:44 +00:00
|
|
|
zoomAvatar () {
|
2019-07-22 20:58:20 +00:00
|
|
|
const attachment = {
|
|
|
|
url: this.user.profile_image_url_original,
|
|
|
|
mimetype: 'image'
|
|
|
|
}
|
|
|
|
this.$store.dispatch('setMedia', [attachment])
|
|
|
|
this.$store.dispatch('setCurrent', attachment)
|
2017-11-20 20:45:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|