This commit is contained in:
syuilo 2018-02-28 00:34:57 +09:00
parent 41635ca3d3
commit d96c7ae528
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,7 @@
:alt="file.name"
:title="file.name"
@load="onImageLoaded"
:style="`background-color:rgb(${ file.properties.average_color.join(',') })`">
:style="style">
<template v-if="kind != 'image'">%fa:file%</template>
<footer v-if="kind == 'image' && file.properties && file.properties.width && file.properties.height">
<span class="size">
@ -84,6 +84,11 @@ export default Vue.extend({
},
kind(): string {
return this.file.type.split('/')[0];
},
style(): any {
return this.file.properties.average_color ? {
'background-color': `rgb(${ this.file.properties.average_color.join(',') })`
} : {};
}
},
methods: {