2020-05-10 03:46:06 +00:00
|
|
|
import Modal from 'src/components/modal/modal.vue'
|
2020-05-26 20:58:55 +00:00
|
|
|
import PanelLoading from 'src/components/panel_loading/panel_loading.vue'
|
|
|
|
import AsyncComponentError from 'src/components/async_component_error/async_component_error.vue'
|
2020-05-25 13:11:05 +00:00
|
|
|
import getResettableAsyncComponent from 'src/services/resettable_async_component.js'
|
2020-05-03 14:36:12 +00:00
|
|
|
|
|
|
|
const SettingsModal = {
|
|
|
|
components: {
|
|
|
|
Modal,
|
2020-05-25 13:11:05 +00:00
|
|
|
SettingsModalContent: getResettableAsyncComponent(
|
|
|
|
() => import('./settings_modal_content.vue'),
|
|
|
|
{
|
2020-05-26 20:58:55 +00:00
|
|
|
loading: PanelLoading,
|
|
|
|
error: AsyncComponentError,
|
2020-05-25 13:32:32 +00:00
|
|
|
delay: 0
|
2020-05-25 13:11:05 +00:00
|
|
|
}
|
|
|
|
)
|
2020-05-03 14:36:12 +00:00
|
|
|
},
|
2020-05-26 20:58:55 +00:00
|
|
|
methods: {
|
|
|
|
closeModal () {
|
|
|
|
this.$store.dispatch('closeSettingsModal')
|
|
|
|
},
|
|
|
|
peekModal () {
|
|
|
|
this.$store.dispatch('togglePeekSettingsModal')
|
|
|
|
}
|
|
|
|
},
|
2020-05-03 14:36:12 +00:00
|
|
|
computed: {
|
|
|
|
modalActivated () {
|
|
|
|
return this.$store.state.interface.settingsModalState !== 'hidden'
|
2020-05-10 03:46:06 +00:00
|
|
|
},
|
|
|
|
modalPeeked () {
|
|
|
|
return this.$store.state.interface.settingsModalState === 'minimized'
|
2020-05-03 14:36:12 +00:00
|
|
|
}
|
2020-05-25 00:43:55 +00:00
|
|
|
}
|
2020-05-03 14:36:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default SettingsModal
|