2018-05-02 02:05:36 +02:00
|
|
|
<div class={computedClass} ref:node>
|
|
|
|
{@html massagedContent}
|
2018-02-04 19:35:24 +01:00
|
|
|
</div>
|
|
|
|
<style>
|
|
|
|
.status-content {
|
|
|
|
margin: 10px 10px 10px 5px;
|
2018-02-10 05:07:48 +01:00
|
|
|
grid-area: content;
|
2018-02-04 19:35:24 +01:00
|
|
|
word-wrap: break-word;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
font-size: 0.9em;
|
2018-04-14 19:47:53 +02:00
|
|
|
display: none;
|
2018-02-04 19:35:24 +01:00
|
|
|
}
|
|
|
|
|
2018-02-04 21:10:02 +01:00
|
|
|
.status-content.status-in-own-thread {
|
2018-02-04 19:35:24 +01:00
|
|
|
font-size: 1.3em;
|
|
|
|
margin: 20px 10px 20px 5px;
|
|
|
|
}
|
|
|
|
|
2018-04-14 19:47:53 +02:00
|
|
|
.status-content.shown {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-02-04 19:35:24 +01:00
|
|
|
:global(.status-content p) {
|
|
|
|
margin: 0 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.status-content p:first-child) {
|
|
|
|
margin: 0 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.status-content p:last-child) {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-02-04 21:49:42 +01:00
|
|
|
|
|
|
|
.status-content.status-in-notification {
|
|
|
|
color: var(--very-deemphasized-text-color);
|
|
|
|
}
|
|
|
|
:global(.status-content.status-in-notification a, .status-content.status-in-notification a:hover) {
|
|
|
|
color: var(--very-deemphasized-link-color);
|
|
|
|
}
|
|
|
|
|
2018-02-10 23:30:09 +01:00
|
|
|
:global(.status-content .invisible) {
|
|
|
|
/* copied from Mastodon */
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2019-01-26 22:50:45 +01:00
|
|
|
:global(.underline-links .status-content a) {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2018-02-04 19:35:24 +01:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import { mark, stop } from '../../_utils/marks'
|
|
|
|
import { store } from '../../_store/store'
|
2018-04-14 19:47:53 +02:00
|
|
|
import { classname } from '../../_utils/classname'
|
2018-08-23 23:47:33 +02:00
|
|
|
import { massageUserText } from '../../_utils/massageUserText'
|
2018-02-04 19:35:24 +01:00
|
|
|
|
|
|
|
export default {
|
2018-04-20 06:38:01 +02:00
|
|
|
oncreate () {
|
2018-02-04 19:35:24 +01:00
|
|
|
this.hydrateContent()
|
|
|
|
},
|
|
|
|
store: () => store,
|
|
|
|
computed: {
|
2018-05-02 02:05:36 +02:00
|
|
|
computedClass: ({ isStatusInOwnThread, isStatusInNotification, shown }) => {
|
2018-04-14 19:47:53 +02:00
|
|
|
return classname(
|
|
|
|
'status-content',
|
|
|
|
isStatusInOwnThread && 'status-in-own-thread',
|
|
|
|
isStatusInNotification && 'status-in-notification',
|
|
|
|
shown && 'shown'
|
|
|
|
)
|
|
|
|
},
|
2018-08-19 20:31:02 +02:00
|
|
|
content: ({ originalStatus }) => (originalStatus.content || ''),
|
2019-05-27 01:01:14 +02:00
|
|
|
massagedContent: ({ content, originalStatusEmojis, $autoplayGifs }) => (
|
|
|
|
massageUserText(content, originalStatusEmojis, $autoplayGifs)
|
|
|
|
)
|
2018-02-04 19:35:24 +01:00
|
|
|
},
|
|
|
|
methods: {
|
2018-04-20 06:38:01 +02:00
|
|
|
hydrateContent () {
|
2018-04-14 19:08:43 +02:00
|
|
|
mark('hydrateContent')
|
2018-03-15 18:05:49 +01:00
|
|
|
let node = this.refs.node
|
2018-04-19 18:37:05 +02:00
|
|
|
let { originalStatus, uuid } = this.get()
|
2019-01-14 02:11:27 +01:00
|
|
|
let { mentions, tags } = originalStatus
|
2018-02-10 22:57:04 +01:00
|
|
|
let count = 0
|
2019-01-14 02:11:27 +01:00
|
|
|
let anchors = Array.from(node.getElementsByTagName('A'))
|
|
|
|
|
|
|
|
for (let anchor of anchors) {
|
|
|
|
// hydrate hashtag
|
2018-04-14 19:08:43 +02:00
|
|
|
if (tags && anchor.classList.contains('hashtag')) {
|
2019-01-14 02:11:27 +01:00
|
|
|
for (let tag of tags) {
|
|
|
|
if (anchor.getAttribute('href').endsWith(`/tags/${tag.name}`)) {
|
2018-04-14 19:08:43 +02:00
|
|
|
anchor.setAttribute('href', `/tags/${tag.name}`)
|
2019-02-23 21:32:00 +01:00
|
|
|
anchor.setAttribute('id', `status-content-link-${uuid}-${++count}`)
|
2018-04-14 19:08:43 +02:00
|
|
|
anchor.removeAttribute('target')
|
|
|
|
anchor.removeAttribute('rel')
|
2018-02-04 19:35:24 +01:00
|
|
|
}
|
|
|
|
}
|
2019-01-14 02:11:27 +01:00
|
|
|
// hydrate mention
|
2018-04-14 19:08:43 +02:00
|
|
|
} else if (mentions && anchor.classList.contains('mention')) {
|
2019-01-14 02:11:27 +01:00
|
|
|
for (let mention of mentions) {
|
|
|
|
if (anchor.getAttribute('href') === mention.url) {
|
2018-04-14 19:08:43 +02:00
|
|
|
anchor.setAttribute('href', `/accounts/${mention.id}`)
|
|
|
|
anchor.setAttribute('title', `@${mention.acct}`)
|
2019-02-23 21:32:00 +01:00
|
|
|
anchor.setAttribute('id', `status-content-link-${uuid}-${++count}`)
|
2018-04-14 19:08:43 +02:00
|
|
|
anchor.removeAttribute('target')
|
|
|
|
anchor.removeAttribute('rel')
|
2018-02-04 19:35:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-14 02:11:27 +01:00
|
|
|
// hydrate external links
|
|
|
|
let href = anchor.getAttribute('href')
|
|
|
|
if (new URL(href, location.href).origin !== location.origin) {
|
|
|
|
anchor.setAttribute('title', href)
|
2019-01-14 01:05:41 +01:00
|
|
|
anchor.setAttribute('target', '_blank')
|
2019-01-14 02:11:27 +01:00
|
|
|
anchor.setAttribute('rel', 'nofollow noopener')
|
2019-01-14 01:05:41 +01:00
|
|
|
}
|
2018-02-04 19:35:24 +01:00
|
|
|
}
|
|
|
|
stop('hydrateContent')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-28 03:19:37 +02:00
|
|
|
</script>
|