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

91 lines
1.7 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-12-18 22:04:59 +01:00
const image = [
'image/jpeg',
'image/png',
'image/gif'
];
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-12-18 22:04:59 +01:00
fileType: image,
2019-01-11 00:10:39 +01:00
excludeNsfw: !this.$store.state.device.alwaysShowNsfw,
2018-12-18 22:05:44 +01:00
limit: 9,
2018-11-12 17:17:59 +01:00
untilDate: new Date().getTime() + 1000 * 86400 * 365
2018-04-07 19:30:37 +02:00
}).then(notes => {
for (const note of notes) {
for (const media of note.media) {
if (this.images.length < 9) {
this.images.push({
note,
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%
2018-12-04 03:02:51 +01:00
height 90px
2018-02-15 10:33:34 +01: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>