rudeshark.net/src/client/app/mobile/views/pages/user/home.photos.vue

80 lines
1.4 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 photos">
<p class="initializing" v-if="fetching"><fa icon="spinner .pulse" fixed-width/>%i18n:@loading%<mk-ellipsis/></p>
2018-02-15 10:33:34 +01:00
<div class="stream" v-if="!fetching && images.length > 0">
2018-02-26 22:37:20 +01:00
<a v-for="image in images"
2018-02-15 10:33:34 +01:00
class="img"
2018-09-22 01:49:14 +02:00
:style="`background-image: url(${image.media.thumbnailUrl})`"
2018-04-09 12:18:15 +02:00
:href="image.note | notePage"
2018-02-15 10:33:34 +01:00
></a>
</div>
2018-04-14 18:04:40 +02:00
<p class="empty" v-if="!fetching && images.length == 0">%i18n:@no-photos%</p>
2018-02-15 10:33:34 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-03-27 09:51:12 +02:00
2018-02-15 10:33:34 +01:00
export default Vue.extend({
props: ['user'],
data() {
return {
fetching: true,
images: []
};
},
mounted() {
2018-04-07 19:30:37 +02:00
(this as any).api('users/notes', {
2018-03-29 07:48:47 +02:00
userId: this.user.id,
2018-09-05 12:32:46 +02:00
withFiles: true,
2018-02-15 10:33:34 +01:00
limit: 6
2018-04-07 19:30:37 +02:00
}).then(notes => {
notes.forEach(note => {
note.media.forEach(media => {
2018-02-15 10:33:34 +01:00
if (this.images.length < 9) this.images.push({
2018-04-07 19:30:37 +02:00
note,
2018-02-15 10:33:34 +01:00
media
});
});
});
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.photos
2018-02-15 10:33:34 +01: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>