1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-12-29 05:58:15 +09:00
MisskeyIO/src/client/app/mobile/views/pages/following.vue

70 lines
1.5 KiB
Vue
Raw Normal View History

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