2018-02-15 09:33:34 +00:00
|
|
|
<template>
|
2018-02-22 08:32:58 +00:00
|
|
|
<div class="root photos">
|
2018-02-15 09:33:34 +00:00
|
|
|
<p class="initializing" v-if="fetching">%fa:spinner .pulse .fw%%i18n:mobile.tags.mk-user-overview-photos.loading%<mk-ellipsis/></p>
|
|
|
|
<div class="stream" v-if="!fetching && images.length > 0">
|
2018-02-26 21:37:20 +00:00
|
|
|
<a v-for="image in images"
|
2018-02-15 09:33:34 +00:00
|
|
|
class="img"
|
|
|
|
:style="`background-image: url(${image.media.url}?thumbnail&size=256)`"
|
2018-03-27 07:51:12 +00:00
|
|
|
:href="`/@${getAcct(image.post.user)}/${image.post.id}`"
|
2018-02-15 09:33:34 +00:00
|
|
|
></a>
|
|
|
|
</div>
|
|
|
|
<p class="empty" v-if="!fetching && images.length == 0">%i18n:mobile.tags.mk-user-overview-photos.no-photos%</p>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-03-27 07:51:12 +00:00
|
|
|
import getAcct from '../../../../../../common/user/get-acct';
|
|
|
|
|
2018-02-15 09:33:34 +00:00
|
|
|
export default Vue.extend({
|
|
|
|
props: ['user'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
images: []
|
|
|
|
};
|
|
|
|
},
|
2018-03-27 07:51:12 +00:00
|
|
|
methods: {
|
|
|
|
getAcct
|
|
|
|
},
|
2018-02-15 09:33:34 +00:00
|
|
|
mounted() {
|
2018-02-18 03:35:18 +00:00
|
|
|
(this as any).api('users/posts', {
|
2018-02-15 09:33:34 +00:00
|
|
|
user_id: this.user.id,
|
|
|
|
with_media: true,
|
|
|
|
limit: 6
|
|
|
|
}).then(posts => {
|
|
|
|
posts.forEach(post => {
|
|
|
|
post.media.forEach(media => {
|
|
|
|
if (this.images.length < 9) this.images.push({
|
|
|
|
post,
|
|
|
|
media
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-02-19 14:37:09 +00:00
|
|
|
this.fetching = false;
|
2018-02-15 09:33:34 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-02-22 08:32:58 +00:00
|
|
|
.root.photos
|
2018-02-15 09:33:34 +00:00
|
|
|
|
|
|
|
> .stream
|
|
|
|
display -webkit-flex
|
|
|
|
display -moz-flex
|
|
|
|
display -ms-flex
|
|
|
|
display flex
|
|
|
|
justify-content center
|
|
|
|
flex-wrap wrap
|
|
|
|
padding 8px
|
|
|
|
|
|
|
|
> .img
|
|
|
|
flex 1 1 33%
|
|
|
|
width 33%
|
|
|
|
height 80px
|
|
|
|
background-position center center
|
|
|
|
background-size cover
|
|
|
|
background-clip content-box
|
|
|
|
border solid 2px transparent
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
> .initializing
|
|
|
|
> .empty
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
|
|
|
|
|
|
|
> i
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|