2019-02-15 15:50:58 -06:00
|
|
|
<template>
|
|
|
|
<ui-container :body-togglable="true">
|
|
|
|
<template slot="header"><slot></slot></template>
|
2019-02-15 17:51:35 -06:00
|
|
|
<div class="efvhhmdq" v-size="[{ lt: 500, class: 'narrow' }]">
|
|
|
|
<div class="user" v-for="user in users">
|
|
|
|
<mk-avatar class="avatar" :user="user"/>
|
2019-02-15 15:50:58 -06:00
|
|
|
<div class="body">
|
2019-02-15 17:51:35 -06:00
|
|
|
<div class="name">
|
|
|
|
<router-link class="name" :to="user | userPage" v-user-preview="user.id"><mk-user-name :user="user"/></router-link>
|
|
|
|
<p class="username">@{{ user | acct }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="description" v-if="user.description">
|
|
|
|
<mfm :text="user.description" :author="user" :i="$store.state.i" :custom-emojis="user.emojis" :should-break="false"/>
|
|
|
|
</div>
|
2019-02-15 15:50:58 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ui-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
users: {
|
|
|
|
type: Array,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
iconOnly: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.efvhhmdq
|
2019-02-15 17:51:35 -06:00
|
|
|
&.narrow
|
|
|
|
> .user > .body > .name
|
|
|
|
width 100%
|
|
|
|
|
|
|
|
> .user > .body > .description
|
|
|
|
display none
|
|
|
|
|
2019-02-15 15:50:58 -06:00
|
|
|
> .user
|
2019-02-15 17:51:35 -06:00
|
|
|
display flex
|
2019-02-15 15:50:58 -06:00
|
|
|
padding 16px
|
|
|
|
border-bottom solid 1px var(--faceDivider)
|
|
|
|
|
|
|
|
&:last-child
|
|
|
|
border-bottom none
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
display block
|
2019-02-15 17:51:35 -06:00
|
|
|
flex-shrink 0
|
2019-02-15 15:50:58 -06:00
|
|
|
margin 0 12px 0 0
|
|
|
|
width 42px
|
|
|
|
height 42px
|
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
> .body
|
2019-02-15 17:51:35 -06:00
|
|
|
display flex
|
2019-02-15 15:50:58 -06:00
|
|
|
width calc(100% - 54px)
|
|
|
|
|
|
|
|
> .name
|
2019-02-15 17:51:35 -06:00
|
|
|
width 45%
|
|
|
|
|
|
|
|
> .name
|
|
|
|
margin 0
|
|
|
|
font-size 16px
|
|
|
|
line-height 24px
|
|
|
|
color var(--text)
|
|
|
|
|
|
|
|
> .username
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
font-size 15px
|
|
|
|
line-height 16px
|
|
|
|
color var(--text)
|
|
|
|
opacity 0.7
|
2019-02-15 15:50:58 -06:00
|
|
|
|
2019-02-15 17:51:35 -06:00
|
|
|
> .description
|
|
|
|
width 55%
|
2019-02-15 15:50:58 -06:00
|
|
|
color var(--text)
|
2019-02-15 17:51:35 -06:00
|
|
|
line-height 42px
|
|
|
|
white-space nowrap
|
|
|
|
overflow hidden
|
|
|
|
text-overflow ellipsis
|
2019-02-15 15:50:58 -06:00
|
|
|
opacity 0.7
|
|
|
|
|
|
|
|
</style>
|