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

95 lines
2 KiB
Vue
Raw Normal View History

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