Sharkey/src/client/app/desktop/views/components/media-image.vue

72 lines
1.5 KiB
Vue
Raw Normal View History

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