2018-02-14 21:36:42 -06:00
|
|
|
<template>
|
2018-02-26 03:59:26 -06:00
|
|
|
<div class="mkw-slideshow" :data-mobile="isMobile">
|
2018-02-14 21:36:42 -06:00
|
|
|
<div @click="choose">
|
2018-02-25 07:50:26 -06:00
|
|
|
<p v-if="props.folder === undefined">
|
|
|
|
<template v-if="isCustomizeMode">フォルダを指定するには、カスタマイズモードを終了してください</template>
|
|
|
|
<template v-else>クリックしてフォルダを指定してください</template>
|
|
|
|
</p>
|
2018-02-21 10:08:49 -06:00
|
|
|
<p v-if="props.folder !== undefined && images.length == 0 && !fetching">このフォルダには画像がありません</p>
|
2018-02-14 21:36:42 -06:00
|
|
|
<div ref="slideA" class="slide a"></div>
|
|
|
|
<div ref="slideB" class="slide b"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import * as anime from 'animejs';
|
2018-02-24 09:18:09 -06:00
|
|
|
import define from '../../../common/define-widget';
|
2018-02-14 21:36:42 -06:00
|
|
|
export default define({
|
|
|
|
name: 'slideshow',
|
2018-02-21 00:30:03 -06:00
|
|
|
props: () => ({
|
2018-02-14 21:36:42 -06:00
|
|
|
folder: undefined,
|
|
|
|
size: 0
|
2018-02-21 00:30:03 -06:00
|
|
|
})
|
2018-02-14 21:36:42 -06:00
|
|
|
}).extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
images: [],
|
|
|
|
fetching: true,
|
|
|
|
clock: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2018-02-18 03:40:24 -06:00
|
|
|
this.$nextTick(() => {
|
2018-02-14 21:36:42 -06:00
|
|
|
this.applySize();
|
|
|
|
});
|
|
|
|
|
|
|
|
if (this.props.folder !== undefined) {
|
|
|
|
this.fetch();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.clock = setInterval(this.change, 10000);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
clearInterval(this.clock);
|
|
|
|
},
|
|
|
|
methods: {
|
2018-02-25 07:50:26 -06:00
|
|
|
func() {
|
|
|
|
this.resize();
|
|
|
|
},
|
2018-02-14 21:36:42 -06:00
|
|
|
applySize() {
|
|
|
|
let h;
|
|
|
|
|
|
|
|
if (this.props.size == 1) {
|
|
|
|
h = 250;
|
|
|
|
} else {
|
|
|
|
h = 170;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$el.style.height = `${h}px`;
|
|
|
|
},
|
|
|
|
resize() {
|
|
|
|
if (this.props.size == 1) {
|
|
|
|
this.props.size = 0;
|
|
|
|
} else {
|
|
|
|
this.props.size++;
|
|
|
|
}
|
2018-04-29 03:17:15 -05:00
|
|
|
this.save();
|
2018-02-14 21:36:42 -06:00
|
|
|
|
|
|
|
this.applySize();
|
|
|
|
},
|
|
|
|
change() {
|
|
|
|
if (this.images.length == 0) return;
|
|
|
|
|
|
|
|
const index = Math.floor(Math.random() * this.images.length);
|
|
|
|
const img = `url(${ this.images[index].url }?thumbnail&size=1024)`;
|
|
|
|
|
|
|
|
(this.$refs.slideB as any).style.backgroundImage = img;
|
|
|
|
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.slideB,
|
|
|
|
opacity: 1,
|
|
|
|
duration: 1000,
|
|
|
|
easing: 'linear',
|
|
|
|
complete: () => {
|
2018-03-04 03:14:13 -06:00
|
|
|
// 既にこのウィジェットがunmountされていたら要素がない
|
|
|
|
if ((this.$refs.slideA as any) == null) return;
|
|
|
|
|
2018-02-14 21:36:42 -06:00
|
|
|
(this.$refs.slideA as any).style.backgroundImage = img;
|
|
|
|
anime({
|
|
|
|
targets: this.$refs.slideB,
|
|
|
|
opacity: 0,
|
|
|
|
duration: 0
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
fetch() {
|
|
|
|
this.fetching = true;
|
|
|
|
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).api('drive/files', {
|
2018-03-29 00:48:47 -05:00
|
|
|
folderId: this.props.folder,
|
2018-02-14 21:36:42 -06:00
|
|
|
type: 'image/*',
|
|
|
|
limit: 100
|
|
|
|
}).then(images => {
|
|
|
|
this.images = images;
|
2018-02-19 08:37:09 -06:00
|
|
|
this.fetching = false;
|
2018-02-14 21:36:42 -06:00
|
|
|
(this.$refs.slideA as any).style.backgroundImage = '';
|
|
|
|
(this.$refs.slideB as any).style.backgroundImage = '';
|
|
|
|
this.change();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
choose() {
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).apis.chooseDriveFolder().then(folder => {
|
2018-02-14 21:36:42 -06:00
|
|
|
this.props.folder = folder ? folder.id : null;
|
2018-04-29 03:17:15 -05:00
|
|
|
this.save();
|
2018-02-14 21:36:42 -06:00
|
|
|
this.fetch();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mkw-slideshow
|
|
|
|
overflow hidden
|
|
|
|
background #fff
|
2018-04-28 18:51:17 -05:00
|
|
|
border solid 1px rgba(#000, 0.075)
|
2018-02-14 21:36:42 -06:00
|
|
|
border-radius 6px
|
|
|
|
|
2018-02-26 03:59:26 -06:00
|
|
|
&[data-mobile]
|
|
|
|
border none
|
|
|
|
border-radius 8px
|
2018-04-28 18:51:17 -05:00
|
|
|
box-shadow 0 0 0 1px rgba(#000, 0.2)
|
2018-02-26 03:59:26 -06:00
|
|
|
|
2018-02-14 21:36:42 -06:00
|
|
|
> div
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
cursor pointer
|
|
|
|
|
2018-02-25 07:50:26 -06:00
|
|
|
> p
|
|
|
|
display block
|
|
|
|
margin 1em
|
|
|
|
text-align center
|
|
|
|
color #888
|
|
|
|
|
2018-02-14 21:36:42 -06:00
|
|
|
> *
|
|
|
|
pointer-events none
|
|
|
|
|
|
|
|
> .slide
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
background-size cover
|
|
|
|
background-position center
|
|
|
|
|
|
|
|
&.b
|
|
|
|
opacity 0
|
|
|
|
|
|
|
|
</style>
|