2018-02-11 18:06:22 -06:00
|
|
|
<template>
|
2018-07-19 12:40:37 -05:00
|
|
|
<div class="ldwbgwstjsdgcjruamauqdrffetqudry" v-if="image.isSensitive && hide" @click="hide = false">
|
|
|
|
<div>
|
|
|
|
<b>%fa:exclamation-triangle% %i18n:@sensitive%</b>
|
|
|
|
<span>%i18n:@click-to-show%</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<a class="lcjomzwbohoelkxsnuqjiaccdbdfiazy" v-else
|
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({
|
2018-05-04 02:27:03 -05:00
|
|
|
props: {
|
|
|
|
image: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
raw: {
|
|
|
|
default: false
|
2018-07-19 12:40:37 -05:00
|
|
|
},
|
|
|
|
hide: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
2018-05-04 02:27:03 -05:00
|
|
|
}
|
|
|
|
},
|
2018-02-11 18:06:22 -06:00
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
return {
|
2018-05-18 01:31:28 -05:00
|
|
|
'background-color': this.image.properties.avgColor && this.image.properties.avgColor.length == 3 ? `rgb(${this.image.properties.avgColor.join(',')})` : 'transparent',
|
2018-08-15 17:17:04 -05:00
|
|
|
'background-image': this.raw ? `url(${this.image.url})` : `url(${this.image.thumbnailUrl})`
|
2018-02-11 18:06:22 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
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;
|
2018-09-01 09:12:51 -05:00
|
|
|
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-07-19 12:40:37 -05:00
|
|
|
.lcjomzwbohoelkxsnuqjiaccdbdfiazy
|
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
|
|
|
|
2018-02-21 14:57:24 -06:00
|
|
|
&:not(:hover)
|
|
|
|
background-size cover
|
2018-02-11 18:06:22 -06:00
|
|
|
|
2018-07-19 12:40:37 -05:00
|
|
|
.ldwbgwstjsdgcjruamauqdrffetqudry
|
|
|
|
display flex
|
|
|
|
justify-content center
|
|
|
|
align-items center
|
|
|
|
background #111
|
|
|
|
color #fff
|
|
|
|
|
|
|
|
> div
|
|
|
|
display table-cell
|
|
|
|
text-align center
|
|
|
|
font-size 12px
|
|
|
|
|
|
|
|
> b
|
|
|
|
display block
|
|
|
|
|
2018-02-11 18:06:22 -06:00
|
|
|
</style>
|