2018-02-15 09:33:34 +00:00
|
|
|
<template>
|
2020-11-25 12:31:34 +00:00
|
|
|
<MkContainer>
|
2020-12-26 01:47:36 +00:00
|
|
|
<template #header><Fa :icon="faImage" style="margin-right: 0.5em;"/>{{ $ts.images }}</template>
|
2020-11-25 12:31:34 +00:00
|
|
|
<div class="ujigsodd">
|
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
<div class="stream" v-if="!fetching && images.length > 0">
|
|
|
|
<MkA v-for="image in images"
|
|
|
|
class="img"
|
|
|
|
:style="`background-image: url(${thumbnail(image.file)})`"
|
|
|
|
:to="notePage(image.note)"
|
|
|
|
></MkA>
|
|
|
|
</div>
|
2020-12-26 01:47:36 +00:00
|
|
|
<p class="empty" v-if="!fetching && images.length == 0">{{ $ts.nothing }}</p>
|
2018-02-15 09:33:34 +00:00
|
|
|
</div>
|
2020-11-25 12:31:34 +00:00
|
|
|
</MkContainer>
|
2018-02-15 09:33:34 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2020-11-25 12:31:34 +00:00
|
|
|
import { faImage } from '@fortawesome/free-solid-svg-icons';
|
2020-10-17 11:12:00 +00:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
|
|
|
import notePage from '../../filters/note';
|
|
|
|
import * as os from '@/os';
|
2020-11-25 12:31:34 +00:00
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
2018-03-27 07:51:12 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-11-25 12:31:34 +00:00
|
|
|
components: {
|
|
|
|
MkContainer,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
},
|
2018-02-15 09:33:34 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
2020-11-25 12:31:34 +00:00
|
|
|
images: [],
|
|
|
|
faImage
|
2018-02-15 09:33:34 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-12-18 21:04:59 +00:00
|
|
|
const image = [
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
2019-07-04 05:45:28 +00:00
|
|
|
'image/gif',
|
|
|
|
'image/apng',
|
|
|
|
'image/vnd.mozilla.apng',
|
2018-12-18 21:04:59 +00:00
|
|
|
];
|
2020-10-17 11:12:00 +00:00
|
|
|
os.api('users/notes', {
|
2018-03-29 05:48:47 +00:00
|
|
|
userId: this.user.id,
|
2018-12-18 21:04:59 +00:00
|
|
|
fileType: image,
|
2020-12-19 01:55:52 +00:00
|
|
|
excludeNsfw: this.$store.state.nsfw !== 'ignore',
|
2018-12-18 21:05:44 +00:00
|
|
|
limit: 9,
|
2018-04-07 17:30:37 +00:00
|
|
|
}).then(notes => {
|
2018-12-11 11:36:55 +00:00
|
|
|
for (const note of notes) {
|
2019-04-08 07:34:45 +00:00
|
|
|
for (const file of note.files) {
|
2018-12-11 11:36:55 +00:00
|
|
|
if (this.images.length < 9) {
|
|
|
|
this.images.push({
|
|
|
|
note,
|
2019-04-08 07:34:45 +00:00
|
|
|
file
|
2018-12-11 11:36:55 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-19 14:37:09 +00:00
|
|
|
this.fetching = false;
|
2018-02-15 09:33:34 +00:00
|
|
|
});
|
2019-02-04 21:22:39 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
thumbnail(image: any): string {
|
2020-12-19 01:55:52 +00:00
|
|
|
return this.$store.state.disableShowingAnimatedImages
|
2019-02-04 21:22:39 +00:00
|
|
|
? getStaticImageUrl(image.thumbnailUrl)
|
|
|
|
: image.thumbnailUrl;
|
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
notePage
|
2019-02-04 21:22:39 +00:00
|
|
|
},
|
2018-02-15 09:33:34 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ujigsodd {
|
2020-11-25 12:31:34 +00:00
|
|
|
padding: 8px;
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .stream {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
2018-02-15 09:33:34 +00:00
|
|
|
|
2020-01-29 19:37:25 +00: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;
|
2020-10-17 11:12:00 +00:00
|
|
|
border-radius: 6px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-15 09:33:34 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .empty {
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
2018-02-15 09:33:34 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> i {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-15 09:33:34 +00:00
|
|
|
</style>
|