mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
115 lines
3.3 KiB
Vue
115 lines
3.3 KiB
Vue
<template>
|
|
<div id="single-page">
|
|
<div id="page-content">
|
|
|
|
<!--Header-->
|
|
<MobileHeader :title="$router.currentRoute.meta.title"/>
|
|
|
|
<!--Content-->
|
|
<div class="content-page">
|
|
<nav class="mobile-navigation">
|
|
|
|
<!--Admin menu-->
|
|
<b class="mobile-menu-label">{{ $t('global.menu') }}</b>
|
|
<MenuItemList :navigation="ProfileNavigation" />
|
|
|
|
<!--SaaS menu-->
|
|
<b class="mobile-menu-label">{{ $t('global.subscription') }}</b>
|
|
<MenuItemList :navigation="SubscriptionNavigation" />
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MenuItemList from '@/components/Mobile/MenuItemList'
|
|
import MobileHeader from '@/components/Mobile/MobileHeader'
|
|
|
|
export default {
|
|
name: 'UserProfileMobileMenu',
|
|
components: {
|
|
MenuItemList,
|
|
MobileHeader,
|
|
},
|
|
data() {
|
|
return {
|
|
ProfileNavigation: [
|
|
{
|
|
icon: 'user',
|
|
title: this.$t('menu.profile'),
|
|
routeName: 'Profile',
|
|
isVisible: true,
|
|
},
|
|
{
|
|
icon: 'hard-drive',
|
|
title: this.$t('menu.storage'),
|
|
routeName: 'Storage',
|
|
isVisible: true,
|
|
},
|
|
{
|
|
icon: 'lock',
|
|
title: this.$t('menu.password'),
|
|
routeName: 'Password',
|
|
isVisible: true,
|
|
},
|
|
],
|
|
SubscriptionNavigation: [
|
|
{
|
|
icon: 'cloud',
|
|
title: this.$t('menu.subscription'),
|
|
routeName: 'Subscription',
|
|
isVisible: true,
|
|
},
|
|
{
|
|
icon: 'credit-card',
|
|
title: this.$t('menu.payment_cards'),
|
|
routeName: 'PaymentMethods',
|
|
isVisible: true,
|
|
},
|
|
{
|
|
icon: 'file-text',
|
|
title: this.$t('menu.invoices'),
|
|
routeName: 'Invoice',
|
|
isVisible: true,
|
|
},
|
|
]
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
|
|
.mobile-navigation {
|
|
width: 100%;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 99;
|
|
|
|
.mobile-menu-label {
|
|
margin-top: 30px;
|
|
margin-bottom: 5px;
|
|
@include font-size(11);
|
|
color: $text-muted;
|
|
display: block;
|
|
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.mobile-navigation {
|
|
|
|
.mobile-menu-label {
|
|
color: $dark_mode_text_secondary;
|
|
}
|
|
}
|
|
}
|
|
</style>
|