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

97 lines
2 KiB
Vue
Raw Normal View History

2018-02-12 01:06:22 +01:00
<template>
<div class="ldwbgwstjsdgcjruamauqdrffetqudry" v-if="image.isSensitive && hide && !$store.state.device.alwaysShowNsfw" @click="hide = false">
2018-07-19 19:40:37 +02:00
<div>
<b><fa icon="exclamation-triangle"/> %i18n:@sensitive%</b>
2018-07-19 19:40:37 +02:00
<span>%i18n:@click-to-show%</span>
</div>
</div>
<a class="lcjomzwbohoelkxsnuqjiaccdbdfiazy" v-else
2018-02-21 21:57:24 +01:00
:href="image.url"
@mousemove="onMousemove"
@mouseleave="onMouseleave"
@click.prevent="onClick"
:style="style"
:title="image.name"
></a>
2018-02-12 01:06:22 +01:00
</template>
<script lang="ts">
import Vue from 'vue';
import MkMediaImageDialog from './media-image-dialog.vue';
2018-02-12 01:06:22 +01:00
export default Vue.extend({
2018-05-04 09:27:03 +02:00
props: {
image: {
type: Object,
required: true
},
raw: {
default: false
}
},
2018-09-15 21:31:55 +02:00
data() {
return {
hide: true
};
},
2018-02-12 01:06:22 +01: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-08-16 00:17:04 +02:00
'background-image': this.raw ? `url(${this.image.url})` : `url(${this.image.thumbnailUrl})`
2018-02-12 01:06:22 +01:00
};
}
},
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;
2018-09-01 18:09:27 +02:00
this.$el.style.backgroundPosition = `${xp}% ${yp}%`;
2018-04-22 10:34:25 +02:00
this.$el.style.backgroundImage = `url("${this.image.url}")`;
2018-02-12 01:06:22 +01:00
},
onMouseleave() {
this.$el.style.backgroundPosition = '';
},
2018-02-13 01:27:57 +01:00
onClick() {
(this as any).os.new(MkMediaImageDialog, {
2018-02-22 15:53:07 +01:00
image: this.image
});
2018-02-12 01:06:22 +01:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-07-19 19:40:37 +02:00
.lcjomzwbohoelkxsnuqjiaccdbdfiazy
2018-02-21 21:57:24 +01:00
display block
cursor zoom-in
2018-02-12 01:06:22 +01:00
overflow hidden
2018-02-21 21:57:24 +01:00
width 100%
height 100%
background-position center
2018-02-12 01:06:22 +01:00
2018-02-21 21:57:24 +01:00
&:not(:hover)
background-size cover
2018-02-12 01:06:22 +01:00
2018-07-19 19:40:37 +02:00
.ldwbgwstjsdgcjruamauqdrffetqudry
display flex
justify-content center
align-items center
background #111
color #fff
> div
display table-cell
text-align center
font-size 12px
2018-09-04 18:08:18 +02:00
> *
2018-07-19 19:40:37 +02:00
display block
2018-02-12 01:06:22 +01:00
</style>