generate idObj at timeline level

This commit is contained in:
taehoon 2019-08-15 13:16:55 -04:00
parent 4b444708f2
commit 1146119d6a
4 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
import { reduce, filter, findIndex, clone, keyBy } from 'lodash' import { reduce, filter, findIndex, clone } from 'lodash'
import Status from '../status/status.vue' import Status from '../status/status.vue'
const sortById = (a, b) => { const sortById = (a, b) => {
@ -42,7 +42,7 @@ const conversation = {
'statusoid', 'statusoid',
'collapsable', 'collapsable',
'isPage', 'isPage',
'pinnedStatusIds' 'pinnedStatusIdsObject'
], ],
created () { created () {
if (this.isPage) { if (this.isPage) {
@ -104,9 +104,6 @@ const conversation = {
}, },
isExpanded () { isExpanded () {
return this.expanded || this.isPage return this.expanded || this.isPage
},
pinnedStatusIdsObject () {
return keyBy(this.pinnedStatusIds, id => id)
} }
}, },
components: { components: {

View file

@ -21,7 +21,7 @@
:inline-expanded="collapsable && isExpanded" :inline-expanded="collapsable && isExpanded"
:statusoid="status" :statusoid="status"
:expandable="!isExpanded" :expandable="!isExpanded"
:show-pinned="pinnedStatusIdsObject[status.id]" :show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]"
:focused="focused(status.id)" :focused="focused(status.id)"
:in-conversation="isExpanded" :in-conversation="isExpanded"
:highlight="getHighlight()" :highlight="getHighlight()"

View file

@ -59,6 +59,9 @@ const Timeline = {
const ids = getExcludedStatusIdsByPinning(this.timeline.visibleStatuses, this.pinnedStatusIds) const ids = getExcludedStatusIdsByPinning(this.timeline.visibleStatuses, this.pinnedStatusIds)
// Convert id array to object // Convert id array to object
return keyBy(ids, id => id) return keyBy(ids, id => id)
},
pinnedStatusIdsObject () {
return keyBy(this.pinnedStatusIds, id => id)
} }
}, },
components: { components: {

View file

@ -35,7 +35,7 @@
class="status-fadein" class="status-fadein"
:statusoid="timeline.statusesObject[statusId]" :statusoid="timeline.statusesObject[statusId]"
:collapsable="true" :collapsable="true"
:pinned-status-ids="pinnedStatusIds" :pinned-status-ids-object="pinnedStatusIdsObject"
/> />
</template> </template>
<template v-for="status in timeline.visibleStatuses"> <template v-for="status in timeline.visibleStatuses">