2018-02-15 22:19:23 -06:00
|
|
|
<template>
|
|
|
|
<mk-ui>
|
2018-02-22 07:51:33 -06:00
|
|
|
<template slot="header" v-if="!fetching">
|
2018-07-24 09:43:14 -05:00
|
|
|
<img :src="user.avatarUrl" alt="">
|
2018-05-20 06:26:38 -05:00
|
|
|
{{ '%i18n:@followers-of%'.replace('{}', name) }}
|
2018-02-22 07:51:33 -06:00
|
|
|
</template>
|
|
|
|
<mk-users-list
|
|
|
|
v-if="!fetching"
|
|
|
|
:fetch="fetchUsers"
|
2018-03-29 00:48:47 -05:00
|
|
|
:count="user.followersCount"
|
|
|
|
:you-know-count="user.followersYouKnowCount"
|
2018-02-22 07:51:33 -06:00
|
|
|
@loaded="onLoaded"
|
|
|
|
>
|
2018-04-14 11:04:40 -05:00
|
|
|
%i18n:@no-users%
|
2018-02-22 07:51:33 -06:00
|
|
|
</mk-users-list>
|
2018-02-15 22:19:23 -06:00
|
|
|
</mk-ui>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Progress from '../../../common/scripts/loading';
|
2018-07-07 05:19:00 -05:00
|
|
|
import parseAcct from '../../../../../misc/acct/parse';
|
|
|
|
import getUserName from '../../../../../misc/get-user-name';
|
2018-08-06 23:25:50 -05:00
|
|
|
import * as config from '../../../config';
|
2018-02-15 22:19:23 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
user: null
|
|
|
|
};
|
|
|
|
},
|
2018-04-05 11:36:34 -05:00
|
|
|
computed: {
|
|
|
|
name() {
|
|
|
|
return getUserName(this.user);
|
|
|
|
}
|
|
|
|
},
|
2018-02-22 07:51:33 -06:00
|
|
|
watch: {
|
|
|
|
$route: 'fetch'
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
2018-02-15 22:19:23 -06:00
|
|
|
methods: {
|
2018-02-22 07:51:33 -06:00
|
|
|
fetch() {
|
|
|
|
Progress.start();
|
|
|
|
this.fetching = true;
|
|
|
|
|
2018-03-27 02:51:12 -05:00
|
|
|
(this as any).api('users/show', parseAcct(this.$route.params.user)).then(user => {
|
2018-02-22 07:51:33 -06:00
|
|
|
this.user = user;
|
|
|
|
this.fetching = false;
|
|
|
|
|
2018-08-06 23:25:50 -05:00
|
|
|
document.title = '%i18n:@followers-of%'.replace('{}', this.name) + ' | ' + config.name;
|
2018-02-22 07:51:33 -06:00
|
|
|
});
|
|
|
|
},
|
2018-02-15 22:19:23 -06:00
|
|
|
onLoaded() {
|
|
|
|
Progress.done();
|
2018-02-22 07:51:33 -06:00
|
|
|
},
|
|
|
|
fetchUsers(iknow, limit, cursor, cb) {
|
|
|
|
(this as any).api('users/followers', {
|
2018-03-29 00:48:47 -05:00
|
|
|
userId: this.user.id,
|
2018-02-22 07:51:33 -06:00
|
|
|
iknow: iknow,
|
|
|
|
limit: limit,
|
|
|
|
cursor: cursor ? cursor : undefined
|
|
|
|
}).then(cb);
|
2018-02-15 22:19:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|