mirror of
https://github.com/koel/koel
synced 2024-12-14 06:32:28 +00:00
77 lines
1.9 KiB
Vue
77 lines
1.9 KiB
Vue
<template>
|
|
<span class="profile" id="userBadge">
|
|
<span class="view-profile control" @click="loadProfileView">
|
|
<img class="avatar" :src="state.current.avatar" alt="Avatar"></img>
|
|
<span class="name">{{ state.current.name }}</span>
|
|
</span>
|
|
|
|
<a href="/logout" class="logout"><i class="fa fa-sign-out control"></i></a>
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
import userStore from '../../stores/user';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
state: userStore.state,
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
/**
|
|
* Load the profile view if the user click on his avatar or name.
|
|
*/
|
|
loadProfileView() {
|
|
this.$root.loadMainView('profile');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
@import "resources/assets/sass/partials/_vars.scss";
|
|
@import "resources/assets/sass/partials/_mixins.scss";
|
|
|
|
#userBadge {
|
|
@include vertical-center();
|
|
justify-content: flex-end;
|
|
flex: 0 0 334px;
|
|
padding-right: 16px;
|
|
text-align: right;
|
|
|
|
.avatar {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.view-profile {
|
|
margin-right: 16px;
|
|
@include vertical-center();
|
|
}
|
|
|
|
@media only screen
|
|
and (max-device-width : 667px)
|
|
and (orientation : portrait) {
|
|
flex: 0 0 96px;
|
|
margin-right: 0;
|
|
padding-right: 0;
|
|
align-content: stretch;
|
|
|
|
.name {
|
|
display: none;
|
|
}
|
|
|
|
.view-profile, .logout {
|
|
flex: 0 0 40px;
|
|
font-size: 140%;
|
|
margin-right: 0;
|
|
|
|
@include vertical-center();
|
|
}
|
|
}
|
|
}
|
|
</style>
|