Sharkey/src/client/app/mobile/views/pages/user/home.friends.vue

57 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-15 10:33:34 +01:00
<template>
2018-02-22 09:32:58 +01:00
<div class="root friends">
<p class="fetching" v-if="fetching"><fa icon="spinner .pulse" fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
2018-02-15 10:33:34 +01:00
<div v-if="!fetching && users.length > 0">
<mk-user-card v-for="user in users" :key="user.id" :user="user"/>
</div>
<p class="empty" v-if="!fetching && users.length == 0">{{ $t('no-users') }}</p>
2018-02-15 10:33:34 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../../i18n';
2018-02-15 10:33:34 +01:00
export default Vue.extend({
i18n: i18n('mobile/views/pages/user/home.friends.vue'),
2018-02-15 10:33:34 +01:00
props: ['user'],
data() {
return {
fetching: true,
users: []
};
},
mounted() {
2018-02-18 04:35:18 +01:00
(this as any).api('users/get_frequently_replied_users', {
2018-03-29 07:48:47 +02:00
userId: this.user.id
2018-02-15 10:33:34 +01:00
}).then(res => {
this.users = res.map(x => x.user);
2018-02-19 15:37:09 +01:00
this.fetching = false;
2018-02-15 10:33:34 +01:00
});
}
});
</script>
<style lang="stylus" scoped>
2018-02-22 09:32:58 +01:00
.root.friends
2018-02-15 10:33:34 +01:00
> div
overflow-x scroll
-webkit-overflow-scrolling touch
white-space nowrap
padding 8px
2018-02-16 19:01:00 +01:00
> .mk-user-card
2018-02-15 10:33:34 +01:00
&:not(:last-child)
margin-right 8px
2018-02-22 09:32:58 +01:00
> .fetching
2018-02-15 10:33:34 +01:00
> .empty
margin 0
padding 16px
text-align center
color #aaa
> i
margin-right 4px
</style>