pleroma-fe/src/components/conversation/conversation.vue

184 lines
5.4 KiB
Vue
Raw Normal View History

<template>
2019-07-05 09:17:44 +02:00
<div
2020-09-29 12:18:37 +02:00
v-if="!hideStatus"
:style="hiddenStyle"
2020-07-28 00:27:11 +02:00
class="Conversation"
:class="{ '-expanded' : isExpanded, 'panel' : isExpanded }"
2019-07-05 09:17:44 +02:00
>
<div
v-if="isExpanded"
class="panel-heading conversation-heading"
>
2018-08-30 19:16:36 +02:00
<span class="title"> {{ $t('timeline.conversation') }} </span>
<button
v-if="collapsable"
class="button-unstyled -link"
@click.prevent="toggleExpanded"
>
{{ $t('timeline.collapse') }}
</button>
</div>
2021-08-08 18:40:17 +02:00
<div class="conversation-body panel-body">
<div
v-if="diveMode"
class="conversation-undive-box"
>
2021-08-08 18:40:17 +02:00
<i18n
path="status.show_all_conversation"
tag="button"
class="button-unstyled -link"
@click.prevent="undive"
>
<FAIcon icon="angle-double-left" />
</i18n>
</div>
<div
v-if="diveMode"
class="conversation-undive-box"
2021-08-07 20:11:34 +02:00
>
2021-08-08 18:40:17 +02:00
<i18n
path="status.return_to_last_showing"
tag="button"
class="button-unstyled -link"
@click.prevent="diveBack"
>
<FAIcon icon="chevron-left" />
</i18n>
</div>
<div
v-if="isTreeView"
class="thread-body"
>
<thread-tree
v-for="status in showingTopLevel"
:key="status.id"
ref="statusComponent"
:depth="0"
2021-08-07 02:18:27 +02:00
2021-08-08 18:40:17 +02:00
:status="status"
:in-profile="inProfile"
:conversation="conversation"
:collapsable="collapsable"
:is-expanded="isExpanded"
:pinned-status-ids-object="pinnedStatusIdsObject"
:profile-user-id="profileUserId"
2021-08-07 02:18:27 +02:00
2021-08-08 18:40:17 +02:00
:focused="focused"
:get-replies="getReplies"
:highlight="maybeHighlight"
:set-highlight="setHighlight"
:toggle-expanded="toggleExpanded"
2021-08-07 06:33:06 +02:00
2021-08-08 18:40:17 +02:00
:simple="treeViewIsSimple"
:toggle-thread-display="toggleThreadDisplay"
:thread-display-status="threadDisplayStatus"
:show-thread-recursively="showThreadRecursively"
:total-reply-count="totalReplyCount"
:total-reply-depth="totalReplyDepth"
:status-content-properties="statusContentProperties"
:set-status-content-property="setStatusContentProperty"
:toggle-status-content-property="toggleStatusContentProperty"
:dive="canDive ? diveIntoStatus : undefined"
/>
</div>
<div
v-if="isLinearView"
class="thread-body"
>
<status
v-for="status in conversation"
:key="status.id"
ref="statusComponent"
:inline-expanded="collapsable && isExpanded"
:statusoid="status"
:expandable="!isExpanded"
:show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]"
:focused="focused(status.id)"
:in-conversation="isExpanded"
:highlight="getHighlight()"
:replies="getReplies(status.id)"
:in-profile="inProfile"
:profile-user-id="profileUserId"
class="conversation-status status-fadein panel-body"
2021-08-08 18:40:17 +02:00
:toggle-thread-display="toggleThreadDisplay"
:thread-display-status="threadDisplayStatus"
:show-thread-recursively="showThreadRecursively"
:total-reply-count="totalReplyCount"
:total-reply-depth="totalReplyDepth"
:status-content-properties="statusContentProperties"
:set-status-content-property="setStatusContentProperty"
:toggle-status-content-property="toggleStatusContentProperty"
2021-08-08 18:40:17 +02:00
@goto="setHighlight"
@toggleExpanded="toggleExpanded"
/>
</div>
2021-08-07 02:18:27 +02:00
</div>
</div>
2020-09-29 12:18:37 +02:00
<div
v-else
:style="hiddenStyle"
/>
</template>
<script src="./conversation.js"></script>
2019-03-11 21:24:37 +01:00
<style lang="scss">
@import '../../_variables.scss';
2020-07-28 00:27:11 +02:00
.Conversation {
.conversation-undive-box {
2021-08-08 18:40:17 +02:00
padding: $status-margin;
}
2021-08-08 18:40:17 +02:00
/* HACK: we want the border width to scale with the status *below it* */
.conversation-undive-box,
2020-07-28 00:27:11 +02:00
.conversation-status {
2021-08-08 18:40:17 +02:00
border-top-width: 1px;
border-top-style: solid;
border-top-color: var(--border, $fallback--border);
2020-07-28 00:27:11 +02:00
border-radius: 0;
}
2021-08-08 18:40:17 +02:00
&.-expanded .conversation-body .thread-tree:nth-child(1) > .conversation-status {
border-top-left-radius: $fallback--panelRadius;
border-top-left-radius: var(--panelRadius, $fallback--panelRadius);
}
/* first element in conversation body */
&.-expanded .conversation-body {
.conversation-undive-box:nth-child(1),
& > .conversation-status:nth-child(1),
& > .thread-body:nth-child(1) > .thread-tree:nth-child(1) > .conversation-status:nth-child(1), {
border-top: none;
}
}
/* first unexpanded statuses in timeline */
&:first-child:not(.-expanded) {
.conversation-body {
.conversation-status {
border-top: none;
}
}
}
/* expanded conversation in timeline */
&.status-fadein.-expanded .thread-body {
border-left-width: 4px;
border-left-style: solid;
border-left-color: $fallback--cRed;
border-left-color: var(--cRed, $fallback--cRed);
border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;
border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
border-bottom: 1px solid var(--border, $fallback--border);
}
2020-07-28 00:27:11 +02:00
&.-expanded {
.conversation-status:last-child {
border-bottom: none;
}
}
2019-03-11 21:24:37 +01:00
}
</style>