update flex-grow calculation logic

This commit is contained in:
taehoon 2019-10-21 15:13:11 -04:00
parent 0396c6f29d
commit ad04522206
2 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
import Attachment from '../attachment/attachment.vue' import Attachment from '../attachment/attachment.vue'
import { chunk, last, dropRight } from 'lodash' import { chunk, last, dropRight, sumBy } from 'lodash'
const Gallery = { const Gallery = {
props: [ props: [
@ -39,13 +39,13 @@ const Gallery = {
rowStyle (itemsPerRow) { rowStyle (itemsPerRow) {
return { 'padding-bottom': `${(100 / (itemsPerRow + 0.6))}%` } return { 'padding-bottom': `${(100 / (itemsPerRow + 0.6))}%` }
}, },
itemStyle (id) { itemStyle (id, row) {
const total = sumBy(row, item => this.getAspectRatio(item.id))
return { flexGrow: this.getAspectRatio(id) / total }
},
getAspectRatio (id) {
const size = this.sizes[id] const size = this.sizes[id]
if (size) { return size ? size.width / size.height : 1
return { flex: size.width / size.height }
} else {
return {}
}
} }
} }
} }

View File

@ -19,7 +19,7 @@
:attachment="attachment" :attachment="attachment"
:allow-play="false" :allow-play="false"
:natural-size-load="onNaturalSizeLoad.bind(null, attachment.id)" :natural-size-load="onNaturalSizeLoad.bind(null, attachment.id)"
:style="itemStyle(attachment.id)" :style="itemStyle(attachment.id, row)"
/> />
</div> </div>
</div> </div>