storj/web/satellite/src/components/dashboard/account/AccountButton.vue

133 lines
3.6 KiB
Vue
Raw Normal View History

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
<template>
<div class="account-button-container" >
<div class="account-button-toggle-container" v-on:click="toggleSelection" >
2018-11-16 14:28:02 +00:00
<!-- background of this div generated and stores in store -->
<div class="account-button-toggle-container__avatar" :style="style">
2018-11-16 14:28:02 +00:00
<!-- First digit of firstName after Registration -->
<!-- img if avatar was set -->
<h1>{{avatarLetter}}</h1>
</div>
<h1 class="account-button-toggle-container__user-name">{{userName}}</h1>
<div class="account-button-toggle-container__expander-area">
2018-11-16 14:28:02 +00:00
<img v-if="!isChoiceShown" src="../../../../static/images/register/BlueExpand.svg" />
<img v-if="isChoiceShown" src="../../../../static/images/register/BlueHide.svg" />
</div>
</div>
2018-11-16 14:28:02 +00:00
<AccountDropdown v-if="isChoiceShown" @onClose="toggleSelection" />
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import AccountDropdown from './AccountDropdown.vue';
@Component(
{
data: function () {
return {
2018-11-16 14:28:02 +00:00
isChoiceShown: false
};
},
computed: {
style: function (): object {
// Color from $store
return {background: '#95D486'};
},
// May change later
avatarLetter: function (): string {
return this.$store.getters.userName.slice(0, 1).toUpperCase();
},
userName: function (): string {
return this.$store.getters.userName;
}
2018-11-16 14:28:02 +00:00
},
methods: {
toggleSelection: function (): void {
2018-11-16 14:28:02 +00:00
this.$data.isChoiceShown = !this.$data.isChoiceShown;
}
},
components: {
AccountDropdown
}
}
)
export default class AccountButton extends Vue {
}
</script>
<style scoped lang="scss">
a {
text-decoration: none;
outline: none;
}
.account-button-container {
2018-11-16 14:28:02 +00:00
position: relative;
padding-left: 10px;
padding-right: 10px;
background-color: #FFFFFF;
2018-11-16 14:28:02 +00:00
cursor: pointer;
&:hover {
.account-button-toggle-container__user-name {
opacity: 0.7;
}
}
}
.account-button-toggle-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
width: max-content;
height: 50px;
&__user-name {
margin-left: 12px;
font-family: 'montserrat_medium';
font-size: 16px;
line-height: 23px;
color: #354049;
transition: opacity .2s ease-in-out;
}
&__avatar {
width: 40px;
height: 40px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
h1 {
font-family: 'montserrat_medium';
font-size: 16px;
line-height: 23px;
color: #354049;
}
}
&__expander-area {
margin-left: 12px;
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
}
}
@media screen and (max-width: 720px) {
.account-button-toggle-container {
&__user-name {
display: none;
}
}
}
</style>