akkoma-fe/src/components/status/status.vue

482 lines
12 KiB
Vue
Raw Normal View History

2016-10-28 13:19:42 +00:00
<template>
<div class="status-el" v-if="compact">
<div @click.prevent="linkClicked" class="status-content" v-html="status.statusnet_html"></div>
<div v-if="loggedIn">
<div class='status-actions'>
<div>
<a href="#" v-on:click.prevent="toggleReplying">
<i class="icon-reply" :class="{'icon-reply-active': replying}"></i>
</a>
</div>
2018-02-02 10:27:31 +00:00
<retweet-button :loggedIn="loggedIn" :status=status></retweet-button>
2018-02-03 08:18:53 +00:00
<favorite-button :loggedIn="loggedIn" :status=status></favorite-button>
</div>
</div>
<post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying" v-if="replying"/>
</div>
<div class="status-el status-fadein" v-else-if="!status.deleted" v-bind:class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inConversation }]" >
2017-02-13 23:01:50 +00:00
<template v-if="muted">
<div class="media status container muted">
<small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small>
<small class="muteWords">{{muteWordHits.join(', ')}}</small>
<a href="#" class="unmute" @click.prevent="toggleMute"><i class="icon-eye-off"></i></a>
2016-10-28 13:19:42 +00:00
</div>
2017-02-13 23:01:50 +00:00
</template>
<template v-if="!muted">
<div v-if="retweet" class="media container retweet-info">
<div class="media-left">
<i class='fa icon-retweet retweeted'></i>
</div>
<div class="media-body">
Repeated by <a :href="statusoid.user.statusnet_profile_url" style="font-weight: bold;" :title="'@'+statusoid.user.screen_name">{{retweeter}}</a>
2017-02-13 23:01:50 +00:00
</div>
2016-10-28 13:19:42 +00:00
</div>
2017-02-13 23:01:50 +00:00
<div class="media status container">
<div class="media-left">
<a :href="status.user.statusnet_profile_url">
<StillImage @click.native.prevent="toggleUserExpanded" :class="{retweeted: retweet}" class='avatar' :src="status.user.profile_image_url_original"/>
<StillImage v-if="retweet" class='avatar avatar-retweeter' :src="statusoid.user.profile_image_url_original"/>
2017-02-13 23:01:50 +00:00
</a>
</div>
<div class="media-body">
<div class="usercard" v-if="userExpanded">
2017-08-21 17:25:01 +00:00
<user-card-content :user="status.user" :switcher="false"></user-card-content>
2017-02-16 14:58:49 +00:00
</div>
2017-02-13 23:01:50 +00:00
<div class="user-content">
<div class="media-heading">
<div class="name-and-links">
2017-06-01 14:35:00 +00:00
<h4 class="user-name">{{status.user.name}}</h4>
<div class="links">
<h4>
<small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small>
<small v-if="status.in_reply_to_screen_name"> &gt;
<router-link :to="{ name: 'user-profile', params: { id: status.in_reply_to_user_id } }">
{{status.in_reply_to_screen_name}}
</router-link>
</small>
<template v-if="isReply">
<small>
<a href="#" @click.prevent="gotoOriginal(status.in_reply_to_status_id)"><i class="icon-reply" @mouseenter="replyEnter(status.in_reply_to_status_id, $event)" @mouseout="replyLeave()"></i></a>
</small>
</template>
-
<small>
<router-link :to="{ name: 'conversation', params: { id: status.id } }">
<timeago :since="status.created_at" :auto-update="60"></timeago>
</router-link>
</small>
</h4>
</div>
<h4 class="replies" v-if="inConversation">
<small v-if="replies.length">Replies:</small>
<small v-for="reply in replies">
<a href="#" @click.prevent="gotoOriginal(reply.id)" @mouseenter="replyEnter(reply.id, $event)" @mouseout="replyLeave()">{{reply.name}}&nbsp;</a>
</small>
</h4>
</div>
<div class="heading-icons">
<a href="#" @click.prevent="toggleMute" v-if="unmuted"><i class="icon-eye-off"></i></a>
<a :href="status.external_url" target="_blank" v-if="!status.is_local" class="source_url"><i class="icon-binoculars"></i></a>
<template v-if="expandable">
<a href="#" @click.prevent="toggleExpanded" class="expand"><i class="icon-plus-squared"></i></a>
</template>
</div>
</div>
<div class="status-preview" v-if="showPreview && preview">
<StillImage class="avatar" :src="preview.user.profile_image_url_original"/>
<div class="text">
<h4>
{{ preview.user.name }}
<small><a>{{ preview.user.screen_name}}</a></small>
</h4>
<div @click.prevent="linkClicked" class="status-content" v-html="preview.statusnet_html"></div>
</div>
</div>
<div class="status-preview status-preview-loading" v-else-if="showPreview">
<i class="icon-spin4 animate-spin"></i>
</div>
<div @click.prevent="linkClicked" class="status-content" v-html="status.statusnet_html"></div>
2017-02-13 23:01:50 +00:00
<div v-if='status.attachments' class='attachments'>
2018-02-04 15:26:46 +00:00
<attachment v-if="!hideAttachments" :status-id="status.id" :nsfw="status.nsfw" :attachment="attachment" v-for="attachment in status.attachments" :key="attachment.id">
2017-02-13 23:01:50 +00:00
</attachment>
</div>
</div>
2016-10-28 13:19:42 +00:00
<div class='status-actions'>
<div v-if="loggedIn">
<a href="#" v-on:click.prevent="toggleReplying">
<i class="icon-reply" :class="{'icon-reply-active': replying}"></i>
</a>
2016-10-28 13:19:42 +00:00
</div>
<retweet-button :loggedIn="loggedIn" :status=status></retweet-button>
<favorite-button :loggedIn="loggedIn" :status=status></favorite-button>
<delete-button :status=status></delete-button>
2017-02-13 23:01:50 +00:00
</div>
2016-10-28 13:19:42 +00:00
</div>
</div>
<div class="status container" v-if="replying">
<div class="reply-left"/>
<post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying"/>
</div>
2017-02-13 23:01:50 +00:00
</template>
2016-10-28 13:19:42 +00:00
</div>
</template>
<script src="./status.js" ></script>
2016-10-28 23:38:41 +00:00
<style lang="scss">
@import '../../_variables.scss';
status-text-container {
2018-04-07 16:30:27 +00:00
display: block;
}
.status-preview {
2018-04-07 16:30:27 +00:00
position: absolute;
max-width: 34em;
padding: 0.5em;
display: flex;
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg);
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
border-style: solid;
border-width: 1px;
border-radius: $fallback--tooltipRadius;
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
margin-top: 0.5em;
margin-left: 1em;
z-index: 50;
.avatar {
flex-shrink: 0;
width: 32px;
height: 32px;
border-radius: $fallback--avatarAltRadius;
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
}
.text {
h4 {
margin-bottom: 0.4em;
small {
font-weight: lighter;
}
}
2018-04-07 16:30:27 +00:00
padding: 0 0.5em 0.5em 0.5em;
}
}
.status-preview-loading {
2018-04-07 16:30:27 +00:00
display: block;
font-size: 2em;
min-width: 8em;
text-align: center;
}
.status-el {
2018-04-07 16:30:27 +00:00
hyphens: auto;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
border-left-width: 0px;
line-height: 18px;
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg);
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
&_focused {
background-color: $fallback--lightBg;
background-color: var(--lightBg, $fallback--lightBg);
}
.usercard {
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
2018-04-07 16:30:27 +00:00
}
2018-04-07 16:30:27 +00:00
.timeline & {
border-bottom-width: 1px;
border-bottom-style: solid;
}
2018-04-07 16:30:27 +00:00
.notify {
.avatar {
border-width: 3px;
border-style: solid;
}
2018-04-07 16:30:27 +00:00
}
2018-04-07 16:30:27 +00:00
.media-body {
flex: 1;
padding-left: 0.5em;
}
2018-04-07 16:30:27 +00:00
.user-content {
min-height: 52px;
padding-top: 1px;
}
2018-04-07 16:30:27 +00:00
.media-heading {
display: flex;
min-height: 1.4em;
margin-bottom: 0.3em;
2016-10-28 23:38:41 +00:00
2018-04-07 16:30:27 +00:00
.links a i {
color: $fallback--link;
color: var(--link, $fallback--link);
}
2018-04-07 16:30:27 +00:00
small {
font-weight: lighter;
}
2018-04-07 13:29:50 +00:00
2018-04-07 16:30:27 +00:00
h4 {
margin-right: 0.4em;
}
2018-04-07 13:29:50 +00:00
2018-04-07 16:30:27 +00:00
.name-and-links {
flex: 1 0;
display: flex;
flex-wrap: wrap;
}
2018-04-07 16:30:27 +00:00
.replies {
flex-basis: 100%;
}
}
2018-04-07 16:30:27 +00:00
.source_url {
2018-04-07 16:30:27 +00:00
}
2018-04-07 16:30:27 +00:00
.expand {
margin-right: -0.3em;
}
2018-04-07 16:30:27 +00:00
a {
display: inline-block;
word-break: break-all;
}
2016-11-25 16:34:41 +00:00
2018-04-07 16:30:27 +00:00
.status-content {
margin: 3px 15px 4px 0;
max-height: 400px;
overflow-y: auto;
overflow-x: hidden;
2018-04-07 16:30:27 +00:00
img, video {
max-width: 100%;
max-height: 400px;
vertical-align: middle;
object-fit: contain;
}
2018-04-07 16:30:27 +00:00
blockquote {
margin: 0.2em 0 0.2em 2em;
font-style: italic;
}
2018-04-07 16:30:27 +00:00
}
2018-04-07 16:30:27 +00:00
p {
margin: 0;
margin-top: 0.2em;
margin-bottom: 0.5em;
}
2018-04-07 16:30:27 +00:00
.media-left {
margin: 0.2em 0.3em 0 0;
.avatar {
float: right;
border-radius: $fallback--avatarRadius;
border-radius: var(--avatarRadius, $fallback--avatarRadius);
}
2018-04-07 16:30:27 +00:00
}
2018-04-07 16:30:27 +00:00
.retweet-info {
padding: 0.7em 0 0 0.6em;
2018-04-07 16:30:27 +00:00
.media-left {
display: flex;
2018-04-07 16:30:27 +00:00
i {
align-self: center;
text-align: right;
flex: 1;
padding-right: 0.3em;
}
}
2018-04-07 16:30:27 +00:00
}
2016-11-02 17:38:30 +00:00
}
.status-fadein {
2018-04-07 16:30:27 +00:00
animation-duration: 0.5s;
animation-name: fadein;
}
@keyframes fadein {
2018-04-07 16:30:27 +00:00
from {
opacity: 0;
}
2018-04-07 16:30:27 +00:00
to {
opacity: 1;
}
}
.greentext {
2018-04-07 16:30:27 +00:00
color: green;
}
.status-conversation {
2018-04-07 16:30:27 +00:00
border-left-style: solid;
}
.status-actions {
2018-04-07 16:30:27 +00:00
padding-top: 0.15em;
width: 100%;
display: flex;
2018-04-07 16:30:27 +00:00
div, favorite-button {
max-width: 6em;
flex: 1;
}
}
.icon-reply:hover {
2018-04-07 16:30:27 +00:00
color: $fallback--cBlue;
color: var(--cBlue, $fallback--cBlue);
}
.icon-reply.icon-reply-active {
2018-04-07 16:30:27 +00:00
color: $fallback--cBlue;
color: var(--cBlue, $fallback--cBlue);
}
2018-04-07 16:30:27 +00:00
.status .avatar {
width: 48px;
height: 48px;
border-radius: 5px;
overflow: hidden;
2018-04-07 16:30:27 +00:00
img {
width: 100%;
height: 100%;
}
&.animated::before {
display: none;
}
&.retweeted {
width: 40px;
height: 40px;
margin-right: 8px;
margin-bottom: 8px;
}
}
2017-05-22 11:50:10 +00:00
2018-04-07 16:30:27 +00:00
.status:hover .animated.avatar {
canvas {
display: none;
}
img {
visibility: visible;
}
}
2018-04-07 13:55:51 +00:00
.status .avatar-retweeter {
2018-04-07 16:30:27 +00:00
width: 24px;
height: 24px;
position: absolute;
margin-left: 24px;
margin-top: 24px;
}
.status.compact .avatar {
2018-04-07 16:30:27 +00:00
width: 32px;
}
.status {
2018-04-07 16:30:27 +00:00
padding: 0.4em 0.7em 0.45em 0.7em;
border-left: 4px $fallback--cRed;
border-left: 4px var(--cRed, $fallback--cRed);
border-left-style: inherit;
}
.status-conversation:last-child {
2018-04-07 16:30:27 +00:00
border-bottom: none;
}
.timeline .panel.timeline {
2018-04-07 16:30:27 +00:00
overflow: hidden;
}
.muted {
2018-04-07 16:30:27 +00:00
padding: 0.1em 0.4em 0.1em 0.8em;
button {
margin-left: auto;
}
2018-04-07 16:30:27 +00:00
.muteWords {
margin-left: 10px;
}
}
a.unmute {
2018-04-07 16:30:27 +00:00
display: block;
margin-left: auto;
}
2017-02-16 14:58:49 +00:00
.reply-left {
2018-04-07 16:30:27 +00:00
flex: 0;
min-width: 48px;
}
.reply-body {
2018-04-07 16:30:27 +00:00
flex: 1;
}
@media all and (max-width: 960px) {
2018-04-07 16:30:27 +00:00
.status-el {
.name-and-links {
margin-left: -0.25em;
}
2018-04-07 16:30:27 +00:00
}
2017-06-01 14:35:00 +00:00
2018-04-07 16:30:27 +00:00
.status {
max-width: 100%;
}
2017-06-01 14:35:00 +00:00
2018-04-07 16:30:27 +00:00
.status .avatar {
width: 40px;
height: 40px;
2018-04-07 16:30:27 +00:00
&.retweeted {
width: 34px;
height: 34px;
margin-right: 8px;
margin-bottom: 8px;
}
2018-04-07 16:30:27 +00:00
}
2017-06-01 14:35:00 +00:00
2018-04-07 16:30:27 +00:00
.status .avatar-retweeter {
width: 22px;
height: 22px;
position: absolute;
margin-left: 18px;
margin-top: 18px;
}
}
2017-06-01 14:35:00 +00:00
2016-10-28 23:38:41 +00:00
</style>