2018-02-19 18:17:22 +01:00
|
|
|
<div role="feed" aria-label="Pinned toots" class="pinned-statuses">
|
2018-02-11 19:35:25 +01:00
|
|
|
{{#if pinnedStatuses}}
|
|
|
|
{{#each pinnedStatuses as status, index}}
|
|
|
|
<Status :status
|
|
|
|
timelineType="pinned"
|
|
|
|
timelineValue="{{accountId}}"
|
|
|
|
:index
|
|
|
|
length="{{pinnedStatuses.length}}"
|
|
|
|
/>
|
|
|
|
{{/each}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
import { store } from '../../_store/store'
|
|
|
|
import Status from '../status/Status.html'
|
|
|
|
import { updatePinnedStatusesForAccount } from '../../_actions/pinnedStatuses'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
async oncreate() {
|
|
|
|
let accountId = this.get('accountId')
|
|
|
|
await updatePinnedStatusesForAccount(accountId)
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
pinnedStatuses: ($pinnedStatuses, $currentInstance, accountId) => {
|
|
|
|
return $pinnedStatuses[$currentInstance] && $pinnedStatuses[$currentInstance][accountId]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
store: () => store,
|
|
|
|
components: {
|
2018-02-12 08:10:07 +01:00
|
|
|
Status
|
2018-02-11 19:35:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|