2018-02-15 00:14:28 -06:00
|
|
|
<template>
|
2018-03-26 02:56:46 -05:00
|
|
|
<a class="mk-media-image" :href="image.url" target="_blank" :style="style" :title="image.name"></a>
|
2018-02-15 00:14:28 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-05-04 02:27:03 -05:00
|
|
|
props: {
|
|
|
|
image: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
raw: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
2018-02-15 00:14:28 -06:00
|
|
|
computed: {
|
|
|
|
style(): any {
|
|
|
|
return {
|
2018-03-29 00:48:47 -05:00
|
|
|
'background-color': this.image.properties.avgColor ? `rgb(${this.image.properties.avgColor.join(',')})` : 'transparent',
|
2018-05-04 02:27:03 -05:00
|
|
|
'background-image': this.raw ? `url(${this.image.url})` : `url(${this.image.url}?thumbnail&size=512)`
|
2018-02-15 00:14:28 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-26 02:56:46 -05:00
|
|
|
.mk-media-image
|
2018-02-15 00:14:28 -06:00
|
|
|
display block
|
|
|
|
overflow hidden
|
2018-02-21 15:17:02 -06:00
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
background-position center
|
|
|
|
background-size cover
|
2018-02-15 00:14:28 -06:00
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
</style>
|