2018-02-16 08:51:02 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-user-preview">
|
|
|
|
<template v-if="u != null">
|
2018-07-24 16:43:14 +02:00
|
|
|
<div class="banner" :style="u.bannerUrl ? `background-image: url(${u.bannerUrl})` : ''"></div>
|
2018-04-29 10:17:15 +02:00
|
|
|
<mk-avatar class="avatar" :user="u" :disable-preview="true"/>
|
2018-02-16 08:51:02 +01:00
|
|
|
<div class="title">
|
2018-04-20 00:55:46 +02:00
|
|
|
<router-link class="name" :to="u | userPage">{{ u | userName }}</router-link>
|
2018-05-18 08:42:42 +02:00
|
|
|
<p class="username"><mk-acct :user="u"/></p>
|
2018-02-16 08:51:02 +01:00
|
|
|
</div>
|
|
|
|
<div class="description">{{ u.description }}</div>
|
|
|
|
<div class="status">
|
|
|
|
<div>
|
2018-08-15 17:49:40 +02:00
|
|
|
<p>%i18n:@notes%</p><span>{{ u.notesCount }}</span>
|
2018-02-16 08:51:02 +01:00
|
|
|
</div>
|
|
|
|
<div>
|
2018-08-15 17:49:40 +02:00
|
|
|
<p>%i18n:@following%</p><span>{{ u.followingCount }}</span>
|
2018-02-16 08:51:02 +01:00
|
|
|
</div>
|
|
|
|
<div>
|
2018-08-15 17:49:40 +02:00
|
|
|
<p>%i18n:@followers%</p><span>{{ u.followersCount }}</span>
|
2018-02-16 08:51:02 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-26 14:07:10 +02:00
|
|
|
<mk-follow-button v-if="$store.getters.isSignedIn && u.id != $store.state.i.id" :user="u"/>
|
2018-02-16 08:51:02 +01:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import * as anime from 'animejs';
|
2018-07-07 12:19:00 +02:00
|
|
|
import parseAcct from '../../../../../misc/acct/parse';
|
2018-02-16 08:51:02 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
user: {
|
|
|
|
type: [Object, String],
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2018-04-09 12:18:15 +02:00
|
|
|
u: null
|
2018-02-16 08:51:02 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
if (typeof this.user == 'object') {
|
|
|
|
this.u = this.user;
|
2018-02-16 18:24:10 +01:00
|
|
|
this.$nextTick(() => {
|
|
|
|
this.open();
|
|
|
|
});
|
2018-02-16 08:51:02 +01:00
|
|
|
} else {
|
2018-08-25 15:42:26 +02:00
|
|
|
const query = this.user.startsWith('@') ?
|
2018-04-08 12:30:19 +02:00
|
|
|
parseAcct(this.user.substr(1)) :
|
|
|
|
{ userId: this.user };
|
2018-03-27 09:51:12 +02:00
|
|
|
|
|
|
|
(this as any).api('users/show', query).then(user => {
|
2018-02-16 08:51:02 +01:00
|
|
|
this.u = user;
|
|
|
|
this.open();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
open() {
|
|
|
|
anime({
|
|
|
|
targets: this.$el,
|
|
|
|
opacity: 1,
|
|
|
|
'margin-top': 0,
|
|
|
|
duration: 200,
|
|
|
|
easing: 'easeOutQuad'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
close() {
|
|
|
|
anime({
|
|
|
|
targets: this.$el,
|
|
|
|
opacity: 0,
|
|
|
|
'margin-top': '-8px',
|
|
|
|
duration: 200,
|
|
|
|
easing: 'easeOutQuad',
|
2018-09-15 14:53:04 +02:00
|
|
|
complete: () => this.destroyDom()
|
2018-02-16 08:51:02 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-26 13:19:35 +02:00
|
|
|
|
2018-03-03 05:47:55 +01:00
|
|
|
|
2018-04-20 00:55:46 +02:00
|
|
|
root(isDark)
|
2018-02-16 08:51:02 +01:00
|
|
|
position absolute
|
|
|
|
z-index 2048
|
|
|
|
margin-top -8px
|
|
|
|
width 250px
|
2018-09-26 13:28:13 +02:00
|
|
|
background var(--face)
|
2018-02-16 08:51:02 +01:00
|
|
|
background-clip content-box
|
2018-04-29 01:51:17 +02:00
|
|
|
border solid 1px rgba(#000, 0.1)
|
2018-02-16 08:51:02 +01:00
|
|
|
border-radius 4px
|
|
|
|
overflow hidden
|
|
|
|
opacity 0
|
|
|
|
|
|
|
|
> .banner
|
|
|
|
height 84px
|
2018-04-20 00:55:46 +02:00
|
|
|
background-color isDark ? #1c1e26 : #f5f5f5
|
2018-02-16 08:51:02 +01:00
|
|
|
background-size cover
|
|
|
|
background-position center
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
top 62px
|
|
|
|
left 13px
|
2018-02-22 17:11:09 +01:00
|
|
|
z-index 2
|
2018-04-29 10:17:15 +02:00
|
|
|
width 58px
|
|
|
|
height 58px
|
2018-09-26 13:28:13 +02:00
|
|
|
border solid 3px var(--face)
|
2018-04-29 10:17:15 +02:00
|
|
|
border-radius 8px
|
2018-02-16 08:51:02 +01:00
|
|
|
|
|
|
|
> .title
|
|
|
|
display block
|
|
|
|
padding 8px 0 8px 82px
|
|
|
|
|
|
|
|
> .name
|
2018-02-22 17:11:09 +01:00
|
|
|
display inline-block
|
2018-02-16 08:51:02 +01:00
|
|
|
margin 0
|
|
|
|
font-weight bold
|
|
|
|
line-height 16px
|
2018-04-20 00:55:46 +02:00
|
|
|
color isDark ? #fff : #656565
|
2018-02-16 08:51:02 +01:00
|
|
|
|
|
|
|
> .username
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
line-height 16px
|
|
|
|
font-size 0.8em
|
2018-04-20 00:55:46 +02:00
|
|
|
color isDark ? #606984 : #999
|
2018-02-16 08:51:02 +01:00
|
|
|
|
|
|
|
> .description
|
|
|
|
padding 0 16px
|
|
|
|
font-size 0.7em
|
2018-04-20 06:38:28 +02:00
|
|
|
color isDark ? #9ea4ad : #555
|
2018-02-16 08:51:02 +01:00
|
|
|
|
|
|
|
> .status
|
|
|
|
padding 8px 16px
|
|
|
|
|
|
|
|
> div
|
|
|
|
display inline-block
|
|
|
|
width 33%
|
|
|
|
|
|
|
|
> p
|
|
|
|
margin 0
|
|
|
|
font-size 0.7em
|
|
|
|
color #aaa
|
|
|
|
|
2018-08-15 17:49:40 +02:00
|
|
|
> span
|
2018-02-16 08:51:02 +01:00
|
|
|
font-size 1em
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primary)
|
2018-02-16 08:51:02 +01:00
|
|
|
|
|
|
|
> .mk-follow-button
|
|
|
|
position absolute
|
|
|
|
top 92px
|
|
|
|
right 8px
|
|
|
|
|
2018-04-20 00:55:46 +02:00
|
|
|
.mk-user-preview[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-user-preview:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-16 08:51:02 +01:00
|
|
|
</style>
|