2020-02-18 11:47:30 +01:00
|
|
|
<template>
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkContainer :show-header="props.showHeader" :naked="props.transparent" :class="$style.root" :data-transparent="props.transparent ? true : null">
|
|
|
|
<template #header><Fa :icon="faCamera"/>{{ $t('_widgets.photos') }}</template>
|
2020-02-18 11:47:30 +01:00
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
<div class="">
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkLoading v-if="fetching"/>
|
2020-07-11 03:13:11 +02:00
|
|
|
<div v-else :class="$style.stream">
|
|
|
|
<div v-for="(image, i) in images" :key="i"
|
|
|
|
:class="$style.img"
|
|
|
|
:style="`background-image: url(${thumbnail(image)})`"
|
|
|
|
></div>
|
2020-02-18 11:47:30 +01:00
|
|
|
</div>
|
2020-07-11 03:13:11 +02:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkContainer>
|
2020-02-18 11:47:30 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-02-18 11:47:30 +01:00
|
|
|
import { faCamera } from '@fortawesome/free-solid-svg-icons';
|
2020-10-17 13:12:00 +02:00
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
2020-02-18 11:47:30 +01:00
|
|
|
import define from './define';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
|
|
|
import * as os from '@/os';
|
2020-02-18 11:47:30 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
const widget = define({
|
2020-02-18 11:47:30 +01:00
|
|
|
name: 'photos',
|
|
|
|
props: () => ({
|
2020-07-11 03:13:11 +02:00
|
|
|
showHeader: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
transparent: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
},
|
2020-02-18 11:47:30 +01:00
|
|
|
})
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
extends: widget,
|
2020-02-18 11:47:30 +01:00
|
|
|
components: {
|
|
|
|
MkContainer,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
images: [],
|
|
|
|
fetching: true,
|
|
|
|
connection: null,
|
|
|
|
faCamera
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.useSharedConnection('main');
|
2020-02-18 11:47:30 +01:00
|
|
|
|
|
|
|
this.connection.on('driveFileCreated', this.onDriveFileCreated);
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('drive/stream', {
|
2020-02-18 11:47:30 +01:00
|
|
|
type: 'image/*',
|
|
|
|
limit: 9
|
|
|
|
}).then(images => {
|
|
|
|
this.images = images;
|
|
|
|
this.fetching = false;
|
|
|
|
});
|
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
beforeUnmount() {
|
2020-02-18 11:47:30 +01:00
|
|
|
this.connection.dispose();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onDriveFileCreated(file) {
|
|
|
|
if (/^image\/.+$/.test(file.type)) {
|
|
|
|
this.images.unshift(file);
|
|
|
|
if (this.images.length > 9) this.images.pop();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
thumbnail(image: any): string {
|
2020-12-19 02:55:52 +01:00
|
|
|
return this.$store.state.disableShowingAnimatedImages
|
2020-02-18 11:47:30 +01:00
|
|
|
? getStaticImageUrl(image.thumbnailUrl)
|
|
|
|
: image.thumbnailUrl;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
2020-07-11 03:13:11 +02:00
|
|
|
.root[data-transparent] {
|
2020-02-18 11:47:30 +01:00
|
|
|
.stream {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img {
|
|
|
|
border: solid 4px transparent;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
.img {
|
|
|
|
flex: 1 1 33%;
|
|
|
|
width: 33%;
|
|
|
|
height: 80px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
background-clip: content-box;
|
|
|
|
border: solid 2px transparent;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|