2018-02-11 18:06:22 -06:00
|
|
|
<template>
|
2018-03-26 02:56:46 -05:00
|
|
|
<a class="mk-media-image"
|
2018-02-21 14:57:24 -06:00
|
|
|
:href="image.url"
|
|
|
|
@mousemove="onMousemove"
|
|
|
|
@mouseleave="onMouseleave"
|
|
|
|
@click.prevent="onClick"
|
|
|
|
:style="style"
|
|
|
|
:title="image.name"
|
|
|
|
></a>
|
2018-02-11 18:06:22 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-03-26 02:56:46 -05:00
|
|
|
import MkMediaImageDialog from './media-image-dialog.vue';
|
2018-02-11 18:06:22 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['image'],
|
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
return {
|
2018-03-29 00:48:47 -05:00
|
|
|
'background-color': this.image.properties.avgColor ? `rgb(${this.image.properties.avgColor.join(',')})` : 'transparent',
|
2018-02-11 18:06:22 -06:00
|
|
|
'background-image': `url(${this.image.url}?thumbnail&size=512)`
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onMousemove(e) {
|
2018-02-12 18:27:57 -06:00
|
|
|
const rect = this.$el.getBoundingClientRect();
|
2018-02-11 18:06:22 -06: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 + '%';
|
2018-04-22 03:34:25 -05:00
|
|
|
this.$el.style.backgroundImage = `url("${this.image.url}")`;
|
2018-02-11 18:06:22 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
onMouseleave() {
|
|
|
|
this.$el.style.backgroundPosition = '';
|
|
|
|
},
|
|
|
|
|
2018-02-12 18:27:57 -06:00
|
|
|
onClick() {
|
2018-03-26 02:56:46 -05:00
|
|
|
(this as any).os.new(MkMediaImageDialog, {
|
2018-02-22 08:53:07 -06:00
|
|
|
image: this.image
|
|
|
|
});
|
2018-02-11 18:06:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-26 02:56:46 -05:00
|
|
|
.mk-media-image
|
2018-02-21 14:57:24 -06:00
|
|
|
display block
|
|
|
|
cursor zoom-in
|
2018-02-11 18:06:22 -06:00
|
|
|
overflow hidden
|
2018-02-21 14:57:24 -06:00
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
background-position center
|
2018-02-11 18:06:22 -06:00
|
|
|
border-radius 4px
|
|
|
|
|
2018-02-21 14:57:24 -06:00
|
|
|
&:not(:hover)
|
|
|
|
background-size cover
|
2018-02-11 18:06:22 -06:00
|
|
|
|
|
|
|
</style>
|