Sharkey/src/web/app/desktop/views/pages/user/user.friends.vue

120 lines
2.3 KiB
Vue
Raw Normal View History

2018-02-14 17:32:13 +02:00
<template>
2018-02-20 18:39:51 +02:00
<div class="friends">
2018-02-14 17:32:13 +02:00
<p class="title">%fa:users%%i18n:desktop.tags.mk-user.frequently-replied-users.title%</p>
<p class="initializing" v-if="fetching">%fa:spinner .pulse .fw%%i18n:desktop.tags.mk-user.frequently-replied-users.loading%<mk-ellipsis/></p>
2018-02-19 16:37:09 +02:00
<template v-if="!fetching && users.length != 0">
<div class="user" v-for="friend in users">
2018-02-20 15:53:34 +02:00
<router-link class="avatar-anchor" :to="`/${friend.username}`">
2018-02-19 16:37:09 +02:00
<img class="avatar" :src="`${friend.avatar_url}?thumbnail&size=42`" alt="" v-user-preview="friend.id"/>
</router-link>
<div class="body">
2018-02-20 15:53:34 +02:00
<router-link class="name" :to="`/${friend.username}`" v-user-preview="friend.id">{{ friend.name }}</router-link>
2018-02-19 16:37:09 +02:00
<p class="username">@{{ friend.username }}</p>
</div>
<mk-follow-button :user="friend"/>
2018-02-14 17:32:13 +02:00
</div>
2018-02-19 16:37:09 +02:00
</template>
2018-02-14 17:32:13 +02:00
<p class="empty" v-if="!fetching && users.length == 0">%i18n:desktop.tags.mk-user.frequently-replied-users.no-users%</p>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['user'],
data() {
return {
users: [],
fetching: true
};
},
mounted() {
2018-02-18 05:35:18 +02:00
(this as any).api('users/get_frequently_replied_users', {
2018-02-14 17:32:13 +02:00
user_id: this.user.id,
limit: 4
}).then(docs => {
this.users = docs.map(doc => doc.user);
2018-02-19 16:37:09 +02:00
this.fetching = false;
2018-02-14 17:32:13 +02:00
});
}
});
</script>
<style lang="stylus" scoped>
2018-02-20 18:39:51 +02:00
.friends
2018-02-14 17:32:13 +02:00
background #fff
border solid 1px rgba(0, 0, 0, 0.075)
border-radius 6px
> .title
z-index 1
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
color #888
box-shadow 0 1px rgba(0, 0, 0, 0.07)
> i
margin-right 4px
> .initializing
> .empty
margin 0
padding 16px
text-align center
color #aaa
> i
margin-right 4px
> .user
padding 16px
border-bottom solid 1px #eee
&:last-child
border-bottom none
&:after
content ""
display block
clear both
> .avatar-anchor
display block
float left
margin 0 12px 0 0
> .avatar
display block
width 42px
height 42px
margin 0
border-radius 8px
vertical-align bottom
> .body
float left
width calc(100% - 54px)
> .name
margin 0
font-size 16px
line-height 24px
color #555
> .username
display block
margin 0
font-size 15px
line-height 16px
color #ccc
2018-02-16 20:01:00 +02:00
> .mk-follow-button
2018-02-14 17:32:13 +02:00
position absolute
top 16px
right 16px
</style>