2018-02-15 10:33:34 +01:00
|
|
|
<template>
|
2020-01-29 20:37:25 +01:00
|
|
|
<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">
|
2020-05-16 15:08:21 +02:00
|
|
|
<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)})`"
|
2020-05-16 15:08:21 +02:00
|
|
|
:to="image.note | notePage"
|
|
|
|
></router-link>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
2020-07-24 18:36:39 +02:00
|
|
|
<p class="empty" v-if="!fetching && images.length == 0" v-t="'nothing'"></p>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
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 => {
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const note of notes) {
|
2019-04-08 09:34:45 +02:00
|
|
|
for (const file of note.files) {
|
2018-12-11 12:36:55 +01:00
|
|
|
if (this.images.length < 9) {
|
|
|
|
this.images.push({
|
|
|
|
note,
|
2019-04-08 09:34:45 +02:00
|
|
|
file
|
2018-12-11 12:36:55 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-19 15:37:09 +01:00
|
|
|
this.fetching = false;
|
2018-02-15 10:33:34 +01:00
|
|
|
});
|
2019-02-04 22:22:39 +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>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ujigsodd {
|
2018-02-15 10:33:34 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .stream {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 8px;
|
2018-02-15 10:33:34 +01:00
|
|
|
|
2020-01-29 20:37:25 +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
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .empty {
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
2018-02-15 10:33:34 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> i {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-15 10:33:34 +01:00
|
|
|
</style>
|