161 lines
3.1 KiB
Vue
161 lines
3.1 KiB
Vue
<template>
|
|
<ui-container :body-togglable="true">
|
|
<template slot="header"><slot></slot></template>
|
|
|
|
<mk-error v-if="!fetching && !inited" @retry="init()"/>
|
|
|
|
<div class="efvhhmdq" v-size="[{ lt: 500, class: 'narrow' }]">
|
|
<div class="user" v-for="user in us">
|
|
<mk-avatar class="avatar" :user="user"/>
|
|
<div class="body">
|
|
<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" :title="user.description">
|
|
<mfm :text="user.description" :author="user" :i="$store.state.i" :custom-emojis="user.emojis" :should-break="false"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button class="more" :class="{ fetching: fetchingMoreUsers }" v-if="cursor != null" @click="fetchMoreUsers()" :disabled="fetchingMoreUsers">
|
|
<template v-if="fetchingMoreUsers"><fa icon="spinner" pulse fixed-width/></template>{{ fetchingMoreUsers ? $t('@.loading') : $t('@.load-more') }}
|
|
</button>
|
|
</div>
|
|
</ui-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
makePromise: {
|
|
required: true
|
|
},
|
|
iconOnly: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
fetching: true,
|
|
fetchingMoreUsers: false,
|
|
us: [],
|
|
inited: false,
|
|
cursor: null
|
|
};
|
|
},
|
|
|
|
created() {
|
|
this.init();
|
|
},
|
|
|
|
methods: {
|
|
init() {
|
|
this.fetching = true;
|
|
this.makePromise().then(x => {
|
|
if (Array.isArray(x)) {
|
|
this.us = x;
|
|
} else {
|
|
this.us = x.users;
|
|
this.cursor = x.cursor;
|
|
}
|
|
this.inited = true;
|
|
this.fetching = false;
|
|
}, e => {
|
|
this.fetching = false;
|
|
});
|
|
},
|
|
|
|
fetchMoreUsers() {
|
|
this.fetchingMoreUsers = true;
|
|
this.makePromise(this.cursor).then(x => {
|
|
this.us = this.us.concat(x.users);
|
|
this.cursor = x.cursor;
|
|
this.fetchingMoreUsers = false;
|
|
}, e => {
|
|
this.fetchingMoreUsers = false;
|
|
});
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.efvhhmdq
|
|
&.narrow
|
|
> .user > .body > .name
|
|
width 100%
|
|
|
|
> .user > .body > .description
|
|
display none
|
|
|
|
> .user
|
|
display flex
|
|
padding 16px
|
|
border-bottom solid 1px var(--faceDivider)
|
|
|
|
&:last-child
|
|
border-bottom none
|
|
|
|
> .avatar
|
|
display block
|
|
flex-shrink 0
|
|
margin 0 12px 0 0
|
|
width 42px
|
|
height 42px
|
|
border-radius 8px
|
|
|
|
> .body
|
|
display flex
|
|
width calc(100% - 54px)
|
|
|
|
> .name
|
|
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
|
|
|
|
> .description
|
|
width 55%
|
|
color var(--text)
|
|
line-height 42px
|
|
white-space nowrap
|
|
overflow hidden
|
|
text-overflow ellipsis
|
|
opacity 0.7
|
|
font-size 14px
|
|
|
|
> .more
|
|
display block
|
|
width 100%
|
|
padding 16px
|
|
color var(--text)
|
|
border-top solid var(--lineWidth) rgba(#000, 0.05)
|
|
|
|
&:hover
|
|
background rgba(#000, 0.025)
|
|
|
|
&:active
|
|
background rgba(#000, 0.05)
|
|
|
|
&.fetching
|
|
cursor wait
|
|
|
|
> [data-icon]
|
|
margin-right 4px
|
|
|
|
</style>
|