pinafore/routes/_components/status/StatusContent.html

137 lines
4.1 KiB
HTML
Raw Normal View History

2018-02-04 21:10:02 +01:00
<div
2018-02-04 21:49:42 +01:00
class="status-content {{isStatusInOwnThread ? 'status-in-own-thread' : ''}} {{isStatusInNotification ? 'status-in-notification' : ''}}"
2018-02-04 21:10:02 +01:00
ref:node
>
2018-02-12 08:07:48 +01:00
{{{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-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;
}
:global(.status-content .status-emoji) {
width: 20px;
height: 20px;
margin: -3px 0;
}
: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;
}
2018-02-04 19:35:24 +01:00
</style>
<script>
import { replaceAll } from '../../_utils/strings'
import { mark, stop } from '../../_utils/marks'
import { store } from '../../_store/store'
export default {
oncreate() {
this.hydrateContent()
},
store: () => store,
computed: {
massagedContent: (originalStatus, $autoplayGifs) => {
let content = originalStatus.content
2018-02-12 08:07:48 +01:00
// emojify
if (originalStatus.emojis && originalStatus.emojis.length) {
for (let emoji of originalStatus.emojis) {
2018-02-04 19:35:24 +01:00
let { shortcode, url, static_url } = emoji
let urlToUse = $autoplayGifs ? url : static_url
let shortcodeWithColons = `:${shortcode}:`
content = replaceAll(
content,
shortcodeWithColons,
`<img class="status-emoji" draggable="false" src="${urlToUse}"
alt="${shortcodeWithColons}" title="${shortcodeWithColons}" />`
)
}
}
2018-02-12 08:07:48 +01:00
// GNU Social and Pleroma don't add <p> tags
if (!content.startsWith('<p>')) {
content = `<p>${content}</p>`
}
2018-02-04 19:35:24 +01:00
return content
}
2018-02-04 19:35:24 +01:00
},
methods: {
hydrateContent() {
if (!this.refs.node) {
return
}
mark('hydrateContent')
let node = this.refs.node
let originalStatus = this.get('originalStatus')
let uuid = this.get('uuid')
let count = 0
let anchors = node.getElementsByTagName('A')
let mentions = originalStatus.mentions
let tags = originalStatus.tags
for (let i = 0, len = anchors.length; i < len; i++) {
let anchor = anchors[i]
let href = anchor.getAttribute('href')
if (tags && anchor.classList.contains('hashtag')) {
for (let j = 0, jLen = tags.length; j < jLen; j++) {
let tag = tags[j]
if (href.endsWith(`/tags/${tag.name}`)) {
anchor.setAttribute('href', `/tags/${tag.name}`)
anchor.setAttribute('focus-key', `status-content-link-${uuid}-${++count}`)
anchor.removeAttribute('target')
anchor.removeAttribute('rel')
2018-02-04 19:35:24 +01:00
}
}
} else if (mentions && anchor.classList.contains('mention')) {
for (let j = 0, jLen = mentions.length; j < jLen; j++) {
let mention = mentions[j]
if (href === mention.url) {
anchor.setAttribute('href', `/accounts/${mention.id}`)
anchor.setAttribute('title', `@${mention.acct}`)
anchor.setAttribute('focus-key', `status-content-link-${uuid}-${++count}`)
anchor.removeAttribute('target')
anchor.removeAttribute('rel')
2018-02-04 19:35:24 +01:00
}
}
} else if (anchor.getAttribute('rel') === 'nofollow noopener') {
anchor.setAttribute('title', href)
2018-02-04 19:35:24 +01:00
}
}
stop('hydrateContent')
}
}
}
</script>