2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-11-27 10:51:33 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-14 14:00:01 +00:00
|
|
|
<template>
|
2019-01-09 15:40:21 +00:00
|
|
|
<div class="account-button-container" id="accountDropdownButton">
|
2019-10-02 10:42:12 +01:00
|
|
|
<div class="account-button-toggle-container" @click="toggleSelection">
|
2018-11-16 14:28:02 +00:00
|
|
|
<!-- background of this div generated and stores in store -->
|
2019-01-30 13:18:07 +00:00
|
|
|
<div class="account-button-toggle-container__avatar">
|
2018-11-16 14:28:02 +00:00
|
|
|
<!-- First digit of firstName after Registration -->
|
|
|
|
<!-- img if avatar was set -->
|
2019-09-26 14:36:12 +01:00
|
|
|
<h1 class="account-button-toggle-container__avatar__letter">{{avatarLetter}}</h1>
|
2018-11-16 14:28:02 +00:00
|
|
|
</div>
|
2018-11-19 15:32:50 +00:00
|
|
|
<div class="account-button-toggle-container__expander-area">
|
2019-10-17 13:25:18 +01:00
|
|
|
<img v-if="!isDropdownShown" src="@/../static/images/account/BlackArrowExpand.svg" alt="Arrow down (expand)"/>
|
|
|
|
<img v-if="isDropdownShown" src="@/../static/images/account/BlackArrowHide.svg" alt="Arrow up (hide)"/>
|
2018-11-14 14:00:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-02 10:42:12 +01:00
|
|
|
<AccountDropdown v-if="isDropdownShown"/>
|
2018-11-16 14:28:02 +00:00
|
|
|
</div>
|
2018-11-14 14:00:01 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2019-09-09 11:33:39 +01:00
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2018-11-14 14:00:01 +00:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
import { APP_STATE_ACTIONS } from '@/utils/constants/actionNames';
|
2019-07-18 14:39:39 +01:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
import AccountDropdown from './AccountDropdown.vue';
|
2018-11-14 14:00:01 +00:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
@Component({
|
|
|
|
components: {
|
2019-09-13 15:58:18 +01:00
|
|
|
AccountDropdown,
|
|
|
|
},
|
2019-09-09 11:33:39 +01:00
|
|
|
})
|
|
|
|
export default class AccountButton extends Vue {
|
|
|
|
public toggleSelection(): void {
|
|
|
|
this.$store.dispatch(APP_STATE_ACTIONS.TOGGLE_ACCOUNT);
|
|
|
|
}
|
2019-07-18 14:39:39 +01:00
|
|
|
|
2019-09-09 11:33:39 +01:00
|
|
|
public get avatarLetter(): string {
|
|
|
|
return this.$store.getters.userName.slice(0, 1).toUpperCase();
|
|
|
|
}
|
|
|
|
|
|
|
|
public get isDropdownShown(): boolean {
|
|
|
|
return this.$store.state.appStateModule.appState.isAccountDropdownShown;
|
2019-07-18 14:39:39 +01:00
|
|
|
}
|
2019-09-09 11:33:39 +01:00
|
|
|
}
|
2018-11-14 14:00:01 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2018-11-19 15:32:50 +00:00
|
|
|
.account-button-container {
|
2018-11-16 14:28:02 +00:00
|
|
|
position: relative;
|
2018-11-14 14:00:01 +00:00
|
|
|
background-color: #FFFFFF;
|
2018-11-16 14:28:02 +00:00
|
|
|
cursor: pointer;
|
2019-01-02 13:20:51 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
|
|
.account-button-toggle-container__user-name {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
2018-11-14 14:00:01 +00:00
|
|
|
}
|
2018-12-18 14:43:23 +00:00
|
|
|
|
2018-11-19 15:32:50 +00:00
|
|
|
.account-button-toggle-container {
|
2018-11-14 14:00:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2018-11-23 15:48:11 +00:00
|
|
|
justify-content: flex-start;
|
2018-12-05 16:39:03 +00:00
|
|
|
width: max-content;
|
2018-11-23 15:48:11 +00:00
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
&__user-name {
|
|
|
|
margin-left: 12px;
|
2019-03-26 16:38:35 +00:00
|
|
|
font-family: 'font_medium';
|
2018-11-23 15:48:11 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 23px;
|
|
|
|
color: #354049;
|
2019-01-02 13:20:51 +00:00
|
|
|
transition: opacity .2s ease-in-out;
|
2018-11-23 15:48:11 +00:00
|
|
|
}
|
2018-11-19 15:32:50 +00:00
|
|
|
|
|
|
|
&__avatar {
|
2018-11-23 15:48:11 +00:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2018-11-19 15:32:50 +00:00
|
|
|
border-radius: 6px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2019-01-30 13:18:07 +00:00
|
|
|
background: #E8EAF2;
|
|
|
|
|
2019-09-26 14:36:12 +01:00
|
|
|
&__letter {
|
2019-03-26 16:38:35 +00:00
|
|
|
font-family: 'font_medium';
|
2018-11-19 15:32:50 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 23px;
|
|
|
|
color: #354049;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__expander-area {
|
2019-10-17 13:25:18 +01:00
|
|
|
margin-left: 9px;
|
2018-11-19 15:32:50 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-11-14 14:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-23 15:48:11 +00:00
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
@media screen and (max-width: 1024px) {
|
2018-11-23 15:48:11 +00:00
|
|
|
.account-button-toggle-container {
|
2019-07-10 10:55:40 +01:00
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
&__user-name,
|
|
|
|
&__expander-area {
|
2018-11-23 15:48:11 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-14 14:00:01 +00:00
|
|
|
</style>
|