mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
207 lines
7.3 KiB
Vue
207 lines
7.3 KiB
Vue
<template>
|
|
<div id="single-page">
|
|
<div id="page-content" v-if="! isLoading">
|
|
<MobileHeader :title="$t($router.currentRoute.meta.title)"/>
|
|
<PageHeader :can-back="true" :title="$t($router.currentRoute.meta.title)"/>
|
|
<div class="content-page">
|
|
|
|
<!--User thumbnail-->
|
|
<div class="user-thumbnail">
|
|
<div class="avatar">
|
|
<img :src="user.data.relationships.settings.data.attributes.avatar" :alt="user.data.relationships.settings.data.attributes.name">
|
|
<!--<img :src="user.data.attributes.avatar" :alt="user.data.attributes.name" class="blurred">-->
|
|
</div>
|
|
<div class="info">
|
|
<b class="name">
|
|
{{ user.data.relationships.settings.data.attributes.name }}
|
|
<ColorLabel color="purple">
|
|
{{ user.data.attributes.role }}
|
|
</ColorLabel>
|
|
</b>
|
|
<span class="email">{{ user.data.attributes.email }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!--Page Tab links-->
|
|
<div class="menu-list-wrapper horizontal">
|
|
<router-link replace :to="{name: 'UserDetail'}" class="menu-list-item link border-bottom-theme">
|
|
<div class="icon text-theme">
|
|
<user-icon size="17"></user-icon>
|
|
</div>
|
|
<div class="label text-theme">
|
|
{{ $t('admin_page_user.tabs.detail') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link replace :to="{name: 'UserStorage'}" class="menu-list-item link border-bottom-theme">
|
|
<div class="icon text-theme">
|
|
<hard-drive-icon size="17"></hard-drive-icon>
|
|
</div>
|
|
<div class="label text-theme">
|
|
{{ $t('admin_page_user.tabs.storage') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link v-if="config.isSaaS" replace :to="{name: 'UserSubscription'}" class="menu-list-item link border-bottom-theme">
|
|
<div class="icon text-theme">
|
|
<credit-card-icon size="17"></credit-card-icon>
|
|
</div>
|
|
<div class="label text-theme">
|
|
{{ $t('admin_page_user.tabs.subscription') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link v-if="config.isSaaS" replace :to="{name: 'UserInvoices'}" class="menu-list-item link border-bottom-theme">
|
|
<div class="icon text-theme">
|
|
<file-text-icon size="17"></file-text-icon>
|
|
</div>
|
|
<div class="label text-theme">
|
|
{{ $t('admin_page_user.tabs.invoices') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link replace :to="{name: 'UserPassword'}" class="menu-list-item link border-bottom-theme">
|
|
<div class="icon text-theme">
|
|
<lock-icon size="17"></lock-icon>
|
|
</div>
|
|
<div class="label text-theme">
|
|
{{ $t('admin_page_user.tabs.password') }}
|
|
</div>
|
|
</router-link>
|
|
|
|
<router-link replace :to="{name: 'UserDelete'}" v-if="admin && user.data.relationships.settings.data.attributes.name !== admin.data.relationships.settings.data.attributes.name"
|
|
class="menu-list-item link border-bottom-theme">
|
|
<div class="icon text-theme">
|
|
<trash2-icon size="17"></trash2-icon>
|
|
</div>
|
|
<div class="label text-theme">
|
|
{{ $t('admin_page_user.tabs.delete') }}
|
|
</div>
|
|
</router-link>
|
|
</div>
|
|
|
|
<!--Router Content-->
|
|
<router-view :user="user" @reload-user="fetchUser"/>
|
|
</div>
|
|
</div>
|
|
<div id="loader" v-if="isLoading">
|
|
<Spinner></Spinner>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {UserIcon, HardDriveIcon, LockIcon, Trash2Icon, FileTextIcon, CreditCardIcon} from 'vue-feather-icons'
|
|
import StorageItemDetail from '@/components/Others/StorageItemDetail'
|
|
import MobileHeader from '@/components/Mobile/MobileHeader'
|
|
import SectionTitle from '@/components/Others/SectionTitle'
|
|
import PageHeader from '@/components/Others/PageHeader'
|
|
import ColorLabel from '@/components/Others/ColorLabel'
|
|
import Spinner from '@/components/FilesView/Spinner'
|
|
import {mapGetters} from 'vuex'
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'Profile',
|
|
components: {
|
|
StorageItemDetail,
|
|
CreditCardIcon,
|
|
HardDriveIcon,
|
|
SectionTitle,
|
|
FileTextIcon,
|
|
MobileHeader,
|
|
PageHeader,
|
|
ColorLabel,
|
|
Trash2Icon,
|
|
UserIcon,
|
|
LockIcon,
|
|
Spinner,
|
|
},
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
admin() {
|
|
return this.$store.getters.user ? this.$store.getters.user : undefined
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: true,
|
|
user: undefined,
|
|
}
|
|
},
|
|
methods: {
|
|
fetchUser() {
|
|
axios.get('/api/admin/users/' + this.$route.params.id + '/detail')
|
|
.then(response => {
|
|
this.user = response.data
|
|
this.isLoading = false
|
|
})
|
|
}
|
|
},
|
|
created() {
|
|
this.fetchUser()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vuefilemanager/_variables';
|
|
@import '@assets/vuefilemanager/_mixins';
|
|
|
|
.user-thumbnail {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
.avatar {
|
|
margin-right: 20px;
|
|
position: relative;
|
|
|
|
img {
|
|
line-height: 0;
|
|
width: 62px;
|
|
height: 62px;
|
|
border-radius: 12px;
|
|
z-index: 1;
|
|
position: relative;
|
|
|
|
&.blurred {
|
|
@include blurred-image;
|
|
top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.info {
|
|
|
|
.name {
|
|
display: block;
|
|
@include font-size(17);
|
|
line-height: 1;
|
|
}
|
|
|
|
.email {
|
|
color: $text-muted;
|
|
@include font-size(14);
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 960px) {
|
|
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.user-thumbnail {
|
|
|
|
.info {
|
|
|
|
.email {
|
|
color: $dark_mode_text_secondary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|