2016-11-25 04:17:09 +11:00
|
|
|
<template>
|
2017-02-23 10:26:37 +11:00
|
|
|
<div class="timeline panel panel-default base00-background">
|
2017-03-11 00:26:36 +11:00
|
|
|
<div class="panel-heading base01-background base04 base03-border conversation-heading">
|
2017-02-04 23:52:26 +11:00
|
|
|
Conversation
|
2017-03-08 01:00:45 +11:00
|
|
|
<span v-if="collapsable" style="float:right;">
|
2017-02-04 23:52:26 +11:00
|
|
|
<small><a href="#" @click.prevent="$emit('toggleExpanded')">Collapse</a></small>
|
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">
|
2017-06-05 06:58:15 +10: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-25 04:17:09 +11:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./conversation.js"></script>
|
2017-03-11 00:26:36 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.conversation-heading {
|
|
|
|
border-bottom-style: solid;
|
|
|
|
border-bottom-width: 1px;
|
|
|
|
}
|
|
|
|
</style>
|