2018-02-14 10:07:09 -06:00
|
|
|
<template>
|
2018-02-14 10:41:31 -06:00
|
|
|
<div class="mkw-profile"
|
2018-02-14 21:36:42 -06:00
|
|
|
:data-compact="props.design == 1 || props.design == 2"
|
|
|
|
:data-melt="props.design == 2"
|
2018-02-14 10:41:31 -06:00
|
|
|
>
|
|
|
|
<div class="banner"
|
2018-02-21 00:30:03 -06:00
|
|
|
:style="os.i.banner_url ? `background-image: url(${os.i.banner_url}?thumbnail&size=256)` : ''"
|
2018-02-14 10:41:31 -06:00
|
|
|
title="クリックでバナー編集"
|
2018-02-21 00:30:03 -06:00
|
|
|
@click="os.apis.updateBanner"
|
2018-02-14 10:41:31 -06:00
|
|
|
></div>
|
|
|
|
<img class="avatar"
|
2018-02-21 00:30:03 -06:00
|
|
|
:src="`${os.i.avatar_url}?thumbnail&size=96`"
|
|
|
|
@click="os.apis.updateAvatar"
|
2018-02-14 10:41:31 -06:00
|
|
|
alt="avatar"
|
|
|
|
title="クリックでアバター編集"
|
2018-02-21 00:30:03 -06:00
|
|
|
v-user-preview="os.i.id"
|
2018-02-14 10:41:31 -06:00
|
|
|
/>
|
2018-03-26 22:53:56 -05:00
|
|
|
<router-link class="name" :to="`/@${os.i.username}`">{{ os.i.name }}</router-link>
|
2018-02-21 00:30:03 -06:00
|
|
|
<p class="username">@{{ os.i.username }}</p>
|
2018-02-14 10:07:09 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
2018-02-14 10:41:31 -06:00
|
|
|
|
|
|
|
<script lang="ts">
|
2018-02-24 09:18:09 -06:00
|
|
|
import define from '../../../common/define-widget';
|
2018-02-14 10:41:31 -06:00
|
|
|
export default define({
|
|
|
|
name: 'profile',
|
2018-02-21 00:30:03 -06:00
|
|
|
props: () => ({
|
2018-02-14 10:41:31 -06:00
|
|
|
design: 0
|
2018-02-21 00:30:03 -06:00
|
|
|
})
|
2018-02-14 10:41:31 -06:00
|
|
|
}).extend({
|
|
|
|
methods: {
|
|
|
|
func() {
|
2018-02-14 10:42:11 -06:00
|
|
|
if (this.props.design == 2) {
|
2018-02-14 10:41:31 -06:00
|
|
|
this.props.design = 0;
|
|
|
|
} else {
|
|
|
|
this.props.design++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mkw-profile
|
|
|
|
overflow hidden
|
|
|
|
background #fff
|
|
|
|
border solid 1px rgba(0, 0, 0, 0.075)
|
|
|
|
border-radius 6px
|
|
|
|
|
|
|
|
&[data-compact]
|
|
|
|
> .banner:before
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
background rgba(0, 0, 0, 0.5)
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
top ((100px - 58px) / 2)
|
|
|
|
left ((100px - 58px) / 2)
|
|
|
|
border none
|
|
|
|
border-radius 100%
|
|
|
|
box-shadow 0 0 16px rgba(0, 0, 0, 0.5)
|
|
|
|
|
|
|
|
> .name
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 92px
|
|
|
|
margin 0
|
|
|
|
line-height 100px
|
|
|
|
color #fff
|
|
|
|
text-shadow 0 0 8px rgba(0, 0, 0, 0.5)
|
|
|
|
|
|
|
|
> .username
|
|
|
|
display none
|
|
|
|
|
|
|
|
&[data-melt]
|
|
|
|
background transparent !important
|
|
|
|
border none !important
|
|
|
|
|
|
|
|
> .banner
|
|
|
|
visibility hidden
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
box-shadow none
|
|
|
|
|
|
|
|
> .name
|
|
|
|
color #666
|
|
|
|
text-shadow none
|
|
|
|
|
|
|
|
> .banner
|
|
|
|
height 100px
|
|
|
|
background-color #f5f5f5
|
|
|
|
background-size cover
|
|
|
|
background-position center
|
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top 76px
|
|
|
|
left 16px
|
|
|
|
width 58px
|
|
|
|
height 58px
|
|
|
|
margin 0
|
|
|
|
border solid 3px #fff
|
|
|
|
border-radius 8px
|
|
|
|
vertical-align bottom
|
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
> .name
|
|
|
|
display block
|
|
|
|
margin 10px 0 0 84px
|
|
|
|
line-height 16px
|
|
|
|
font-weight bold
|
|
|
|
color #555
|
|
|
|
|
|
|
|
> .username
|
|
|
|
display block
|
|
|
|
margin 4px 0 8px 84px
|
|
|
|
line-height 16px
|
|
|
|
font-size 0.9em
|
|
|
|
color #999
|
|
|
|
|
|
|
|
</style>
|