2018-02-15 07:14:28 +01:00
|
|
|
<template>
|
2018-03-26 09:56:46 +02:00
|
|
|
<a class="mk-media-image" :href="image.url" target="_blank" :style="style" :title="image.name"></a>
|
2018-02-15 07:14:28 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-05-04 09:27:03 +02:00
|
|
|
props: {
|
|
|
|
image: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
raw: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
2018-02-15 07:14:28 +01:00
|
|
|
computed: {
|
|
|
|
style(): any {
|
2018-05-25 13:19:14 +02:00
|
|
|
let url = `url(${this.image.url}?thumbnail)`;
|
|
|
|
|
|
|
|
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 {
|
2018-05-18 08:31:28 +02:00
|
|
|
'background-color': this.image.properties.avgColor && this.image.properties.avgColor.length == 3 ? `rgb(${this.image.properties.avgColor.join(',')})` : 'transparent',
|
2018-05-25 13:19:14 +02:00
|
|
|
'background-image': url
|
2018-02-15 07:14:28 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-26 09:56:46 +02:00
|
|
|
.mk-media-image
|
2018-02-15 07:14:28 +01:00
|
|
|
display block
|
|
|
|
overflow hidden
|
2018-02-21 22:17:02 +01:00
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
background-position center
|
|
|
|
background-size cover
|
2018-02-15 07:14:28 +01:00
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
</style>
|