Sharkey/src/client/app/desktop/views/pages/user/user.followers-you-know.vue

81 lines
1.4 KiB
Vue
Raw Normal View History

2018-02-14 17:32:13 +02:00
<template>
2018-02-20 18:39:51 +02:00
<div class="followers-you-know">
2018-04-14 23:22:16 +03:00
<p class="title">%fa:users%%i18n:@title%</p>
<p class="initializing" v-if="fetching">%fa:spinner .pulse .fw%%i18n:@loading%<mk-ellipsis/></p>
2018-02-20 15:31:12 +02:00
<div v-if="!fetching && users.length > 0">
2018-04-09 12:52:29 +03:00
<router-link v-for="user in users" :to="user | userPage" :key="user.id">
<img :src="`${user.avatarUrl}?thumbnail&size=64`" :alt="user | userName" v-user-preview="user.id"/>
2018-02-20 15:31:12 +02:00
</router-link>
2018-02-14 17:32:13 +02:00
</div>
2018-04-14 23:22:16 +03:00
<p class="empty" v-if="!fetching && users.length == 0">%i18n:@no-users%</p>
2018-02-14 17:32:13 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-03-27 10:51:12 +03:00
2018-02-14 17:32:13 +02:00
export default Vue.extend({
props: ['user'],
data() {
return {
users: [],
fetching: true
};
},
mounted() {
2018-02-18 05:35:18 +02:00
(this as any).api('users/followers', {
2018-03-29 08:48:47 +03:00
userId: this.user.id,
2018-02-14 17:32:13 +02:00
iknow: true,
limit: 16
}).then(x => {
this.users = x.users;
2018-02-19 16:37:09 +02:00
this.fetching = false;
2018-02-14 17:32:13 +02:00
});
}
});
</script>
<style lang="stylus" scoped>
2018-02-20 18:39:51 +02:00
.followers-you-know
2018-02-14 17:32:13 +02:00
background #fff
border solid 1px rgba(0, 0, 0, 0.075)
border-radius 6px
> .title
z-index 1
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
color #888
box-shadow 0 1px rgba(0, 0, 0, 0.07)
> i
margin-right 4px
> div
padding 8px
> a
display inline-block
margin 4px
> img
width 48px
height 48px
vertical-align bottom
border-radius 100%
> .initializing
> .empty
margin 0
padding 16px
text-align center
color #aaa
> i
margin-right 4px
</style>