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

102 lines
2.6 KiB
JavaScript
Raw Normal View History

const {
a,
abbr,
div,
header,
img,
section,
article,
span,
form,
button,
footer
} = 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-06-28 20:55:05 +00:00
raw: `/raw/${encoded.key}`
}
const isPrivate = Boolean(msg.value.meta.private)
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')
const markdownContent = msg.value.meta.md.block()
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 fragment =
2019-06-28 20:55:05 +00:00
section({
id: msg.key,
class: 'message',
style: `margin-left: ${depth * 1.5}rem`
},
header(
a({ href: url.author },
img({ class: 'avatar', src: url.avatar })
),
span({ class: 'text' },
span({ class: 'author' },
a({ href: url.author }, name)
),
2019-06-28 20:55:05 +00:00
span({ class: 'timestamp' }, ` (${timeAgo})`),
isPrivate ? abbr({ title: 'Private' }, '🔒') : null
)
),
article({ class: 'content', innerHTML: markdownContent }),
// 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',
2019-06-28 20:55:05 +00:00
value: likeButton.value,
class: likeButton.class
},
`${likeCount}`
)
),
a({ href: url.context }, 'context'),
2019-06-28 20:55:05 +00:00
parentLink,
a({ href: url.raw }, 'raw')
)
2019-06-28 20:55:05 +00:00
)
return fragment
}