oasis/src/pages/views/components/post.js

133 lines
3.3 KiB
JavaScript
Raw Normal View History

2019-07-28 20:49:01 +00:00
'use strict'
const {
a,
abbr,
2019-08-13 20:53:11 +00:00
article,
button,
details,
div,
2019-08-13 20:53:11 +00:00
footer,
form,
header,
img,
section,
span,
2019-08-13 20:53:11 +00:00
summary
} = require('hyperaxe')
2019-06-28 20:55:05 +00:00
const lodash = require('lodash')
module.exports = ({ msg }) => {
2019-06-28 20:55:05 +00:00
const encoded = {
key: encodeURIComponent(msg.key),
author: encodeURIComponent(msg.value.author),
parent: encodeURIComponent(msg.value.content.root)
}
const url = {
2019-06-28 20:55:05 +00:00
author: `/author/${encoded.author}`,
likeForm: `/like/${encoded.key}`,
context: `/thread/${encoded.key}#${encoded.key}`,
parent: `/thread/${encoded.parent}#${encoded.parent}`,
avatar: msg.value.meta.author.avatar.url,
2019-08-07 02:44:09 +00:00
raw: `/raw/${encoded.key}`,
reply: `/reply/${encoded.key}`
}
const isPrivate = Boolean(msg.value.meta.private)
const isThreadTarget = Boolean(lodash.get(msg, 'value.meta.thread.target', false))
const name = msg.value.meta.author.name
2019-06-28 20:55:05 +00:00
const timeAgo = msg.value.meta.timestamp.received.since
const depth = lodash.get(msg, 'value.meta.thread.depth', 0)
const markdownContent = msg.value.meta.md.block()
2019-08-13 20:53:11 +00:00
const hasContentWarning = typeof msg.value.content.contentWarning === 'string'
2019-06-28 20:55:05 +00:00
const likeButton = msg.value.meta.voted
? { value: 0, class: 'liked' }
: { value: 1, class: null }
const likeCount = msg.value.meta.votes.length
2019-06-28 20:55:05 +00:00
const parentLink = msg.value.content.root != null
? a({ href: url.parent }, 'parent')
: null
const messageClasses = ['message']
if (isPrivate) {
messageClasses.push('private')
}
if (isThreadTarget) {
messageClasses.push('thread-target')
}
if (depth > 0) {
messageClasses.push('reply')
}
2019-08-13 20:53:11 +00:00
const articleElement = article({ class: 'content', innerHTML: markdownContent })
const articleContent = hasContentWarning
? details(
summary(msg.value.content.contentWarning),
articleElement
)
: articleElement
const fragment =
2019-06-28 20:55:05 +00:00
section({
id: msg.key,
class: messageClasses.join(' '),
2019-06-28 20:55:05 +00:00
style: `margin-left: ${depth * 1.5}rem`
},
header({ class: 'metadata' },
a({ href: url.author },
img({ class: 'avatar', src: url.avatar, alt: 'profile image' })
),
span({ class: 'text' },
span({ class: 'author' },
a({ href: url.author }, name)
),
span({ class: 'timestamp' }, ` ${timeAgo} ago`),
isPrivate ? abbr({ title: 'Private' }, '🔒') : null
)
),
2019-08-13 20:53:11 +00:00
articleContent,
// HACK: centered-footer
//
// Here we create an empty div with an anchor tag that can be linked to.
// In our CSS we ensure that this gets centered on the screen when we
// link to this anchor tag.
//
// This is used for redirecting users after they like a post, when we
// want the like button that they just clicked to remain close-ish to
// where it was before they clicked the button.
div({ id: `centered-footer-${encoded.key}`, class: 'centered-footer' }),
footer(
form({ action: url.likeForm, method: 'post' },
button({
name: 'voteValue',
type: 'submit',
value: likeButton.value,
class: likeButton.class
},
`${likeCount}`
)
),
a({ href: url.reply }, 'reply'),
a({ href: url.context }, 'context'),
parentLink,
a({ href: url.raw }, 'raw')
)
2019-06-28 20:55:05 +00:00
)
return fragment
}