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

55 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-15 11:33:34 +02:00
<template>
2018-02-22 10:32:58 +02:00
<div class="root friends">
<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:mobile.tags.mk-user-overview-frequently-replied-users.loading%<mk-ellipsis/></p>
2018-02-15 11:33:34 +02: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">%i18n:mobile.tags.mk-user-overview-frequently-replied-users.no-users%</p>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['user'],
data() {
return {
fetching: true,
users: []
};
},
mounted() {
2018-02-18 05:35:18 +02:00
(this as any).api('users/get_frequently_replied_users', {
2018-03-29 08:48:47 +03:00
userId: this.user.id
2018-02-15 11:33:34 +02:00
}).then(res => {
this.users = res.map(x => x.user);
2018-02-19 16:37:09 +02:00
this.fetching = false;
2018-02-15 11:33:34 +02:00
});
}
});
</script>
<style lang="stylus" scoped>
2018-02-22 10:32:58 +02:00
.root.friends
2018-02-15 11:33:34 +02:00
> div
overflow-x scroll
-webkit-overflow-scrolling touch
white-space nowrap
padding 8px
2018-02-16 20:01:00 +02:00
> .mk-user-card
2018-02-15 11:33:34 +02:00
&:not(:last-child)
margin-right 8px
2018-02-22 10:32:58 +02:00
> .fetching
2018-02-15 11:33:34 +02:00
> .empty
margin 0
padding 16px
text-align center
color #aaa
> i
margin-right 4px
</style>