2018-02-20 00:05:16 +02:00
|
|
|
<template>
|
|
|
|
<div class="mkw-users">
|
2018-04-19 22:16:48 +03:00
|
|
|
<mk-widget-container :show-header="!props.compact">
|
2018-11-08 20:44:35 +02:00
|
|
|
<template slot="header"><fa icon="users"/>{{ $t('title') }}</template>
|
2018-12-03 16:14:10 +02:00
|
|
|
<button slot="func" :title="$t('title')" @click="refresh">
|
|
|
|
<fa v-if="!fetching && more" icon="arrow-right"/>
|
|
|
|
<fa v-if="!fetching && !more" icon="sync"/>
|
|
|
|
</button>
|
2018-04-19 22:16:48 +03:00
|
|
|
|
2018-04-20 01:45:37 +03:00
|
|
|
<div class="mkw-users--body">
|
2018-11-13 15:45:28 +02:00
|
|
|
<p class="fetching" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
|
2018-04-19 22:16:48 +03:00
|
|
|
<template v-else-if="users.length != 0">
|
|
|
|
<div class="user" v-for="_user in users">
|
2018-04-29 11:17:15 +03:00
|
|
|
<mk-avatar class="avatar" :user="_user"/>
|
2018-04-19 22:16:48 +03:00
|
|
|
<div class="body">
|
2018-12-06 09:09:33 +02:00
|
|
|
<router-link class="name" :to="_user | userPage" v-user-preview="_user.id"><mk-user-name :user="_user"/></router-link>
|
2018-04-19 22:16:48 +03:00
|
|
|
<p class="username">@{{ _user | acct }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2018-11-08 20:44:35 +02:00
|
|
|
<p class="empty" v-else>{{ $t('no-one') }}</p>
|
2018-02-20 00:05:16 +02:00
|
|
|
</div>
|
2018-04-19 22:16:48 +03:00
|
|
|
</mk-widget-container>
|
2018-02-20 00:05:16 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2018-02-24 17:18:09 +02:00
|
|
|
import define from '../../../common/define-widget';
|
2018-11-08 20:44:35 +02:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-20 00:05:16 +02:00
|
|
|
|
|
|
|
const limit = 3;
|
|
|
|
|
|
|
|
export default define({
|
|
|
|
name: 'users',
|
2018-02-21 08:30:03 +02:00
|
|
|
props: () => ({
|
2018-02-20 00:05:16 +02:00
|
|
|
compact: false
|
2018-02-21 08:30:03 +02:00
|
|
|
})
|
2018-02-20 00:05:16 +02:00
|
|
|
}).extend({
|
2018-11-08 20:44:35 +02:00
|
|
|
i18n: i18n('desktop/views/widgets/users.vue'),
|
2018-02-20 00:05:16 +02:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
users: [],
|
|
|
|
fetching: true,
|
2018-12-03 16:14:10 +02:00
|
|
|
more: true,
|
2018-02-20 00:05:16 +02:00
|
|
|
page: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
func() {
|
|
|
|
this.props.compact = !this.props.compact;
|
2018-04-29 11:17:15 +03:00
|
|
|
this.save();
|
2018-02-20 00:05:16 +02:00
|
|
|
},
|
|
|
|
fetch() {
|
|
|
|
this.fetching = true;
|
|
|
|
this.users = [];
|
|
|
|
|
2018-11-09 01:13:34 +02:00
|
|
|
this.$root.api('users/recommendation', {
|
2018-02-20 00:05:16 +02:00
|
|
|
limit: limit,
|
|
|
|
offset: limit * this.page
|
|
|
|
}).then(users => {
|
|
|
|
this.users = users;
|
|
|
|
this.fetching = false;
|
2018-12-03 16:14:10 +02:00
|
|
|
}).catch(() => {
|
|
|
|
this.users = [];
|
|
|
|
this.fetching = false;
|
|
|
|
this.more = false;
|
|
|
|
this.page = 0;
|
2018-02-20 00:05:16 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
refresh() {
|
|
|
|
if (this.users.length < limit) {
|
2018-12-03 16:14:10 +02:00
|
|
|
this.more = false;
|
2018-02-20 00:05:16 +02:00
|
|
|
this.page = 0;
|
|
|
|
} else {
|
2018-12-03 16:14:10 +02:00
|
|
|
this.more = true;
|
2018-02-20 00:05:16 +02:00
|
|
|
this.page++;
|
|
|
|
}
|
|
|
|
this.fetch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 08:26:20 +03:00
|
|
|
.mkw-users
|
2018-04-20 01:45:37 +03:00
|
|
|
.mkw-users--body
|
|
|
|
> .user
|
|
|
|
padding 16px
|
2018-09-28 08:26:20 +03:00
|
|
|
border-bottom solid 1px var(--faceDivider)
|
2018-02-20 00:05:16 +02:00
|
|
|
|
2018-04-20 01:45:37 +03:00
|
|
|
&:last-child
|
|
|
|
border-bottom none
|
2018-02-20 00:05:16 +02:00
|
|
|
|
2018-04-20 01:45:37 +03:00
|
|
|
&:after
|
|
|
|
content ""
|
2018-02-20 00:05:16 +02:00
|
|
|
display block
|
2018-04-20 01:45:37 +03:00
|
|
|
clear both
|
|
|
|
|
2018-04-29 11:17:15 +03:00
|
|
|
> .avatar
|
2018-02-20 00:05:16 +02:00
|
|
|
display block
|
2018-04-20 01:45:37 +03:00
|
|
|
float left
|
|
|
|
margin 0 12px 0 0
|
2018-04-29 11:17:15 +03:00
|
|
|
width 42px
|
|
|
|
height 42px
|
|
|
|
border-radius 8px
|
2018-04-20 01:45:37 +03:00
|
|
|
|
|
|
|
> .body
|
|
|
|
float left
|
|
|
|
width calc(100% - 54px)
|
|
|
|
|
|
|
|
> .name
|
|
|
|
margin 0
|
|
|
|
font-size 16px
|
|
|
|
line-height 24px
|
2018-09-28 08:26:20 +03:00
|
|
|
color var(--text)
|
2018-04-20 01:45:37 +03:00
|
|
|
|
|
|
|
> .username
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
font-size 15px
|
|
|
|
line-height 16px
|
2018-09-28 08:26:20 +03:00
|
|
|
color var(--text)
|
|
|
|
opacity 0.7
|
2018-04-20 01:45:37 +03:00
|
|
|
|
|
|
|
> .empty
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
|
|
|
|
|
|
|
> .fetching
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
|
|
|
|
2018-11-05 18:40:11 +02:00
|
|
|
> [data-icon]
|
2018-04-20 01:45:37 +03:00
|
|
|
margin-right 4px
|
|
|
|
|
2018-02-20 00:05:16 +02:00
|
|
|
</style>
|