aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation/conversation.vue
blob: 60d43fffd3715fc1aa4dca121b5559a8c394550e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div class="timeline panel panel-default">
    <div class="panel-heading base02-background base04 base03-border conversation-heading">
      {{ $t('timeline.conversation') }}
      <span v-if="collapsable" style="float:right;">
        <small><a href="#" @click.prevent="$emit('toggleExpanded')">Collapse</a></small>
      </span>
    </div>
    <div class="panel-body">
      <div class="timeline">
        <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>
      </div>
    </div>
  </div>
</template>

<script src="./conversation.js"></script>