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

82 lines
1.6 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"/> {{ $t('sensitive') }}</b>
<span>{{ $t('click-to-show') }}</span>
2018-07-19 19:40:37 +02:00
</div>
</div>
<a class="lcjomzwbohoelkxsnuqjiaccdbdfiazy" v-else
2018-02-21 21:57:24 +01:00
:href="image.url"
@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 i18n from '../../../i18n';
2018-11-07 18:09:15 +01:00
import ImageViewer from '../../../common/views/components/image-viewer.vue';
2018-02-12 01:06:22 +01:00
export default Vue.extend({
i18n: i18n('desktop/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-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: {
2018-02-13 01:27:57 +01:00
onClick() {
2018-11-09 00:13:34 +01:00
this.$root.new(ImageViewer, {
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-11-09 06:10:23 +01:00
background-size contain
background-repeat no-repeat
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>