2018-01-21 18:32:18 +00:00
|
|
|
<article class="status-article" tabindex="0" aria-posinset="{{index}}" aria-setsize="{{length}}" on:recalculateHeight>
|
|
|
|
{{#if status.reblog}}
|
|
|
|
<div class="status-boosted">
|
|
|
|
<svg>
|
|
|
|
<use xlink:href="#fa-retweet" />
|
|
|
|
</svg>
|
|
|
|
<span>
|
|
|
|
<a href="/accounts/{{status.account.id}}">
|
|
|
|
{{status.account.username}}
|
|
|
|
</a> boosted
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2018-01-16 16:51:05 +00:00
|
|
|
<div class="status-author">
|
2018-01-18 01:02:43 +00:00
|
|
|
<a class="status-author-name" href="/accounts/{{originalAccount.id}}">
|
|
|
|
{{originalAccount.display_name || originalAccount.username}}
|
2018-01-15 03:28:50 +00:00
|
|
|
</a>
|
2018-01-16 16:51:05 +00:00
|
|
|
<span class="status-author-handle">
|
2018-01-21 18:32:18 +00:00
|
|
|
{{'@' + originalAccount.acct}}
|
2018-01-15 03:28:50 +00:00
|
|
|
</span>
|
2018-01-19 08:51:51 +00:00
|
|
|
<a class="status-author-date" rel="noopener" target="_blank" href="{{originalStatus.uri}}">
|
|
|
|
<time datetime={{createdAtDate}} title="{{relativeDate}}">{{relativeDate}}</time>
|
2018-01-15 03:28:50 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2018-01-18 01:02:43 +00:00
|
|
|
<Avatar account={{originalAccount}} className="status-sidebar"/>
|
2018-01-21 18:32:18 +00:00
|
|
|
{{#if status.spoiler_text}}
|
|
|
|
<div class="status-spoiler">{{status.spoiler_text}}</div>
|
|
|
|
{{/if}}
|
|
|
|
{{#if status.spoiler_text}}
|
|
|
|
<div class="status-spoiler-button">
|
2018-01-21 20:34:35 +00:00
|
|
|
<button type="button" on:click="onClickSpoilerButton()">{{spoilerShown ? 'Show less' : 'Show more'}}</button>
|
2018-01-21 18:32:18 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{#if !status.spoiler_text || spoilerShown}}
|
|
|
|
<div class="status-content">
|
|
|
|
{{{status.content}}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2018-01-21 20:34:35 +00:00
|
|
|
{{#if originalMediaAttachments && originalMediaAttachments.length}}
|
|
|
|
{{#if status.sensitive}}
|
|
|
|
<button type="button"
|
|
|
|
class="status-sensitive-media-button {{sensitiveShown ? 'status-sensitive-media-shown' : 'status-sensitive-media-hidden'}}"
|
|
|
|
aria-label="{{sensitiveShown ? 'Hide sensitive media' : 'Show sensitive media'}}"
|
|
|
|
on:click="onClickSensitiveMediaButton()" >
|
|
|
|
{{#if !sensitiveShown}}
|
|
|
|
<div class="status-sensitive-media-warning">
|
|
|
|
<span>
|
|
|
|
Sensitive content. Click to show.
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
<div class="svg-wrapper">
|
|
|
|
<svg>
|
|
|
|
<use xlink:href="{{sensitiveShown ? '#fa-eye-slash' : '#fa-eye'}}" />
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
{{#if sensitiveShown}}
|
|
|
|
<Media mediaAttachments="{{originalMediaAttachments}}" sensitive="{{status.sensitive}}"/>
|
|
|
|
{{/if}}
|
|
|
|
</button>
|
|
|
|
{{else}}
|
|
|
|
<Media mediaAttachments="{{originalMediaAttachments}}" sensitive="{{status.sensitive}}"/>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
2018-01-21 05:42:46 +00:00
|
|
|
<Toolbar :status />
|
2018-01-11 04:45:02 +00:00
|
|
|
</article>
|
|
|
|
|
|
|
|
<style>
|
2018-01-16 16:38:23 +00:00
|
|
|
.status-article {
|
2018-01-16 16:44:35 +00:00
|
|
|
width: 560px;
|
|
|
|
max-width: calc(100vw - 40px);
|
|
|
|
padding: 10px 20px;
|
2018-01-11 04:45:02 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
2018-01-16 16:51:05 +00:00
|
|
|
".............. status-boosted"
|
|
|
|
"status-sidebar status-author"
|
2018-01-21 18:32:18 +00:00
|
|
|
"status-sidebar status-spoiler"
|
|
|
|
"status-sidebar status-spoiler-button"
|
2018-01-16 16:51:05 +00:00
|
|
|
"status-sidebar status-content"
|
2018-01-21 20:34:35 +00:00
|
|
|
"status-media status-media"
|
|
|
|
".............. status-toolbar";
|
2018-01-16 16:44:35 +00:00
|
|
|
grid-template-columns: 58px 1fr;
|
2018-01-16 16:38:23 +00:00
|
|
|
border-bottom: 1px solid var(--main-border);
|
2018-01-17 04:34:09 +00:00
|
|
|
/* will-change: transform; */ /* TODO: is this necessary? */
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
2018-01-16 16:38:23 +00:00
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
:global(.status-sidebar) {
|
|
|
|
grid-area: status-sidebar;
|
2018-01-16 16:44:35 +00:00
|
|
|
margin: 0 10px 0 0;
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
|
|
|
|
2018-01-21 18:32:18 +00:00
|
|
|
.status-spoiler {
|
|
|
|
grid-area: status-spoiler;
|
|
|
|
word-wrap: break-word;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
font-size: 1.1em;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-spoiler-button {
|
|
|
|
grid-area: status-spoiler-button;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-spoiler-button button {
|
|
|
|
padding: 5px 10px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-author {
|
|
|
|
grid-area: status-author;
|
2018-01-15 03:28:50 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-01-16 05:58:31 +00:00
|
|
|
margin: 0 10px 0 5px;
|
2018-01-15 03:28:50 +00:00
|
|
|
font-size: 1.1em;
|
2018-01-15 05:41:19 +00:00
|
|
|
min-width: 0;
|
2018-01-15 03:28:50 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-author a, .status-author a:visited, .status-author a:hover, .status-author .status-author-handle {
|
2018-01-15 03:28:50 +00:00
|
|
|
color: var(--deemphasized-text-color);
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-author .status-author-name {
|
2018-01-15 03:28:50 +00:00
|
|
|
min-width: 0;
|
|
|
|
flex-shrink: 1;
|
2018-01-15 05:41:19 +00:00
|
|
|
color: var(--body-text-color);
|
2018-01-15 03:28:50 +00:00
|
|
|
font-weight: 600;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-author .status-author-name:hover {
|
2018-01-15 03:28:50 +00:00
|
|
|
color: var(--body-text-color);
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-author-handle {
|
2018-01-15 03:28:50 +00:00
|
|
|
min-width: 0;
|
|
|
|
flex: 1;
|
|
|
|
margin-left: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-author-date {
|
2018-01-15 03:28:50 +00:00
|
|
|
flex-shrink: 1;
|
|
|
|
text-align: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-content {
|
2018-01-21 18:32:18 +00:00
|
|
|
margin: 10px 10px 10px 5px;
|
2018-01-16 16:51:05 +00:00
|
|
|
grid-area: status-content;
|
2018-01-11 04:45:02 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: pre-wrap;
|
2018-01-11 08:26:35 +00:00
|
|
|
font-size: 0.9em;
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
:global(.status-content p) {
|
2018-01-15 03:28:50 +00:00
|
|
|
margin: 0 0 20px;
|
2018-01-11 05:31:33 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
:global(.status-content p:first-child) {
|
2018-01-15 03:28:50 +00:00
|
|
|
margin: 0 0 20px;
|
2018-01-11 05:31:33 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
:global(.status-content p:last-child) {
|
2018-01-15 03:28:50 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-boosted span {
|
2018-01-15 03:28:50 +00:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-boosted span, .status-boosted a, .status-boosted a:visited, .status-boosted a:hover {
|
2018-01-15 03:28:50 +00:00
|
|
|
color: var(--deemphasized-text-color);
|
2018-01-11 08:26:35 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-boosted {
|
|
|
|
grid-area: status-boosted;
|
2018-01-16 05:58:31 +00:00
|
|
|
margin: 5px 10px 5px 5px;
|
2018-01-15 03:28:50 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2018-01-16 16:51:05 +00:00
|
|
|
.status-boosted svg {
|
2018-01-15 03:28:50 +00:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2018-01-21 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-sensitive-media-button {
|
|
|
|
grid-area: status-media;
|
|
|
|
margin: 10px 0;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
fill: var(--mask-svg-fill);
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-sensitive-media-button.status-sensitive-media-hidden {
|
|
|
|
width: 100%;
|
|
|
|
margin: 10px auto;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-sensitive-media-button .status-sensitive-media-warning {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
color: var(--deemphasized-text-color);
|
|
|
|
z-index: 60;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-sensitive-media-button .svg-wrapper {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: flex-start;
|
|
|
|
z-index: 40;
|
|
|
|
pointer-events: none;
|
|
|
|
background: var(--mask-bg);
|
|
|
|
}
|
|
|
|
.status-sensitive-media-button.status-sensitive-media-shown .svg-wrapper {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
.status-sensitive-media-button svg {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
fill: var(--mask-svg-fill);
|
|
|
|
border-radius: 2px;
|
|
|
|
background: var(--mask-opaque-bg);
|
|
|
|
margin: 1px;
|
|
|
|
padding: 6px 10px;
|
|
|
|
}
|
|
|
|
.status-sensitive-media-button.status-sensitive-media-hidden svg {
|
|
|
|
fill: var(--deemphasized-text-color);
|
|
|
|
background: var(--mask-opaque-bg);
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import Avatar from './Avatar.html'
|
2018-01-20 23:37:40 +00:00
|
|
|
import Media from './Media.html'
|
2018-01-21 05:42:46 +00:00
|
|
|
import Toolbar from './Toolbar.html'
|
2018-01-17 08:59:15 +00:00
|
|
|
import { mark, stop } from '../_utils/marks'
|
2018-01-15 03:28:50 +00:00
|
|
|
import IntlRelativeFormat from 'intl-relativeformat'
|
|
|
|
const relativeFormat = new IntlRelativeFormat('en-US');
|
2018-01-11 04:45:02 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2018-01-20 23:37:40 +00:00
|
|
|
Avatar,
|
2018-01-21 05:42:46 +00:00
|
|
|
Media,
|
|
|
|
Toolbar
|
2018-01-11 04:45:02 +00:00
|
|
|
},
|
2018-01-15 03:28:50 +00:00
|
|
|
computed: {
|
2018-01-16 01:25:32 +00:00
|
|
|
createdAtDate: (status) => status.created_at,
|
|
|
|
relativeDate: (createdAtDate) => {
|
2018-01-17 08:59:15 +00:00
|
|
|
mark('compute relativeDate')
|
|
|
|
let res = relativeFormat.format(new Date(createdAtDate))
|
|
|
|
stop('compute relativeDate')
|
|
|
|
return res
|
2018-01-15 05:41:19 +00:00
|
|
|
},
|
2018-01-19 08:51:51 +00:00
|
|
|
originalStatus: (status) => status.reblog ? status.reblog : status,
|
|
|
|
originalAccount: (originalStatus) => originalStatus.account,
|
2018-01-21 20:34:35 +00:00
|
|
|
originalMediaAttachments: (originalStatus) => originalStatus.media_attachments
|
2018-01-21 18:32:18 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onClickSpoilerButton() {
|
|
|
|
this.set({spoilerShown: !this.get('spoilerShown')})
|
|
|
|
this.fire('recalculateHeight')
|
2018-01-21 20:34:35 +00:00
|
|
|
},
|
|
|
|
onClickSensitiveMediaButton() {
|
|
|
|
this.set({sensitiveShown: !this.get('sensitiveShown')})
|
|
|
|
this.fire('recalculateHeight')
|
2018-01-21 18:32:18 +00:00
|
|
|
}
|
2018-01-11 05:31:33 +00:00
|
|
|
}
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
|
|
|
</script>
|