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

83 lines
1.6 KiB
Vue
Raw Normal View History

2018-02-14 15:32:13 +00:00
<template>
2018-09-01 03:58:04 +00:00
<div class="vahgrswmbzfdlmomxnqftuueyvwaafth">
<p class="title"><fa icon="users"/>{{ $t('title') }}</p>
2018-11-13 13:45:28 +00:00
<p class="initializing" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('loading') }}<mk-ellipsis/></p>
2018-02-20 13:31:12 +00:00
<div v-if="!fetching && users.length > 0">
2018-04-09 09:52:29 +00:00
<router-link v-for="user in users" :to="user | userPage" :key="user.id">
2018-07-24 14:43:14 +00:00
<img :src="user.avatarUrl" :alt="user | userName" v-user-preview="user.id"/>
2018-02-20 13:31:12 +00:00
</router-link>
2018-02-14 15:32:13 +00:00
</div>
<p class="empty" v-if="!fetching && users.length == 0">{{ $t('no-users') }}</p>
2018-02-14 15:32:13 +00:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../../i18n';
2018-03-27 07:51:12 +00:00
2018-02-14 15:32:13 +00:00
export default Vue.extend({
i18n: i18n('desktop/views/pages/user/user.followers-you-know.vue'),
2018-02-14 15:32:13 +00:00
props: ['user'],
data() {
return {
users: [],
fetching: true
};
},
mounted() {
2018-11-08 23:13:34 +00:00
this.$root.api('users/followers', {
2018-03-29 05:48:47 +00:00
userId: this.user.id,
2018-02-14 15:32:13 +00:00
iknow: true,
limit: 16
}).then(x => {
this.users = x.users;
2018-02-19 14:37:09 +00:00
this.fetching = false;
2018-02-14 15:32:13 +00:00
});
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 10:59:19 +00:00
.vahgrswmbzfdlmomxnqftuueyvwaafth
2018-09-26 11:28:13 +00:00
background var(--face)
2018-09-22 11:39:12 +00:00
box-shadow var(--shadow)
border-radius var(--round)
2018-02-14 15:32:13 +00:00
> .title
z-index 1
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
2018-09-27 05:52:10 +00:00
color var(--faceHeaderText)
2018-04-28 23:51:17 +00:00
box-shadow 0 1px rgba(#000, 0.07)
2018-02-14 15:32:13 +00:00
> 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>