2018-02-15 00:32:13 +09:00
|
|
|
<template>
|
2018-09-01 12:58:04 +09:00
|
|
|
<div class="dzsuvbsrrrwobdxifudxuefculdfiaxd">
|
2018-11-09 03:44:35 +09:00
|
|
|
<p class="title"><fa icon="camera"/>{{ $t('title') }}</p>
|
2018-11-13 22:45:28 +09:00
|
|
|
<p class="initializing" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('loading') }}<mk-ellipsis/></p>
|
2018-02-15 00:32:13 +09:00
|
|
|
<div class="stream" v-if="!fetching && images.length > 0">
|
2018-02-19 23:37:09 +09:00
|
|
|
<div v-for="image in images" class="img"
|
2018-09-22 08:49:14 +09:00
|
|
|
:style="`background-image: url(${image.thumbnailUrl})`"
|
2018-02-15 00:32:13 +09:00
|
|
|
></div>
|
|
|
|
</div>
|
2018-11-09 03:44:35 +09:00
|
|
|
<p class="empty" v-if="!fetching && images.length == 0">{{ $t('no-photos') }}</p>
|
2018-02-15 00:32:13 +09:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-09 03:44:35 +09:00
|
|
|
import i18n from '../../../../i18n';
|
2018-02-15 00:32:13 +09:00
|
|
|
export default Vue.extend({
|
2018-11-09 03:44:35 +09:00
|
|
|
i18n: i18n('desktop/views/pages/user/user.photos.vue'),
|
2018-02-15 00:32:13 +09:00
|
|
|
props: ['user'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
images: [],
|
|
|
|
fetching: true
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-12-19 06:04:59 +09:00
|
|
|
const image = [
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
|
|
|
'image/gif'
|
|
|
|
];
|
2019-01-11 08:10:39 +09:00
|
|
|
|
2018-11-09 08:13:34 +09:00
|
|
|
this.$root.api('users/notes', {
|
2018-03-29 14:48:47 +09:00
|
|
|
userId: this.user.id,
|
2018-12-19 06:04:59 +09:00
|
|
|
fileType: image,
|
2019-01-11 08:10:39 +09:00
|
|
|
excludeNsfw: !this.$store.state.device.alwaysShowNsfw,
|
2018-11-13 01:17:59 +09:00
|
|
|
limit: 9,
|
|
|
|
untilDate: new Date().getTime() + 1000 * 86400 * 365
|
2018-04-08 02:30:37 +09:00
|
|
|
}).then(notes => {
|
2018-12-11 20:36:55 +09:00
|
|
|
for (const note of notes) {
|
|
|
|
for (const file of note.files) {
|
2018-09-05 19:32:46 +09:00
|
|
|
if (this.images.length < 9) this.images.push(file);
|
2018-12-11 20:36:55 +09:00
|
|
|
}
|
|
|
|
}
|
2018-02-19 23:37:09 +09:00
|
|
|
this.fetching = false;
|
2018-02-15 00:32:13 +09:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 14:26:20 +09:00
|
|
|
.dzsuvbsrrrwobdxifudxuefculdfiaxd
|
2018-09-26 20:28:13 +09:00
|
|
|
background var(--face)
|
2018-09-22 20:39:12 +09:00
|
|
|
box-shadow var(--shadow)
|
|
|
|
border-radius var(--round)
|
2018-08-28 00:06:04 +09:00
|
|
|
overflow hidden
|
2018-02-15 00:32:13 +09:00
|
|
|
|
|
|
|
> .title
|
|
|
|
z-index 1
|
|
|
|
margin 0
|
|
|
|
padding 0 16px
|
|
|
|
line-height 42px
|
|
|
|
font-size 0.9em
|
|
|
|
font-weight bold
|
2018-09-28 14:26:20 +09:00
|
|
|
background var(--faceHeader)
|
2018-09-27 14:52:10 +09:00
|
|
|
color var(--faceHeaderText)
|
2018-04-29 08:51:17 +09:00
|
|
|
box-shadow 0 1px rgba(#000, 0.07)
|
2018-02-15 00:32:13 +09:00
|
|
|
|
|
|
|
> i
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .stream
|
|
|
|
display flex
|
|
|
|
justify-content center
|
|
|
|
flex-wrap wrap
|
|
|
|
padding 8px
|
|
|
|
|
|
|
|
> .img
|
|
|
|
flex 1 1 33%
|
|
|
|
width 33%
|
|
|
|
height 80px
|
|
|
|
background-position center center
|
|
|
|
background-size cover
|
|
|
|
background-clip content-box
|
|
|
|
border solid 2px transparent
|
|
|
|
|
|
|
|
> .initializing
|
|
|
|
> .empty
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
|
|
|
|
|
|
|
> i
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
</style>
|