Sharkey/src/client/app/desktop/views/pages/user/user.photos.vue

97 lines
1.9 KiB
Vue
Raw Normal View History

2018-02-14 17:32:13 +02:00
<template>
2018-09-01 06:58:04 +03:00
<div class="dzsuvbsrrrwobdxifudxuefculdfiaxd">
2018-04-14 23:22:16 +03:00
<p class="title">%fa:camera%%i18n:@title%</p>
<p class="initializing" v-if="fetching">%fa:spinner .pulse .fw%%i18n:@loading%<mk-ellipsis/></p>
2018-02-14 17:32:13 +02:00
<div class="stream" v-if="!fetching && images.length > 0">
2018-02-19 16:37:09 +02:00
<div v-for="image in images" class="img"
2018-09-22 02:49:14 +03:00
:style="`background-image: url(${image.thumbnailUrl})`"
2018-02-14 17:32:13 +02:00
></div>
</div>
2018-04-14 23:22:16 +03:00
<p class="empty" v-if="!fetching && images.length == 0">%i18n:@no-photos%</p>
2018-02-14 17:32:13 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['user'],
data() {
return {
images: [],
fetching: true
};
},
mounted() {
2018-04-07 20:30:37 +03:00
(this as any).api('users/notes', {
2018-03-29 08:48:47 +03:00
userId: this.user.id,
2018-09-05 13:32:46 +03:00
withFiles: true,
2018-02-14 17:32:13 +02:00
limit: 9
2018-04-07 20:30:37 +03:00
}).then(notes => {
notes.forEach(note => {
2018-09-05 13:32:46 +03:00
note.files.forEach(file => {
if (this.images.length < 9) this.images.push(file);
2018-02-14 17:32:13 +02:00
});
});
2018-02-19 16:37:09 +02:00
this.fetching = false;
2018-02-14 17:32:13 +02:00
});
}
});
</script>
<style lang="stylus" scoped>
2018-08-27 17:45:35 +03:00
root(isDark)
background isDark ? #282C37 : #fff
2018-04-29 02:51:17 +03:00
border solid 1px rgba(#000, 0.075)
2018-02-14 17:32:13 +02:00
border-radius 6px
2018-08-27 18:06:04 +03:00
overflow hidden
2018-02-14 17:32:13 +02:00
> .title
z-index 1
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
2018-08-27 17:45:35 +03:00
background: isDark ? #313543 : inherit
color isDark ? #e3e5e8 : #888
2018-04-29 02:51:17 +03:00
box-shadow 0 1px rgba(#000, 0.07)
2018-02-14 17:32:13 +02:00
> i
margin-right 4px
> .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%
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
2018-09-01 06:58:04 +03:00
.dzsuvbsrrrwobdxifudxuefculdfiaxd[data-darkmode]
2018-08-27 17:45:35 +03:00
root(true)
2018-09-01 06:58:04 +03:00
.dzsuvbsrrrwobdxifudxuefculdfiaxd:not([data-darkmode])
2018-08-27 17:45:35 +03:00
root(false)
2018-02-14 17:32:13 +02:00
</style>