change styles for the dropdown, make things work nicely on mobile

This commit is contained in:
Shpuld Shpuldson 2020-07-03 12:56:31 +03:00
parent 961099d34a
commit 21d1f557f6
13 changed files with 204 additions and 66 deletions

View file

@ -1,18 +1,30 @@
import { mapState } from 'vuex'
const timelineRoutes = [
'friends',
'dms',
'public-timeline',
'public-external-timeline'
]
const NavPanel = {
created () {
if (this.currentUser && this.currentUser.locked) {
this.$store.dispatch('startFetchingFollowRequests')
}
},
computed: mapState({
currentUser: state => state.users.currentUser,
chat: state => state.chat.channel,
followRequestCount: state => state.api.followRequests.length,
privateMode: state => state.instance.private,
federating: state => state.instance.federating
})
computed: {
onTimelineRoute () {
return timelineRoutes.includes(this.$route.name)
},
...mapState({
currentUser: state => state.users.currentUser,
chat: state => state.chat.channel,
followRequestCount: state => state.api.followRequests.length,
privateMode: state => state.instance.private,
federating: state => state.instance.federating
})
}
}
export default NavPanel