rudeshark.net/src/client/pages/user/index.photos.vue

97 lines
1.8 KiB
Vue
Raw Normal View History

2018-02-15 10:33:34 +01:00
<template>
<div class="ujigsodd">
<mk-loading v-if="fetching"/>
2018-02-15 10:33:34 +01:00
<div class="stream" v-if="!fetching && images.length > 0">
<router-link v-for="(image, i) in images" :key="i"
2018-02-15 10:33:34 +01:00
class="img"
2019-04-08 09:34:45 +02:00
:style="`background-image: url(${thumbnail(image.file)})`"
:to="image.note | notePage"
></router-link>
2018-02-15 10:33:34 +01:00
</div>
<p class="empty" v-if="!fetching && images.length == 0">{{ $t('nothing') }}</p>
2018-02-15 10:33:34 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { getStaticImageUrl } from '../../scripts/get-static-image-url';
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-12-18 22:04:59 +01:00
const image = [
'image/jpeg',
'image/png',
2019-07-04 07:45:28 +02:00
'image/gif',
'image/apng',
'image/vnd.mozilla.apng',
2018-12-18 22:04:59 +01:00
];
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-04-07 19:30:37 +02:00
}).then(notes => {
for (const note of notes) {
2019-04-08 09:34:45 +02:00
for (const file of note.files) {
if (this.images.length < 9) {
this.images.push({
note,
2019-04-08 09:34:45 +02:00
file
});
}
}
}
2018-02-19 15:37:09 +01:00
this.fetching = false;
2018-02-15 10:33:34 +01:00
});
},
methods: {
thumbnail(image: any): string {
return this.$store.state.device.disableShowingAnimatedImages
? getStaticImageUrl(image.thumbnailUrl)
: image.thumbnailUrl;
},
},
2018-02-15 10:33:34 +01:00
});
</script>
<style lang="scss" scoped>
.ujigsodd {
2018-02-15 10:33:34 +01:00
> .stream {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 8px;
2018-02-15 10:33:34 +01:00
> .img {
flex: 1 1 33%;
width: 33%;
height: 90px;
box-sizing: border-box;
background-position: center center;
background-size: cover;
background-clip: content-box;
border: solid 2px transparent;
border-radius: 4px;
}
}
2018-02-15 10:33:34 +01:00
> .empty {
margin: 0;
padding: 16px;
text-align: center;
2018-02-15 10:33:34 +01:00
> i {
margin-right: 4px;
}
}
}
2018-02-15 10:33:34 +01:00
</style>