2018-02-15 00:14:28 -06:00
|
|
|
<template>
|
2018-09-14 01:14:59 -05:00
|
|
|
<div class="qjewsnkgzzxlxtzncydssfbgjibiehcy" v-if="image.isSensitive && hide && !$store.state.device.alwaysShowNsfw" @click="hide = false">
|
2018-07-19 12:40:37 -05:00
|
|
|
<div>
|
2018-11-08 12:44:35 -06:00
|
|
|
<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
|
|
|
|
<span>{{ $t('click-to-show') }}</span>
|
2018-07-19 12:40:37 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-01-26 22:29:53 -06:00
|
|
|
<a class="gqnyydlzavusgskkfvwvjiattxdzsqlf" v-else
|
|
|
|
:href="image.url"
|
|
|
|
:style="style"
|
|
|
|
:title="image.name"
|
|
|
|
@click.prevent="onClick"
|
|
|
|
></a>
|
2018-02-15 00:14:28 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../i18n';
|
2019-01-26 22:29:53 -06:00
|
|
|
import ImageViewer from './image-viewer.vue';
|
2019-02-04 12:51:54 -06:00
|
|
|
import { getStaticImageUrl } from '../../../common/scripts/get-static-image-url';
|
2018-02-15 00:14:28 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2019-01-26 22:29:53 -06:00
|
|
|
i18n: i18n('common/views/components/media-image.vue'),
|
2018-05-04 02:27:03 -05:00
|
|
|
props: {
|
|
|
|
image: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
raw: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
2018-09-15 14:31:55 -05:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
hide: true
|
|
|
|
};
|
|
|
|
}
|
2018-02-15 00:14:28 -06:00
|
|
|
computed: {
|
|
|
|
style(): any {
|
2019-02-04 12:51:54 -06:00
|
|
|
let url = `url(${
|
|
|
|
this.$store.state.device.doNotAutoplayAnimation
|
|
|
|
? getStaticImageUrl(this.image.thumbnailUrl)
|
|
|
|
: this.image.thumbnailUrl
|
|
|
|
})`;
|
2018-05-25 06:19:14 -05:00
|
|
|
|
|
|
|
if (this.$store.state.device.loadRemoteMedia || this.$store.state.device.lightmode) {
|
|
|
|
url = null;
|
|
|
|
} else if (this.raw || this.$store.state.device.loadRawImages) {
|
|
|
|
url = `url(${this.image.url})`;
|
|
|
|
}
|
|
|
|
|
2018-02-15 00:14:28 -06:00
|
|
|
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-05-25 06:19:14 -05:00
|
|
|
'background-image': url
|
2018-02-15 00:14:28 -06:00
|
|
|
};
|
|
|
|
}
|
2018-11-07 11:09:15 -06:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onClick() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.new(ImageViewer, {
|
2018-11-07 11:09:15 -06:00
|
|
|
image: this.image
|
|
|
|
});
|
|
|
|
}
|
2018-02-15 00:14:28 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-07-19 12:40:37 -05:00
|
|
|
.gqnyydlzavusgskkfvwvjiattxdzsqlf
|
2018-02-15 00:14:28 -06:00
|
|
|
display block
|
2019-01-26 22:29:53 -06:00
|
|
|
cursor zoom-in
|
2018-02-15 00:14:28 -06:00
|
|
|
overflow hidden
|
2018-02-21 15:17:02 -06:00
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
background-position center
|
2018-11-08 23:10:23 -06:00
|
|
|
background-size contain
|
|
|
|
background-repeat no-repeat
|
2018-07-19 12:40:37 -05:00
|
|
|
|
|
|
|
.qjewsnkgzzxlxtzncydssfbgjibiehcy
|
|
|
|
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 11:08:18 -05:00
|
|
|
> *
|
2018-07-19 12:40:37 -05:00
|
|
|
display block
|
2018-02-15 00:14:28 -06:00
|
|
|
|
|
|
|
</style>
|