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

111 lines
2.2 KiB
Vue
Raw Normal View History

2018-02-15 07:14:28 +01:00
<template>
<div class="qjewsnkgzzxlxtzncydssfbgjibiehcy" 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"/> {{ $t('sensitive') }}</b>
<span>{{ $t('click-to-show') }}</span>
2018-07-19 19:40:37 +02:00
</div>
</div>
2019-01-27 05:29:53 +01:00
<a class="gqnyydlzavusgskkfvwvjiattxdzsqlf" v-else
:href="image.url"
:style="style"
:title="image.name"
@click.prevent="onClick"
2019-02-13 13:43:58 +01:00
>
<div v-if="image.type === 'image/gif'">GIF</div>
</a>
2018-02-15 07:14:28 +01:00
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2019-01-27 05:29:53 +01:00
import ImageViewer from './image-viewer.vue';
import { getStaticImageUrl } from '../../../common/scripts/get-static-image-url';
2018-02-15 07:14:28 +01:00
export default Vue.extend({
2019-01-27 05:29:53 +01:00
i18n: i18n('common/views/components/media-image.vue'),
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-15 07:14:28 +01:00
computed: {
style(): any {
let url = `url(${
2019-02-04 20:09:44 +01: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 07:14:28 +01:00
return {
2019-04-08 12:56:42 +02:00
'background-color': this.image.properties.avgColor || 'transparent',
'background-image': url
2018-02-15 07:14:28 +01:00
};
}
2018-11-07 18:09:15 +01:00
},
methods: {
onClick() {
2018-11-09 00:13:34 +01:00
this.$root.new(ImageViewer, {
2018-11-07 18:09:15 +01:00
image: this.image
});
}
2018-02-15 07:14:28 +01:00
}
});
</script>
<style lang="stylus" scoped>
2018-07-19 19:40:37 +02:00
.gqnyydlzavusgskkfvwvjiattxdzsqlf
2018-02-15 07:14:28 +01:00
display block
2019-01-27 05:29:53 +01:00
cursor zoom-in
2018-02-15 07:14:28 +01:00
overflow hidden
2018-02-21 22:17:02 +01:00
width 100%
height 100%
background-position center
2018-11-09 06:10:23 +01:00
background-size contain
background-repeat no-repeat
2018-07-19 19:40:37 +02:00
2019-02-13 13:43:58 +01:00
> div
background-color var(--text)
2019-02-28 04:49:13 +01:00
border-radius 6px
2019-02-13 13:43:58 +01:00
color var(--secondary)
display inline-block
font-size 14px
2019-02-13 13:47:53 +01:00
font-weight bold
left 12px
2019-02-13 13:43:58 +01:00
opacity .5
2019-02-13 13:47:53 +01:00
padding 0 6px
2019-02-13 13:43:58 +01:00
text-align center
2019-02-13 13:47:53 +01:00
top 12px
2019-02-13 13:48:20 +01:00
pointer-events none
2019-02-13 13:43:58 +01:00
2018-07-19 19:40:37 +02: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 18:08:18 +02:00
> *
2018-07-19 19:40:37 +02:00
display block
2018-02-15 07:14:28 +01:00
</style>