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({
|
|
|
|
props: ['image'],
|
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
return {
|
2018-03-29 07:48:47 +02:00
|
|
|
'background-color': this.image.properties.avgColor ? `rgb(${this.image.properties.avgColor.join(',')})` : 'transparent',
|
2018-02-15 07:14:28 +01:00
|
|
|
'background-image': `url(${this.image.url}?thumbnail&size=512)`
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</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>
|