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

95 lines
2.0 KiB
Vue
Raw Normal View History

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