2016-10-27 09:01:48 -07:00
|
|
|
import UserPanel from './components/user_panel/user_panel.vue'
|
2016-11-06 11:11:23 -08:00
|
|
|
import NavPanel from './components/nav_panel/nav_panel.vue'
|
2016-11-27 10:44:56 -08:00
|
|
|
import Notifications from './components/notifications/notifications.vue'
|
2018-02-03 07:27:33 -08:00
|
|
|
import InstanceSpecificPanel from './components/instance_specific_panel/instance_specific_panel.vue'
|
2018-09-02 23:57:22 -07:00
|
|
|
import FeaturesPanel from './components/features_panel/features_panel.vue'
|
2018-09-02 22:43:10 -07:00
|
|
|
import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue'
|
2018-01-26 06:11:34 -08:00
|
|
|
import ChatPanel from './components/chat_panel/chat_panel.vue'
|
2020-05-03 07:36:12 -07:00
|
|
|
import SettingsModal from './components/settings_modal/settings_modal.vue'
|
2019-01-14 09:23:13 -08:00
|
|
|
import MediaModal from './components/media_modal/media_modal.vue'
|
2018-12-15 09:13:01 -08:00
|
|
|
import SideDrawer from './components/side_drawer/side_drawer.vue'
|
2019-09-19 10:59:34 -07:00
|
|
|
import MobilePostStatusButton from './components/mobile_post_status_button/mobile_post_status_button.vue'
|
2019-03-12 14:50:54 -07:00
|
|
|
import MobileNav from './components/mobile_nav/mobile_nav.vue'
|
2020-10-29 12:13:31 -07:00
|
|
|
import DesktopNav from './components/desktop_nav/desktop_nav.vue'
|
2019-03-19 01:53:11 -07:00
|
|
|
import UserReportingModal from './components/user_reporting_modal/user_reporting_modal.vue'
|
2019-09-19 10:27:37 -07:00
|
|
|
import PostStatusModal from './components/post_status_modal/post_status_modal.vue'
|
2020-07-02 00:40:41 -07:00
|
|
|
import GlobalNoticeList from './components/global_notice_list/global_notice_list.vue'
|
2020-05-07 06:10:53 -07:00
|
|
|
import { windowWidth, windowHeight } from './services/window_utils/window_utils'
|
2020-12-17 15:01:58 -08:00
|
|
|
import { mapGetters } from 'vuex'
|
2016-10-26 10:03:55 -07:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'app',
|
|
|
|
components: {
|
2016-11-06 11:11:23 -08:00
|
|
|
UserPanel,
|
2016-11-27 10:44:56 -08:00
|
|
|
NavPanel,
|
2017-05-12 09:54:12 -07:00
|
|
|
Notifications,
|
2018-02-11 06:12:05 -08:00
|
|
|
InstanceSpecificPanel,
|
2018-09-02 23:57:22 -07:00
|
|
|
FeaturesPanel,
|
2018-09-02 22:55:40 -07:00
|
|
|
WhoToFollowPanel,
|
2018-12-15 09:13:01 -08:00
|
|
|
ChatPanel,
|
2019-01-14 09:23:13 -08:00
|
|
|
MediaModal,
|
2019-03-11 09:51:37 -07:00
|
|
|
SideDrawer,
|
2019-09-19 10:59:34 -07:00
|
|
|
MobilePostStatusButton,
|
2019-03-19 01:53:11 -07:00
|
|
|
MobileNav,
|
2020-10-29 12:13:31 -07:00
|
|
|
DesktopNav,
|
2020-05-03 07:36:12 -07:00
|
|
|
SettingsModal,
|
2019-09-19 10:27:37 -07:00
|
|
|
UserReportingModal,
|
2020-07-02 00:40:41 -07:00
|
|
|
PostStatusModal,
|
|
|
|
GlobalNoticeList
|
2016-11-03 08:58:32 -07:00
|
|
|
},
|
2017-01-17 08:27:39 -08:00
|
|
|
data: () => ({
|
2020-11-01 06:44:57 -08:00
|
|
|
mobileActivePanel: 'timeline'
|
2017-01-17 08:27:39 -08:00
|
|
|
}),
|
2018-08-25 03:12:33 -07:00
|
|
|
created () {
|
|
|
|
// Load the locale from the storage
|
2020-06-08 08:22:07 -07:00
|
|
|
const val = this.$store.getters.mergedConfig.interfaceLanguage
|
|
|
|
this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val })
|
2019-03-03 06:33:40 -08:00
|
|
|
window.addEventListener('resize', this.updateMobileState)
|
|
|
|
},
|
|
|
|
destroyed () {
|
|
|
|
window.removeEventListener('resize', this.updateMobileState)
|
2018-08-25 03:12:33 -07:00
|
|
|
},
|
2016-11-03 08:58:32 -07:00
|
|
|
computed: {
|
2016-11-27 10:44:56 -08:00
|
|
|
currentUser () { return this.$store.state.users.currentUser },
|
2020-12-17 15:01:58 -08:00
|
|
|
userBackground () { return this.currentUser.background_image },
|
|
|
|
instanceBackground () {
|
|
|
|
return this.mergedConfig.hideInstanceWallpaper
|
|
|
|
? null
|
|
|
|
: this.$store.state.instance.background
|
2017-02-16 07:59:06 -08:00
|
|
|
},
|
2020-12-17 15:01:58 -08:00
|
|
|
background () { return this.userBackground || this.instanceBackground },
|
2019-02-03 12:32:24 -08:00
|
|
|
bgStyle () {
|
2020-12-17 15:01:58 -08:00
|
|
|
if (this.background) {
|
2020-12-16 08:25:07 -08:00
|
|
|
return {
|
|
|
|
'--body-background-image': `url(${this.background})`
|
|
|
|
}
|
2019-02-15 04:20:52 -08:00
|
|
|
}
|
|
|
|
},
|
2018-02-03 15:36:10 -08:00
|
|
|
chat () { return this.$store.state.chat.channel.state === 'joined' },
|
2018-09-09 11:21:23 -07:00
|
|
|
suggestionsEnabled () { return this.$store.state.instance.suggestionsEnabled },
|
2019-08-12 11:29:11 -07:00
|
|
|
showInstanceSpecificPanel () {
|
|
|
|
return this.$store.state.instance.showInstanceSpecificPanel &&
|
2019-10-06 13:28:30 -07:00
|
|
|
!this.$store.getters.mergedConfig.hideISP &&
|
2019-08-12 11:29:11 -07:00
|
|
|
this.$store.state.instance.instanceSpecificPanelContent
|
|
|
|
},
|
2019-03-03 06:33:40 -08:00
|
|
|
showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel },
|
2019-11-11 12:25:38 -08:00
|
|
|
isMobileLayout () { return this.$store.state.interface.mobileLayout },
|
2020-05-12 11:59:52 -07:00
|
|
|
privateMode () { return this.$store.state.instance.private },
|
|
|
|
sidebarAlign () {
|
|
|
|
return {
|
|
|
|
'order': this.$store.state.instance.sidebarRight ? 99 : 0
|
|
|
|
}
|
2020-12-17 15:01:58 -08:00
|
|
|
},
|
|
|
|
...mapGetters(['mergedConfig'])
|
2017-01-17 08:27:39 -08:00
|
|
|
},
|
|
|
|
methods: {
|
2019-03-03 06:33:40 -08:00
|
|
|
updateMobileState () {
|
2019-04-01 12:41:34 -07:00
|
|
|
const mobileLayout = windowWidth() <= 800
|
2020-05-07 06:10:53 -07:00
|
|
|
const layoutHeight = windowHeight()
|
2019-04-01 12:41:34 -07:00
|
|
|
const changed = mobileLayout !== this.isMobileLayout
|
2019-03-03 06:33:40 -08:00
|
|
|
if (changed) {
|
2019-04-01 12:41:34 -07:00
|
|
|
this.$store.dispatch('setMobileLayout', mobileLayout)
|
2019-03-03 06:33:40 -08:00
|
|
|
}
|
2020-05-07 06:10:53 -07:00
|
|
|
this.$store.dispatch('setLayoutHeight', layoutHeight)
|
|
|
|
}
|
2016-10-26 10:03:55 -07:00
|
|
|
}
|
|
|
|
}
|