2018-03-16 07:01:03 +00:00
|
|
|
<article class="{{className}}"
|
2018-02-19 18:46:30 +00:00
|
|
|
tabindex="0"
|
2018-03-15 15:59:30 +00:00
|
|
|
delegate-key="{{delegateKey}}"
|
|
|
|
focus-key="{{delegateKey}}"
|
2018-02-10 19:30:13 +00:00
|
|
|
aria-posinset="{{index}}"
|
|
|
|
aria-setsize="{{length}}"
|
2018-02-19 18:34:36 +00:00
|
|
|
aria-label="{{ariaLabel}}"
|
2018-03-23 04:59:02 +00:00
|
|
|
on:recalculateHeight >
|
2018-03-05 01:16:33 +00:00
|
|
|
{{#if showHeader}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusHeader :notification :notificationId :status :statusId :timelineType
|
|
|
|
:account :accountId :uuid :isStatusInNotification />
|
2018-01-21 18:32:18 +00:00
|
|
|
{{/if}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusAuthorName :isStatusInNotification :isStatusInOwnThread :originalAccountId
|
|
|
|
:originalAccount :uuid />
|
|
|
|
<StatusAuthorHandle :isStatusInNotification :originalAccount />
|
2018-02-10 06:55:11 +00:00
|
|
|
{{#if !isStatusInOwnThread}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusRelativeDate :isStatusInNotification :originalStatus :originalStatusId :uuid />
|
2018-02-10 06:55:11 +00:00
|
|
|
{{/if}}
|
2018-03-17 01:48:24 +00:00
|
|
|
<StatusSidebar :isStatusInOwnThread :originalAccount
|
|
|
|
:originalAccountId :uuid />
|
2018-01-24 02:25:05 +00:00
|
|
|
{{#if originalStatus.spoiler_text}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusSpoiler :isStatusInOwnThread :isStatusInNotification
|
2018-03-16 07:01:03 +00:00
|
|
|
:originalStatus :uuid :spoilerShown
|
2018-03-15 15:59:30 +00:00
|
|
|
on:recalculateHeight />
|
2018-01-21 18:32:18 +00:00
|
|
|
{{/if}}
|
2018-01-24 02:25:05 +00:00
|
|
|
{{#if !originalStatus.spoiler_text || spoilerShown}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusContent :isStatusInOwnThread :isStatusInNotification
|
|
|
|
:originalStatus :uuid />
|
2018-01-21 18:32:18 +00:00
|
|
|
{{/if}}
|
2018-02-04 20:18:22 +00:00
|
|
|
{{#if originalStatus.media_attachments && originalStatus.media_attachments.length}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusMediaAttachments :originalStatus :uuid
|
|
|
|
on:recalculateHeight />
|
2018-01-21 20:34:35 +00:00
|
|
|
{{/if}}
|
2018-02-10 06:55:11 +00:00
|
|
|
{{#if isStatusInOwnThread}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusDetails :originalStatus :originalStatusId />
|
2018-02-10 06:55:11 +00:00
|
|
|
{{/if}}
|
2018-03-16 03:04:24 +00:00
|
|
|
<StatusToolbar :originalStatus :originalStatusId :originalAccountId
|
2018-03-30 08:06:17 +00:00
|
|
|
:isStatusInOwnThread :uuid :visibility :replyShown
|
|
|
|
on:recalculateHeight />
|
|
|
|
{{#if replyShown}}
|
2018-03-30 17:04:35 +00:00
|
|
|
<StatusComposeBox :originalStatusId :uuid
|
|
|
|
:replyVisibility :visibility
|
|
|
|
on:recalculateHeight />
|
2018-03-30 08:06:17 +00:00
|
|
|
{{/if}}
|
2018-01-11 04:45:02 +00:00
|
|
|
</article>
|
|
|
|
|
|
|
|
<style>
|
2018-01-16 16:38:23 +00:00
|
|
|
.status-article {
|
2018-02-10 19:00:56 +00:00
|
|
|
cursor: pointer;
|
2018-01-16 16:44:35 +00:00
|
|
|
max-width: calc(100vw - 40px);
|
|
|
|
padding: 10px 20px;
|
2018-01-11 04:45:02 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
2018-03-23 04:36:19 +00:00
|
|
|
"header header header header"
|
2018-02-10 06:55:11 +00:00
|
|
|
"sidebar author-name author-handle relative-date"
|
|
|
|
"sidebar spoiler spoiler spoiler"
|
|
|
|
"sidebar spoiler-btn spoiler-btn spoiler-btn"
|
|
|
|
"sidebar content content content"
|
|
|
|
"media media media media"
|
2018-03-30 08:06:17 +00:00
|
|
|
"....... toolbar toolbar toolbar"
|
|
|
|
"compose compose compose compose";
|
2018-02-10 06:01:44 +00:00
|
|
|
grid-template-columns: min-content minmax(0, max-content) 1fr min-content;
|
2018-03-30 08:06:17 +00:00
|
|
|
grid-template-rows: repeat(8, max-content);
|
2018-01-21 21:35:03 +00:00
|
|
|
}
|
2018-01-16 16:38:23 +00:00
|
|
|
|
2018-02-07 04:54:49 +00:00
|
|
|
.status-article.status-in-timeline {
|
|
|
|
width: 560px;
|
|
|
|
border-bottom: 1px solid var(--main-border);
|
|
|
|
}
|
|
|
|
|
2018-01-28 02:25:49 +00:00
|
|
|
.status-article.status-direct {
|
|
|
|
background-color: var(--status-direct-background);
|
|
|
|
}
|
|
|
|
|
2018-02-10 06:55:11 +00:00
|
|
|
.status-article.status-in-own-thread {
|
|
|
|
grid-template-areas:
|
|
|
|
"sidebar author-name"
|
|
|
|
"sidebar author-handle"
|
|
|
|
"spoiler spoiler"
|
|
|
|
"spoiler-btn spoiler-btn"
|
|
|
|
"content content"
|
|
|
|
"media media"
|
2018-02-10 23:31:26 +00:00
|
|
|
"details details"
|
2018-03-30 08:06:17 +00:00
|
|
|
"toolbar toolbar"
|
|
|
|
"compose compose";
|
2018-02-10 06:55:11 +00:00
|
|
|
grid-template-columns: min-content 1fr;
|
2018-03-30 08:06:17 +00:00
|
|
|
grid-template-rows: repeat(7, max-content);
|
2018-02-10 06:55:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-31 06:40:40 +00:00
|
|
|
@media (max-width: 767px) {
|
|
|
|
.status-article {
|
|
|
|
padding: 10px 10px;
|
|
|
|
max-width: calc(100vw - 20px);
|
|
|
|
}
|
2018-02-25 19:29:19 +00:00
|
|
|
.status-article.status-in-timeline {
|
|
|
|
width: 580px;
|
|
|
|
}
|
2018-01-31 06:40:40 +00:00
|
|
|
}
|
2018-01-11 04:45:02 +00:00
|
|
|
</style>
|
|
|
|
<script>
|
2018-02-04 18:50:39 +00:00
|
|
|
import StatusSidebar from './StatusSidebar.html'
|
|
|
|
import StatusHeader from './StatusHeader.html'
|
2018-02-10 06:55:11 +00:00
|
|
|
import StatusAuthorName from './StatusAuthorName.html'
|
|
|
|
import StatusAuthorHandle from './StatusAuthorHandle.html'
|
|
|
|
import StatusRelativeDate from './StatusRelativeDate.html'
|
2018-02-10 23:31:26 +00:00
|
|
|
import StatusDetails from './StatusDetails.html'
|
2018-02-04 18:50:39 +00:00
|
|
|
import StatusToolbar from './StatusToolbar.html'
|
|
|
|
import StatusMediaAttachments from './StatusMediaAttachments.html'
|
2018-02-04 20:18:22 +00:00
|
|
|
import StatusContent from './StatusContent.html'
|
|
|
|
import StatusSpoiler from './StatusSpoiler.html'
|
2018-03-30 08:06:17 +00:00
|
|
|
import StatusComposeBox from './StatusComposeBox.html'
|
2018-01-28 21:09:39 +00:00
|
|
|
import { store } from '../../_store/store'
|
2018-02-10 19:00:56 +00:00
|
|
|
import { goto } from 'sapper/runtime.js'
|
2018-02-25 00:12:25 +00:00
|
|
|
import { registerClickDelegate, unregisterClickDelegate } from '../../_utils/delegate'
|
2018-03-15 01:52:33 +00:00
|
|
|
import { classname } from '../../_utils/classname'
|
2018-01-11 04:45:02 +00:00
|
|
|
|
2018-03-30 08:06:17 +00:00
|
|
|
const INPUT_TAGS = new Set(['a', 'button', 'input', 'textarea'])
|
|
|
|
|
2018-01-11 04:45:02 +00:00
|
|
|
export default {
|
2018-02-10 19:30:13 +00:00
|
|
|
oncreate() {
|
2018-03-15 15:59:30 +00:00
|
|
|
let delegateKey = this.get('delegateKey')
|
2018-02-10 22:18:59 +00:00
|
|
|
if (!this.get('isStatusInOwnThread')) {
|
|
|
|
// the whole <article> is clickable in this case
|
2018-03-15 15:59:30 +00:00
|
|
|
registerClickDelegate(delegateKey, (e) => this.onClickOrKeydown(e))
|
2018-02-10 22:18:59 +00:00
|
|
|
}
|
2018-02-10 19:30:13 +00:00
|
|
|
},
|
|
|
|
ondestroy() {
|
2018-03-15 15:59:30 +00:00
|
|
|
let delegateKey = this.get('delegateKey')
|
2018-02-10 22:18:59 +00:00
|
|
|
if (!this.get('isStatusInOwnThread')) {
|
2018-03-15 15:59:30 +00:00
|
|
|
unregisterClickDelegate(delegateKey)
|
2018-02-10 22:18:59 +00:00
|
|
|
}
|
2018-02-10 19:30:13 +00:00
|
|
|
},
|
2018-01-11 04:45:02 +00:00
|
|
|
components: {
|
2018-02-04 18:50:39 +00:00
|
|
|
StatusSidebar,
|
2018-02-04 18:23:18 +00:00
|
|
|
StatusHeader,
|
2018-02-10 06:55:11 +00:00
|
|
|
StatusAuthorName,
|
|
|
|
StatusAuthorHandle,
|
|
|
|
StatusRelativeDate,
|
2018-02-10 23:31:26 +00:00
|
|
|
StatusDetails,
|
2018-02-04 18:50:39 +00:00
|
|
|
StatusToolbar,
|
|
|
|
StatusMediaAttachments,
|
2018-02-04 20:18:22 +00:00
|
|
|
StatusContent,
|
2018-03-30 08:06:17 +00:00
|
|
|
StatusSpoiler,
|
|
|
|
StatusComposeBox
|
2018-01-11 04:45:02 +00:00
|
|
|
},
|
2018-01-24 04:56:07 +00:00
|
|
|
store: () => store,
|
2018-02-10 19:00:56 +00:00
|
|
|
methods: {
|
|
|
|
onClickOrKeydown(e) {
|
|
|
|
let { type, keyCode } = e
|
|
|
|
let { localName, parentElement } = e.target
|
|
|
|
|
|
|
|
if ((type === 'click' || (type === 'keydown' && keyCode === 13)) &&
|
2018-03-30 08:06:17 +00:00
|
|
|
!INPUT_TAGS.has(localName) &&
|
|
|
|
!INPUT_TAGS.has(parentElement.localName) &&
|
|
|
|
!INPUT_TAGS.has(parentElement.parentElement.localName)) {
|
2018-02-10 19:00:56 +00:00
|
|
|
e.preventDefault()
|
|
|
|
e.stopPropagation()
|
2018-03-16 03:04:24 +00:00
|
|
|
goto(`/statuses/${this.get('originalStatusId')}`)
|
2018-02-10 19:00:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-01-15 03:28:50 +00:00
|
|
|
computed: {
|
2018-01-19 08:51:51 +00:00
|
|
|
originalStatus: (status) => status.reblog ? status.reblog : status,
|
2018-03-16 03:04:24 +00:00
|
|
|
originalStatusId: (originalStatus) => originalStatus.id,
|
|
|
|
statusId: (status) => status.id,
|
|
|
|
notificationId: (notification) => notification && notification.id,
|
|
|
|
account: (notification, status) => {
|
|
|
|
return (notification && notification.account) || status.account
|
2018-02-04 20:49:42 +00:00
|
|
|
},
|
2018-03-16 03:04:24 +00:00
|
|
|
accountId: (account) => account.id,
|
2018-02-04 18:55:10 +00:00
|
|
|
originalAccount: (originalStatus) => originalStatus.account,
|
2018-03-16 03:04:24 +00:00
|
|
|
originalAccountId: (originalAccount) => originalAccount.id,
|
2018-03-16 07:01:03 +00:00
|
|
|
visibility: (originalStatus) => originalStatus.visibility,
|
2018-03-16 03:04:24 +00:00
|
|
|
uuid: ($currentInstance, timelineType, timelineValue, notificationId, statusId) => {
|
|
|
|
return `${$currentInstance}/${timelineType}/${timelineValue}/${notificationId || ''}/${statusId}`
|
2018-03-08 02:04:20 +00:00
|
|
|
},
|
2018-03-16 03:04:24 +00:00
|
|
|
delegateKey: (uuid) => `status-${uuid}`,
|
|
|
|
isStatusInOwnThread: (timelineType, timelineValue, originalStatusId) => {
|
|
|
|
return (timelineType === 'status' || timelineType === 'reply') && timelineValue === originalStatusId
|
|
|
|
},
|
|
|
|
isStatusInNotification: (originalStatusId, notification) => {
|
|
|
|
return notification && notification.status &&
|
|
|
|
notification.type !== 'mention' && notification.status.id === originalStatusId
|
|
|
|
},
|
|
|
|
spoilerShown: ($spoilersShown, uuid) => !!$spoilersShown[uuid],
|
2018-03-30 08:06:17 +00:00
|
|
|
replyShown: ($repliesShown, uuid) => !!$repliesShown[uuid],
|
2018-03-16 07:01:03 +00:00
|
|
|
ariaLabel: (originalAccount, originalStatus, visibility) => {
|
|
|
|
return (visibility === 'direct' ? 'Direct message' : 'Status') +
|
2018-02-19 18:34:36 +00:00
|
|
|
` by ${originalAccount.display_name || originalAccount.username}`
|
2018-03-05 01:16:33 +00:00
|
|
|
},
|
|
|
|
showHeader: (notification, status, timelineType) => {
|
|
|
|
return (notification && (notification.type === 'reblog' || notification.type === 'favourite'))
|
|
|
|
|| status.reblog
|
|
|
|
|| timelineType === 'pinned'
|
2018-03-16 07:01:03 +00:00
|
|
|
},
|
|
|
|
className: (visibility, timelineType, isStatusInOwnThread) => {
|
|
|
|
return classname(
|
|
|
|
'status-article',
|
|
|
|
visibility === 'direct' && 'status-direct',
|
|
|
|
timelineType !== 'search' && 'status-in-timeline',
|
|
|
|
isStatusInOwnThread && 'status-in-own-thread'
|
|
|
|
)
|
2018-02-19 18:34:36 +00:00
|
|
|
}
|
2018-01-11 05:31:33 +00:00
|
|
|
}
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
|
|
|
</script>
|