iceshrimp-legacy/src/client/app/desktop/views/components/ui.header.account.vue

261 lines
5.3 KiB
Vue
Raw Normal View History

2018-02-12 13:10:16 +01:00
<template>
2018-02-20 14:53:34 +01:00
<div class="account">
2018-02-12 13:10:16 +01:00
<button class="header" :data-active="isOpen" @click="toggle">
2018-02-18 04:35:18 +01:00
<span class="username">{{ os.i.username }}<template v-if="!isOpen">%fa:angle-down%</template><template v-if="isOpen">%fa:angle-up%</template></span>
2018-03-29 07:48:47 +02:00
<img class="avatar" :src="`${ os.i.avatarUrl }?thumbnail&size=64`" alt="avatar"/>
2018-02-12 13:10:16 +01:00
</button>
2018-02-22 19:33:12 +01:00
<transition name="zoom-in-top">
<div class="menu" v-if="isOpen">
<ul>
<li>
2018-04-20 00:45:37 +02:00
<router-link :to="`/@${ os.i.username }`">%fa:user%<span>%i18n:@profile%</span>%fa:angle-right%</router-link>
2018-02-22 19:33:12 +01:00
</li>
<li @click="drive">
2018-04-20 00:45:37 +02:00
<p>%fa:cloud%<span>%i18n:@drive%</span>%fa:angle-right%</p>
2018-02-22 19:33:12 +01:00
</li>
2018-04-20 05:38:31 +02:00
<li>
<router-link to="/i/favorites">%fa:star%<span>%i18n:@favorites%</span>%fa:angle-right%</router-link>
</li>
2018-04-24 14:24:06 +02:00
<li @click="list">
2018-04-24 16:34:18 +02:00
<p>%fa:list%<span>%i18n:@lists%</span>%fa:angle-right%</p>
2018-04-24 14:24:06 +02:00
</li>
2018-02-22 19:33:12 +01:00
</ul>
<ul>
2018-04-12 17:07:13 +02:00
<li>
2018-04-20 00:45:37 +02:00
<a href="/i/customize-home">%fa:wrench%<span>%i18n:@customize%</span>%fa:angle-right%</a>
2018-04-12 17:07:13 +02:00
</li>
2018-02-22 19:33:12 +01:00
<li @click="settings">
2018-04-20 00:45:37 +02:00
<p>%fa:cog%<span>%i18n:@settings%</span>%fa:angle-right%</p>
2018-02-22 19:33:12 +01:00
</li>
</ul>
<ul>
<li @click="signout">
2018-04-20 05:38:31 +02:00
<p class="signout">%fa:power-off%<span>%i18n:@signout%</span></p>
2018-04-20 00:45:37 +02:00
</li>
</ul>
<ul>
<li @click="dark">
<p><span>%i18n:@dark%</span><template v-if="_darkmode_">%fa:moon%</template><template v-else>%fa:R moon%</template></p>
2018-02-22 19:33:12 +01:00
</li>
</ul>
</div>
</transition>
2018-02-12 13:10:16 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-13 00:24:44 +01:00
import MkSettingsWindow from './settings-window.vue';
2018-02-18 15:51:41 +01:00
import MkDriveWindow from './drive-window.vue';
2018-02-12 13:10:16 +01:00
import contains from '../../../common/scripts/contains';
export default Vue.extend({
data() {
return {
2018-02-26 11:23:53 +01:00
isOpen: false
2018-02-12 13:10:16 +01:00
};
},
beforeDestroy() {
this.close();
},
methods: {
toggle() {
this.isOpen ? this.close() : this.open();
},
open() {
this.isOpen = true;
Array.from(document.querySelectorAll('body *')).forEach(el => {
el.addEventListener('mousedown', this.onMousedown);
});
},
close() {
this.isOpen = false;
Array.from(document.querySelectorAll('body *')).forEach(el => {
el.removeEventListener('mousedown', this.onMousedown);
});
},
onMousedown(e) {
e.preventDefault();
if (!contains(this.$el, e.target) && this.$el != e.target) this.close();
return false;
},
drive() {
this.close();
2018-02-22 15:53:07 +01:00
(this as any).os.new(MkDriveWindow);
2018-02-12 13:10:16 +01:00
},
settings() {
this.close();
2018-02-22 15:53:07 +01:00
(this as any).os.new(MkSettingsWindow);
2018-02-26 11:23:53 +01:00
},
signout() {
(this as any).os.signout();
2018-04-20 00:45:37 +02:00
},
dark() {
(this as any)._updateDarkmode_(!(this as any)._darkmode_);
2018-02-12 13:10:16 +01:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-03-03 05:47:55 +01:00
@import '~const.styl'
2018-04-20 00:45:37 +02:00
root(isDark)
2018-02-12 13:10:16 +01:00
> .header
display block
margin 0
padding 0
color #9eaba8
border none
background transparent
cursor pointer
*
pointer-events none
&:hover
&[data-active='true']
2018-04-20 00:45:37 +02:00
color isDark ? #fff : darken(#9eaba8, 20%)
2018-02-12 13:10:16 +01:00
> .avatar
filter saturate(150%)
&:active
2018-04-20 00:45:37 +02:00
color isDark ? #fff : darken(#9eaba8, 30%)
2018-02-12 13:10:16 +01:00
> .username
display block
float left
margin 0 12px 0 16px
max-width 16em
line-height 48px
font-weight bold
font-family Meiryo, sans-serif
text-decoration none
[data-fa]
margin-left 8px
> .avatar
display block
float left
min-width 32px
max-width 32px
min-height 32px
max-height 32px
margin 8px 8px 8px 0
border-radius 4px
transition filter 100ms ease
> .menu
2018-04-20 00:45:37 +02:00
$bgcolor = isDark ? #282c37 : #fff
2018-02-12 13:10:16 +01:00
display block
position absolute
top 56px
right -2px
width 230px
font-size 0.8em
2018-04-20 00:45:37 +02:00
background $bgcolor
2018-02-12 13:10:16 +01:00
border-radius 4px
box-shadow 0 1px 4px rgba(0, 0, 0, 0.25)
&:before
content ""
pointer-events none
display block
position absolute
top -28px
right 12px
border-top solid 14px transparent
border-right solid 14px transparent
border-bottom solid 14px rgba(0, 0, 0, 0.1)
border-left solid 14px transparent
&:after
content ""
pointer-events none
display block
position absolute
top -27px
right 12px
border-top solid 14px transparent
border-right solid 14px transparent
2018-04-20 00:45:37 +02:00
border-bottom solid 14px $bgcolor
2018-02-12 13:10:16 +01:00
border-left solid 14px transparent
ul
display block
margin 10px 0
padding 0
list-style none
& + ul
padding-top 10px
2018-04-20 00:45:37 +02:00
border-top solid 1px isDark ? #1c2023 : #eee
2018-02-12 13:10:16 +01:00
> li
display block
margin 0
padding 0
> a
> p
display block
z-index 1
padding 0 28px
margin 0
line-height 40px
2018-04-20 00:45:37 +02:00
color isDark ? #c8cece : #868C8C
2018-02-12 13:10:16 +01:00
cursor pointer
*
pointer-events none
2018-04-20 00:45:37 +02:00
> span:first-child
2018-04-20 05:38:31 +02:00
padding-left 22px
2018-04-20 00:45:37 +02:00
> [data-fa]:first-child
2018-02-12 13:10:16 +01:00
margin-right 6px
2018-04-20 00:45:37 +02:00
width 16px
2018-02-12 13:10:16 +01:00
2018-04-20 00:45:37 +02:00
> [data-fa]:last-child
2018-02-12 13:10:16 +01:00
display block
position absolute
top 0
right 8px
z-index 1
padding 0 20px
font-size 1.2em
line-height 40px
&:hover, &:active
text-decoration none
background $theme-color
color $theme-color-foreground
2018-02-22 19:33:12 +01:00
&:active
background darken($theme-color, 10%)
2018-04-20 05:38:31 +02:00
&.signout
$color = #e64137
&:hover, &:active
background $color
color #fff
&:active
background darken($color, 10%)
2018-02-22 19:33:12 +01:00
.zoom-in-top-enter-active,
.zoom-in-top-leave-active {
transform-origin: center -16px;
}
2018-04-20 00:45:37 +02:00
.account[data-darkmode]
root(true)
.account:not([data-darkmode])
root(false)
2018-02-12 13:10:16 +01:00
</style>