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

83 lines
1.6 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">
2018-11-13 14:45:28 +01:00
<p class="initializing" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.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>
<p class="empty" v-if="!fetching && images.length == 0">{{ $t('no-photos') }}</p>
2018-02-15 10:33:34 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../../i18n';
2018-03-27 09:51:12 +02:00
2018-02-15 10:33:34 +01:00
export default Vue.extend({
i18n: i18n('mobile/views/pages/user/home.photos.vue'),
2018-02-15 10:33:34 +01:00
props: ['user'],
data() {
return {
fetching: true,
images: []
};
},
mounted() {
2018-11-09 00:13:34 +01:00
this.$root.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-11-12 17:17:59 +01:00
limit: 6,
untilDate: new Date().getTime() + 1000 * 86400 * 365
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>