2018-02-12 01:06:22 +01:00
|
|
|
<template>
|
2018-02-15 07:14:28 +01:00
|
|
|
<div>
|
|
|
|
<a class="mk-images-image"
|
|
|
|
:href="image.url"
|
|
|
|
@mousemove="onMousemove"
|
|
|
|
@mouseleave="onMouseleave"
|
|
|
|
@click.prevent="onClick"
|
|
|
|
:style="style"
|
|
|
|
:title="image.name"
|
|
|
|
></a>
|
|
|
|
</div>
|
2018-02-12 01:06:22 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-13 01:27:57 +01:00
|
|
|
import MkImagesImageDialog from './images-image-dialog.vue';
|
2018-02-12 01:06:22 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['image'],
|
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
return {
|
|
|
|
'background-color': this.image.properties.average_color ? `rgb(${this.image.properties.average_color.join(',')})` : 'transparent',
|
|
|
|
'background-image': `url(${this.image.url}?thumbnail&size=512)`
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onMousemove(e) {
|
2018-02-13 01:27:57 +01:00
|
|
|
const rect = this.$el.getBoundingClientRect();
|
2018-02-12 01:06:22 +01:00
|
|
|
const mouseX = e.clientX - rect.left;
|
|
|
|
const mouseY = e.clientY - rect.top;
|
|
|
|
const xp = mouseX / this.$el.offsetWidth * 100;
|
|
|
|
const yp = mouseY / this.$el.offsetHeight * 100;
|
|
|
|
this.$el.style.backgroundPosition = xp + '% ' + yp + '%';
|
|
|
|
this.$el.style.backgroundImage = 'url("' + this.image.url + '?thumbnail")';
|
|
|
|
},
|
|
|
|
|
|
|
|
onMouseleave() {
|
|
|
|
this.$el.style.backgroundPosition = '';
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:27:57 +01:00
|
|
|
onClick() {
|
|
|
|
document.body.appendChild(new MkImagesImageDialog({
|
|
|
|
propsData: {
|
|
|
|
image: this.image
|
|
|
|
}
|
|
|
|
}).$mount().$el);
|
2018-02-12 01:06:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-images-image
|
|
|
|
overflow hidden
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
> a
|
|
|
|
display block
|
|
|
|
cursor zoom-in
|
|
|
|
overflow hidden
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
background-position center
|
|
|
|
|
|
|
|
&:not(:hover)
|
|
|
|
background-size cover
|
|
|
|
|
|
|
|
</style>
|