2016-11-24 18:17:09 +01:00
|
|
|
<template>
|
2017-11-13 01:26:43 +03:00
|
|
|
<div class="timeline panel panel-default">
|
2018-03-31 21:14:36 +03:00
|
|
|
<div class="panel-heading conversation-heading">
|
2017-11-08 12:34:15 +02:00
|
|
|
{{ $t('timeline.conversation') }}
|
2017-03-07 16:00:45 +02:00
|
|
|
<span v-if="collapsable" style="float:right;">
|
2017-02-04 13:52:26 +01:00
|
|
|
<small><a href="#" @click.prevent="$emit('toggleExpanded')">Collapse</a></small>
|
2017-03-07 16:00:45 +02:00
|
|
|
</span>
|
2017-02-04 13:52:26 +01:00
|
|
|
</div>
|
2016-11-24 18:17:09 +01:00
|
|
|
<div class="panel-body">
|
|
|
|
<div class="timeline">
|
2017-11-13 16:33:54 +02:00
|
|
|
<status v-for="status in conversation" @goto="setHighlight" :key="status.id" :statusoid="status" :expandable='false' :focused="focused(status.id)" :inConversation='true' :highlight="highlight" :replies="getReplies(status.id)"></status>
|
2016-11-24 18:17:09 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./conversation.js"></script>
|