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