2016-11-25 04:17:09 +11:00
|
|
|
<template>
|
2017-11-13 09:26:43 +11:00
|
|
|
<div class="timeline panel panel-default">
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="panel-heading conversation-heading">
|
2018-08-31 03:16:36 +10:00
|
|
|
<span class="title"> {{ $t('timeline.conversation') }} </span>
|
|
|
|
<span v-if="collapsable">
|
2018-09-04 06:30:07 +10:00
|
|
|
<a href="#" @click.prevent="$emit('toggleExpanded')">{{ $t('timeline.collapse') }}</a>
|
2017-03-08 01:00:45 +11:00
|
|
|
</span>
|
2017-02-04 23:52:26 +11:00
|
|
|
</div>
|
2016-11-25 04:17:09 +11:00
|
|
|
<div class="panel-body">
|
|
|
|
<div class="timeline">
|
2018-04-12 02:34:40 +10:00
|
|
|
<status
|
|
|
|
v-for="status in conversation"
|
2019-03-12 01:52:28 +11:00
|
|
|
@goto="setHighlight"
|
|
|
|
@toggleReplying="toggleReplying"
|
|
|
|
:replying="replying && status.id === statusId"
|
|
|
|
:key="status.id"
|
|
|
|
:inlineExpanded="collapsable"
|
|
|
|
:statusoid="status"
|
|
|
|
:expandable='false'
|
|
|
|
:focused="focused(status.id)"
|
2018-04-12 02:34:40 +10:00
|
|
|
:inConversation='true'
|
|
|
|
:highlight="highlight"
|
|
|
|
:replies="getReplies(status.id)"
|
2019-03-12 01:52:28 +11:00
|
|
|
class="status-fadein"
|
|
|
|
/>
|
2016-11-25 04:17:09 +11:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./conversation.js"></script>
|