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

64 lines
1.4 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({
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 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 + '%';
this.$el.style.backgroundImage = 'url("' + this.image.url + '?thumbnail")';
},
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>