2018-02-15 09:33:34 +00:00
|
|
|
<template>
|
2018-02-22 08:32:58 +00:00
|
|
|
<div class="root photos">
|
2018-11-13 13:45:28 +00:00
|
|
|
<p class="initializing" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
|
2018-02-15 09:33:34 +00:00
|
|
|
<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"
|
2018-09-21 23:49:14 +00:00
|
|
|
:style="`background-image: url(${image.media.thumbnailUrl})`"
|
2018-04-09 10:18:15 +00:00
|
|
|
:href="image.note | notePage"
|
2018-02-15 09:33:34 +00:00
|
|
|
></a>
|
|
|
|
</div>
|
2018-11-08 18:44:35 +00:00
|
|
|
<p class="empty" v-if="!fetching && images.length == 0">{{ $t('no-photos') }}</p>
|
2018-02-15 09:33:34 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 18:44:35 +00:00
|
|
|
import i18n from '../../../../i18n';
|
2018-03-27 07:51:12 +00:00
|
|
|
|
2018-02-15 09:33:34 +00:00
|
|
|
export default Vue.extend({
|
2018-11-08 18:44:35 +00:00
|
|
|
i18n: i18n('mobile/views/pages/user/home.photos.vue'),
|
2018-02-15 09:33:34 +00:00
|
|
|
props: ['user'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
images: []
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-11-08 23:13:34 +00:00
|
|
|
this.$root.api('users/notes', {
|
2018-03-29 05:48:47 +00:00
|
|
|
userId: this.user.id,
|
2018-09-05 10:32:46 +00:00
|
|
|
withFiles: true,
|
2018-11-12 16:17:59 +00:00
|
|
|
limit: 6,
|
|
|
|
untilDate: new Date().getTime() + 1000 * 86400 * 365
|
2018-04-07 17:30:37 +00:00
|
|
|
}).then(notes => {
|
|
|
|
notes.forEach(note => {
|
|
|
|
note.media.forEach(media => {
|
2018-02-15 09:33:34 +00:00
|
|
|
if (this.images.length < 9) this.images.push({
|
2018-04-07 17:30:37 +00:00
|
|
|
note,
|
2018-02-15 09:33:34 +00:00
|
|
|
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%
|
2018-12-04 02:02:51 +00:00
|
|
|
height 90px
|
2018-02-15 09:33:34 +00:00
|
|
|
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>
|
|
|
|
|