79 lines
1.6 KiB
Vue
79 lines
1.6 KiB
Vue
|
<template>
|
||
|
<div class="mk-user-home-photos">
|
||
|
<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">
|
||
|
<a v-for="image in images" :key="image.id"
|
||
|
class="img"
|
||
|
:style="`background-image: url(${image.media.url}?thumbnail&size=256)`"
|
||
|
:href="`/${image.post.user.username}/${image.post.id}`"
|
||
|
></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';
|
||
|
export default Vue.extend({
|
||
|
props: ['user'],
|
||
|
data() {
|
||
|
return {
|
||
|
fetching: true,
|
||
|
images: []
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
this.$root.$data.os.api('users/posts', {
|
||
|
user_id: this.user.id,
|
||
|
with_media: true,
|
||
|
limit: 6
|
||
|
}).then(posts => {
|
||
|
this.fetching = false;
|
||
|
posts.forEach(post => {
|
||
|
post.media.forEach(media => {
|
||
|
if (this.images.length < 9) this.images.push({
|
||
|
post,
|
||
|
media
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" scoped>
|
||
|
.mk-user-home-photos
|
||
|
|
||
|
> .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>
|
||
|
|