dashboard/shell/components/templates/home.vue

127 lines
2.7 KiB
Vue

<script>
import Header from '@shell/components/nav/Header';
import Brand from '@shell/mixins/brand';
import FixedBanner from '@shell/components/FixedBanner';
import GrowlManager from '@shell/components/GrowlManager';
import { mapPref, THEME_SHORTCUT } from '@shell/store/prefs';
import AwsComplianceBanner from '@shell/components/AwsComplianceBanner';
import AzureWarning from '@shell/components/auth/AzureWarning';
import BrowserTabVisibility from '@shell/mixins/browser-tab-visibility';
import Inactivity from '@shell/components/Inactivity';
import { mapState, mapGetters } from 'vuex';
import PromptModal from '@shell/components/PromptModal';
export default {
components: {
Header,
FixedBanner,
GrowlManager,
AzureWarning,
AwsComplianceBanner,
Inactivity,
PromptModal
},
mixins: [Brand, BrowserTabVisibility],
data() {
return {
// Assume home pages have routes where the name is the key to use for string lookup
name: this.$route.name,
noLocaleShortcut: process.env.dev || false
};
},
computed: {
themeShortcut: mapPref(THEME_SHORTCUT),
...mapState(['managementReady']),
...mapGetters(['showTopLevelMenu']),
},
methods: {
toggleTheme() {
this.$store.dispatch('prefs/toggleTheme');
},
toggleNoneLocale() {
this.$store.dispatch('i18n/toggleNone');
},
}
};
</script>
<template>
<div class="dashboard-root">
<FixedBanner :header="true" />
<Inactivity />
<AwsComplianceBanner />
<AzureWarning />
<PromptModal />
<div
class="dashboard-content"
:class="{'dashboard-padding-left': showTopLevelMenu}"
>
<Header
v-if="managementReady"
:simple="true"
/>
<main class="main-layout">
<router-view
:key="$route.path"
class="outlet"
/>
</main>
</div>
<FixedBanner :footer="true" />
<GrowlManager />
<button
v-if="themeShortcut"
v-shortkey.once="['shift','t']"
class="hide"
@shortkey="toggleTheme()"
/>
<button
v-if="noLocaleShortcut"
v-shortkey.once="['shift','l']"
class="hide"
@shortkey="toggleNoneLocale()"
/>
</div>
</template>
<style lang="scss" scoped>
.dashboard-root {
display: flex;
flex-direction: column;
height: 100vh;
}
.dashboard-content {
display: grid;
flex-grow:1;
grid-template-areas:
"header"
"main";
grid-template-columns: auto;
grid-template-rows: var(--header-height) auto;
> HEADER {
grid-area: header;
}
}
MAIN {
grid-area: main;
overflow: auto;
.outlet {
min-height: 100%;
padding: 0;
}
}
</style>