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