Sharkey/src/client/app/mobile/views/pages/following.vue

68 lines
1.3 KiB
Vue
Raw Normal View History

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