2020-07-07 14:34:35 +00:00
|
|
|
import { timelineNames } from '../timeline_menu/timeline_menu.js'
|
2020-05-07 13:10:53 +00:00
|
|
|
import { mapState, mapGetters } from 'vuex'
|
2020-07-03 09:56:31 +00:00
|
|
|
|
2020-10-19 16:38:49 +00:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import {
|
|
|
|
faUsers,
|
2020-10-20 21:25:59 +00:00
|
|
|
faGlobe,
|
2020-10-19 16:38:49 +00:00
|
|
|
faBookmark,
|
|
|
|
faEnvelope,
|
|
|
|
faHome,
|
|
|
|
faComments,
|
|
|
|
faBell,
|
|
|
|
faInfoCircle
|
|
|
|
} from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faUsers,
|
2020-10-20 21:25:59 +00:00
|
|
|
faGlobe,
|
2020-10-19 16:38:49 +00:00
|
|
|
faBookmark,
|
|
|
|
faEnvelope,
|
|
|
|
faHome,
|
|
|
|
faComments,
|
|
|
|
faBell,
|
|
|
|
faInfoCircle
|
|
|
|
)
|
|
|
|
|
2016-11-06 19:10:20 +00:00
|
|
|
const NavPanel = {
|
2019-02-27 19:38:10 +00:00
|
|
|
created () {
|
|
|
|
if (this.currentUser && this.currentUser.locked) {
|
2020-01-21 15:51:49 +00:00
|
|
|
this.$store.dispatch('startFetchingFollowRequests')
|
2019-02-27 19:38:10 +00:00
|
|
|
}
|
|
|
|
},
|
2020-07-03 09:56:31 +00:00
|
|
|
computed: {
|
|
|
|
onTimelineRoute () {
|
2020-07-07 14:34:35 +00:00
|
|
|
return !!timelineNames()[this.$route.name]
|
2020-07-03 09:56:31 +00:00
|
|
|
},
|
2020-07-07 15:20:37 +00:00
|
|
|
timelinesRoute () {
|
2020-07-23 12:09:32 +00:00
|
|
|
if (this.$store.state.interface.lastTimeline) {
|
|
|
|
return this.$store.state.interface.lastTimeline
|
|
|
|
}
|
2020-07-07 15:20:37 +00:00
|
|
|
return this.currentUser ? 'friends' : 'public-timeline'
|
|
|
|
},
|
2020-07-03 09:56:31 +00:00
|
|
|
...mapState({
|
|
|
|
currentUser: state => state.users.currentUser,
|
|
|
|
followRequestCount: state => state.api.followRequests.length,
|
|
|
|
privateMode: state => state.instance.private,
|
2020-05-07 13:10:53 +00:00
|
|
|
federating: state => state.instance.federating,
|
|
|
|
pleromaChatMessagesAvailable: state => state.instance.pleromaChatMessagesAvailable
|
|
|
|
}),
|
|
|
|
...mapGetters(['unreadChatCount'])
|
2020-07-03 09:56:31 +00:00
|
|
|
}
|
2016-11-06 19:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|