Sharkey/src/client/app/desktop/views/widgets/users.vue

148 lines
2.8 KiB
Vue
Raw Normal View History

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">
<template slot="header">%fa:users%%i18n:@title%</template>
<button slot="func" title="%i18n:@refresh%" @click="refresh">%fa:sync%</button>
2018-04-20 01:45:37 +03:00
<div class="mkw-users--body">
2018-04-19 22:16:48 +03:00
<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:common.loading%<mk-ellipsis/></p>
<template v-else-if="users.length != 0">
<div class="user" v-for="_user in users">
<router-link class="avatar-anchor" :to="_user | userPage">
<img class="avatar" :src="`${_user.avatarUrl}?thumbnail&size=42`" alt="" v-user-preview="_user.id"/>
</router-link>
<div class="body">
<router-link class="name" :to="_user | userPage" v-user-preview="_user.id">{{ _user | userName }}</router-link>
<p class="username">@{{ _user | acct }}</p>
</div>
<mk-follow-button :user="_user"/>
</div>
</template>
<p class="empty" v-else>%i18n:@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-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({
data() {
return {
users: [],
fetching: true,
page: 0
};
},
mounted() {
this.fetch();
},
methods: {
func() {
this.props.compact = !this.props.compact;
},
fetch() {
this.fetching = true;
this.users = [];
(this as any).api('users/recommendation', {
limit: limit,
offset: limit * this.page
}).then(users => {
this.users = users;
this.fetching = false;
});
},
refresh() {
if (this.users.length < limit) {
this.page = 0;
} else {
this.page++;
}
this.fetch();
}
}
});
</script>
<style lang="stylus" scoped>
2018-04-19 22:16:48 +03:00
root(isDark)
2018-04-20 01:45:37 +03:00
.mkw-users--body
> .user
padding 16px
border-bottom solid 1px isDark ? #1c2023 : #eee
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
> .avatar-anchor
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
> .avatar
display block
width 42px
height 42px
margin 0
border-radius 8px
vertical-align bottom
> .body
float left
width calc(100% - 54px)
> .name
margin 0
font-size 16px
line-height 24px
color isDark ? #fff : #555
> .username
display block
margin 0
font-size 15px
line-height 16px
color isDark ? #606984 : #ccc
> .mk-follow-button
position absolute
top 16px
right 16px
> .empty
margin 0
padding 16px
text-align center
color #aaa
> .fetching
margin 0
padding 16px
text-align center
color #aaa
> [data-fa]
margin-right 4px
.mkw-users[data-darkmode]
2018-04-19 22:16:48 +03:00
root(true)
2018-04-20 01:45:37 +03:00
.mkw-users:not([data-darkmode])
2018-04-19 22:16:48 +03:00
root(false)
2018-02-20 00:05:16 +02:00
</style>