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

195 lines
5.7 KiB
Vue
Raw Normal View History

2016-10-28 13:19:42 +00:00
<template>
<div class="status-el base00-background base03-border" v-if="!status.deleted" v-bind:class="[{ 'base01-background': focused }, { '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>
<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">
Retweeted by {{retweeter}}
</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">
2017-02-16 14:58:49 +00:00
<img @click.prevent="toggleUserExpanded" class='avatar' :src="status.user.profile_image_url_original">
2017-02-13 23:01:50 +00:00
</a>
</div>
<div class="media-body">
2017-02-16 14:58:49 +00:00
<div class="base05 base05=border usercard" v-if="userExpanded">
<user-card-content :user="status.user"></user-card-content>
</div>
2017-02-13 23:01:50 +00:00
<div class="user-content">
<h4 class="media-heading">
{{status.user.name}}
<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>
<router-link :to="{ name: 'conversation', params: { id: status.in_reply_to_status_id } }">
<i class="icon-reply"></i>
</router-link>
</small>
</template>
-
<small>
2017-02-13 23:01:50 +00:00
<router-link :to="{ name: 'conversation', params: { id: status.id } }">
<timeago :since="status.created_at" :auto-update="60"></timeago>
</router-link>
</small>
<template v-if="expandable">
-
<small>
<a href="#" @click.prevent="toggleExpanded" ><i class="icon-plus-squared"></i></a>
</small>
<small v-if="status.user.muted">
<a href="#" @click.prevent="toggleMute" ><i class="icon-eye-off"></i></a>
2017-02-13 23:01:50 +00:00
</small>
</template>
<small v-if="!status.is_local" class="source_url">
<a :href="status.external_url" target="_blank" ><i class="icon-binoculars"></i></a>
</small>
2017-02-13 23:01:50 +00:00
</h4>
<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'>
2017-02-22 23:04:47 +00:00
<attachment v-if="!hideAttachments" :status-id="status.id" :nsfw="status.nsfw" :attachment="attachment" v-for="attachment in status.attachments">
2017-02-13 23:01:50 +00:00
</attachment>
</div>
</div>
2016-10-28 13:19:42 +00:00
2017-02-13 23:01:50 +00:00
<div v-if="loggedIn">
<div class='status-actions'>
<div>
<a href="#" v-on:click.prevent="toggleReplying">
<i class="fa icon-reply" :class="{'icon-reply-active': replying}"></i>
2017-02-13 23:01:50 +00:00
</a>
</div>
<retweet-button :status=status></retweet-button>
<favorite-button :status=status></favorite-button>
<delete-button :status=status></delete-button>
2016-10-28 13:19:42 +00:00
</div>
2017-02-13 23:01:50 +00:00
</div>
2016-10-28 13:19:42 +00:00
</div>
</div>
<div class="status base00-background 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">
2016-11-25 16:19:46 +00:00
@import '../../_variables.scss';
.status-el {
2016-11-12 19:57:54 +00:00
hyphens: auto;
overflow-wrap: break-word;
2016-10-28 23:38:41 +00:00
word-wrap: break-word;
2016-11-03 15:59:27 +00:00
word-break: break-word;
border-left-width: 0px;
2016-10-28 23:38:41 +00:00
.user-content {
min-height: 52px;
2017-02-18 07:48:35 +00:00
padding-top: 1px;
}
2016-11-25 16:34:41 +00:00
.source_url {
float: right;
}
2016-11-25 16:34:59 +00:00
.greentext {
color: green;
}
2016-10-28 23:38:41 +00:00
a {
2016-11-12 19:57:54 +00:00
display: inline-block;
word-break: break-all;
2016-10-28 23:38:41 +00:00
}
.status-content {
2017-02-18 07:48:35 +00:00
margin: 3px 15px 4px 0;
}
p {
2016-11-25 16:19:46 +00:00
margin: 0;
margin-top: 0.2em;
margin-bottom: 0.5em;
}
2016-11-25 16:19:46 +00:00
}
2016-11-02 17:38:30 +00:00
2017-03-05 13:34:14 +00:00
.status-conversation {
border-left-style: solid;
}
2016-11-25 16:19:46 +00:00
.status-actions {
2016-11-02 17:38:30 +00:00
padding-top: 5px;
2016-11-25 16:19:46 +00:00
}
2016-11-25 16:19:46 +00:00
.icon-reply:hover {
color: $blue;
2016-11-25 16:19:46 +00:00
}
.icon-reply-active {
color: $blue;
}
2016-11-25 16:19:46 +00:00
.status .avatar {
width: 48px;
}
2016-11-25 16:19:46 +00:00
.status.compact .avatar {
width: 32px;
}
2016-11-25 16:19:46 +00:00
.status {
2017-02-18 07:48:35 +00:00
padding: 0.65em 0.7em 0.8em 0.8em;
border-bottom: 1px solid;
border-bottom-color: inherit;
border-left: 4px rgba(255, 48, 16, 0.65);
border-left-style: inherit;
2016-11-25 16:19:46 +00:00
}
.muted {
padding: 0.1em 0.7em 0.1em 0.8em;
button {
margin-left: auto;
}
2017-02-13 23:01:50 +00:00
}
a.unmute {
display: block;
margin-left: auto;
}
2017-02-16 14:58:49 +00:00
.usercard {
border-style: solid;
border-width: 1px;
border-radius: 10px;
2017-02-16 14:58:49 +00:00
margin-bottom: 1em;
margin-top: 0.2em;
2017-02-16 14:58:49 +00:00
}
.reply-left {
flex: 0;
min-width: 48px;
}
.reply-body {
flex: 1;
}
2016-10-28 23:38:41 +00:00
</style>