iceshrimp-legacy/src/client/app/desktop/views/components/user-card.vue

82 lines
1.7 KiB
Vue
Raw Normal View History

2018-02-15 05:24:46 +01:00
<template>
<div class="zvdbznxvfixtmujpsigoccczftvpiwqh">
<div class="banner" :style="bannerStyle"></div>
<mk-avatar class="avatar" :user="user" :disable-preview="true"/>
2018-11-13 08:19:46 +01:00
<mk-follow-button :user="user" class="follow" mini/>
<div class="body">
<router-link :to="user | userPage" class="name">
2018-12-06 03:18:13 +01:00
<mk-user-name :user="user"/>
</router-link>
<span class="username">@{{ user | acct }}</span>
<div class="description">
<misskey-flavored-markdown v-if="user.description" :text="user.description" :author="user" :i="$store.state.i" :custom-emojis="user.emojis"/>
2018-02-15 05:24:46 +01:00
</div>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-03-27 09:51:12 +02:00
2018-02-15 05:24:46 +01:00
export default Vue.extend({
props: ['user'],
computed: {
bannerStyle(): any {
if (this.user.bannerUrl == null) return {};
return {
backgroundColor: this.user.bannerColor && this.user.bannerColor.length == 3 ? `rgb(${ this.user.bannerColor.join(',') })` : null,
backgroundImage: `url(${ this.user.bannerUrl })`
};
}
},
2018-02-15 05:24:46 +01:00
});
</script>
<style lang="stylus" scoped>
.zvdbznxvfixtmujpsigoccczftvpiwqh
$bg = var(--face)
height 280px
overflow hidden
2018-11-09 13:46:35 +01:00
font-size 13px
text-align center
background $bg
box-shadow 0 2px 4px rgba(0, 0, 0, 0.1)
color var(--faceText)
2018-02-15 05:24:46 +01:00
> .banner
height 90px
background-color #f9f4f4
background-position center
background-size cover
2018-02-15 05:24:46 +01:00
2018-04-29 10:17:15 +02:00
> .avatar
2018-02-15 05:24:46 +01:00
display block
margin -40px auto 0 auto
width 80px
height 80px
border-radius 100%
border solid 4px $bg
2018-02-15 05:24:46 +01:00
2018-11-08 03:20:50 +01:00
> .follow
position absolute
top 16px
right 16px
> .body
padding 0px 24px
2018-02-15 05:24:46 +01:00
> .name
font-size 120%
font-weight bold
2018-02-15 05:24:46 +01:00
> .username
display block
opacity 0.7
2018-02-15 05:24:46 +01:00
> .description
margin 8px 0 16px 0
2018-02-15 05:24:46 +01:00
</style>