216 lines
6.6 KiB
Vue
216 lines
6.6 KiB
Vue
<template>
|
|
<div
|
|
v-if="!hideStatus"
|
|
:style="hiddenStyle"
|
|
class="Conversation"
|
|
:class="{ '-expanded' : isExpanded, 'panel' : isExpanded }"
|
|
>
|
|
<div
|
|
v-if="isExpanded"
|
|
class="panel-heading conversation-heading -sticky"
|
|
>
|
|
<h1 class="title">
|
|
<RichContent
|
|
v-if="conversation[0]?.summary_raw_html"
|
|
:html="conversation[0].summary_raw_html"
|
|
:emoji="conversation[0].emojis"
|
|
/>
|
|
<template v-else>
|
|
{{ $t('timeline.conversation') }}
|
|
</template>
|
|
</h1>
|
|
<button
|
|
v-if="collapsable"
|
|
class="button-unstyled -link"
|
|
@click.prevent="toggleExpanded"
|
|
>
|
|
{{ $t('timeline.collapse') }}
|
|
</button>
|
|
<QuickFilterSettings
|
|
v-if="!collapsable && mobileLayout"
|
|
:conversation="true"
|
|
class="rightside-button"
|
|
/>
|
|
<QuickViewSettings
|
|
v-if="!collapsable"
|
|
:conversation="true"
|
|
class="rightside-button"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-if="isPage && !status"
|
|
class="conversation-body"
|
|
:class="{ 'panel-body': isExpanded }"
|
|
>
|
|
<p v-if="!loadStatusError">
|
|
<FAIcon
|
|
spin
|
|
icon="circle-notch"
|
|
/>
|
|
{{ $t('status.loading') }}
|
|
</p>
|
|
<p v-else>
|
|
{{ $t('status.load_error', { error: loadStatusError }) }}
|
|
</p>
|
|
</div>
|
|
<div
|
|
v-else
|
|
class="conversation-body"
|
|
:class="{ 'panel-body': isExpanded }"
|
|
>
|
|
<div
|
|
v-if="isTreeView"
|
|
class="thread-body"
|
|
>
|
|
<div
|
|
v-if="shouldShowAllConversationButton"
|
|
class="conversation-dive-to-top-level-box"
|
|
>
|
|
<i18n-t
|
|
keypath="status.show_all_conversation_with_icon"
|
|
tag="button"
|
|
class="button-unstyled -link"
|
|
scope="global"
|
|
@click.prevent="diveToTopLevel"
|
|
>
|
|
<template #icon>
|
|
<FAIcon
|
|
icon="angle-double-left"
|
|
/>
|
|
</template>
|
|
<template #text>
|
|
<span>
|
|
{{ $t('status.show_all_conversation', { numStatus: otherTopLevelCount }, otherTopLevelCount) }}
|
|
</span>
|
|
</template>
|
|
</i18n-t>
|
|
</div>
|
|
<div
|
|
v-if="shouldShowAncestors"
|
|
class="thread-ancestors"
|
|
>
|
|
<article
|
|
v-for="status in ancestorsOf(diveRoot)"
|
|
:key="status.id"
|
|
class="thread-ancestor"
|
|
:class="{'thread-ancestor-has-other-replies': getReplies(status.id).length > 1, '-faded': shouldFadeAncestors}"
|
|
>
|
|
<Status
|
|
ref="statusComponent"
|
|
class="conversation-status status-fadein panel-body"
|
|
|
|
:statusoid="status"
|
|
:replies="getReplies(status.id)"
|
|
|
|
:expandable="!isExpanded"
|
|
:focused="maybeFocused === status.id"
|
|
:inline-expanded="collapsable && isExpanded"
|
|
:show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]"
|
|
:in-profile="inProfile"
|
|
:in-conversation="isExpanded"
|
|
:profile-user-id="profileUserId"
|
|
:simple-tree="treeViewIsSimple"
|
|
:show-other-replies-as-button="showOtherRepliesButtonInsideStatus"
|
|
can-dive
|
|
|
|
@goto="setFocused"
|
|
@dive="() => diveIntoStatus(status.id)"
|
|
@suspendable-state-change="onStatusSuspendStateChange"
|
|
/>
|
|
<div
|
|
v-if="showOtherRepliesButtonBelowStatus && getReplies(status.id).length > 1"
|
|
class="thread-ancestor-dive-box"
|
|
>
|
|
<div
|
|
class="thread-ancestor-dive-box-inner"
|
|
>
|
|
<i18n-t
|
|
tag="button"
|
|
scope="global"
|
|
keypath="status.ancestor_follow_with_icon"
|
|
class="button-unstyled -link thread-tree-show-replies-button"
|
|
@click.prevent="diveIntoStatus(status.id)"
|
|
>
|
|
<template #icon>
|
|
<FAIcon
|
|
icon="angle-double-right"
|
|
/>
|
|
</template>
|
|
<template #text>
|
|
<span>
|
|
{{ $t('status.ancestor_follow', { numReplies: getReplies(status.id, getReplies(status.id).length - 1).length - 1 }) }}
|
|
</span>
|
|
</template>
|
|
</i18n-t>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</div>
|
|
<ThreadTree
|
|
v-for="status in showingTopLevel"
|
|
:key="status.id"
|
|
ref="statusComponent"
|
|
:depth="0"
|
|
|
|
:status="status"
|
|
:in-profile="inProfile"
|
|
:conversation="conversation"
|
|
:collapsable="collapsable"
|
|
:is-expanded="isExpanded"
|
|
:pinned-status-ids-object="pinnedStatusIdsObject"
|
|
:profile-user-id="profileUserId"
|
|
|
|
:get-replies="getReplies"
|
|
:focused="maybeFocused"
|
|
:toggle-expanded="toggleExpanded"
|
|
|
|
:simple="treeViewIsSimple"
|
|
:thread-display-status="threadDisplayStatus"
|
|
:show-thread-recursively="showThreadRecursively"
|
|
:total-reply-count="totalReplyCount"
|
|
:total-reply-depth="totalReplyDepth"
|
|
:can-dive="canDive"
|
|
|
|
@goto="setFocused"
|
|
@dive="diveIntoStatus"
|
|
@suspendable-state-change="onStatusSuspendStateChange"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-else-if="isLinearView"
|
|
class="thread-body"
|
|
>
|
|
<article>
|
|
<Status
|
|
v-for="status in conversation"
|
|
:key="status.id"
|
|
ref="statusComponent"
|
|
class="conversation-status status-fadein panel-body"
|
|
:statusoid="status"
|
|
:replies="getReplies(status.id)"
|
|
|
|
:expandable="!isExpanded"
|
|
:focused="maybeFocused === status.id || maybeFocused === status.retweeted_status?.id"
|
|
:inline-expanded="collapsable && isExpanded"
|
|
:show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]"
|
|
:in-profile="inProfile"
|
|
:in-conversation="isExpanded"
|
|
:profile-user-id="profileUserId"
|
|
|
|
@goto="setFocused"
|
|
@toggle-expanded="toggleExpanded"
|
|
@suspendable-state-change="onStatusSuspendStateChange"
|
|
/>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-else
|
|
class="Conversation -hidden"
|
|
:style="hiddenStyle"
|
|
/>
|
|
</template>
|
|
|
|
<script src="./conversation.js"></script>
|
|
<style src="./conversation.scss" />
|