2016-10-28 13:19:42 +00:00
|
|
|
<template>
|
|
|
|
<div class="status-el">
|
2016-10-28 16:08:03 +00:00
|
|
|
<div v-if="retweet" class="media container retweet-info">
|
2016-10-28 13:19:42 +00:00
|
|
|
<div class="media-left">
|
|
|
|
<i class='fa fa-retweet'></i>
|
|
|
|
</div>
|
|
|
|
<div class="media-body">
|
2016-10-28 16:08:03 +00:00
|
|
|
Retweeted by {{retweeter}}
|
2016-10-28 13:19:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="media status container" ng-class="{compact: compact, notify: notify}">
|
|
|
|
<div class="media-left">
|
|
|
|
<a href="#">
|
|
|
|
<img class='avatar' :src="status.user.profile_image_url_original">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="media-body">
|
2016-10-28 16:08:03 +00:00
|
|
|
<h4 class="media-heading">
|
2016-10-28 13:19:42 +00:00
|
|
|
<strong>{{status.user.name}}</strong>
|
|
|
|
<small>{{status.user.screen_name}}</small>
|
2016-10-28 16:08:03 +00:00
|
|
|
<small v-if="status.in_reply_to_screen_name"> > {{status.in_reply_to_screen_name}}</small>
|
2016-10-28 13:19:42 +00:00
|
|
|
-
|
2016-10-28 16:08:03 +00:00
|
|
|
<small>{{status.created_at_parsed}}</small>
|
2016-10-28 13:19:42 +00:00
|
|
|
</h4>
|
|
|
|
|
2016-10-28 16:08:03 +00:00
|
|
|
<div v-html="status.statusnet_html"></div>
|
2016-10-28 13:19:42 +00:00
|
|
|
|
2016-10-28 16:08:03 +00:00
|
|
|
<div v-if='status.attachments' class='attachments'>
|
|
|
|
<attachment :nsfw="nsfw" :attachment="attachment" v-for="attachment in status.attachments">
|
2016-10-28 13:19:42 +00:00
|
|
|
</attachment>
|
|
|
|
</div>
|
|
|
|
|
2016-10-28 16:08:03 +00:00
|
|
|
<div>
|
2016-10-28 13:19:42 +00:00
|
|
|
<div class='status-actions'>
|
|
|
|
<div ng-click="toggleReplying()">
|
|
|
|
<i class='fa fa-reply'></i>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<i class='fa fa-retweet'></i>
|
|
|
|
</div>
|
|
|
|
<favorite-button status=status></favorite-button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- <post-status-form ng-if="replying" toggle="toggleReplying" reply-to-status="status" reply-to="{{status.id}}"></post-status-form> -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./status.js" ></script>
|