const { h, computed, Value, when } = require('mutant') var nest = require('depnest') var ref = require('ssb-ref') var ExpanderHook = require('../../../../lib/expander-hook') exports.needs = nest({ 'profile.html.person': 'first', 'message.obs.backlinks': 'first', 'message.obs.name': 'first', 'message.obs.author': 'first', 'message.html': { link: 'first', meta: 'map', action: 'map', timestamp: 'first', backlinks: 'first' }, 'about.html.image': 'first', 'intl.sync.i18n': 'first' }) exports.gives = nest('message.html.layout') exports.create = function (api) { const i18n = api.intl.sync.i18n return nest('message.html.layout', layout) function layout (msg, {layout, previousId, priority, content, includeReferences = false, includeForks = true, compact = false}) { if (!(layout === undefined || layout === 'default')) return var classList = ['Message'] var replyInfo = null var needsExpand = Value(false) var expanded = Value(false) // new message previews shouldn't contract if (!msg.key) expanded.set(true) if (msg.value.content.root) { classList.push('-reply') var branch = msg.value.content.branch if (branch) { if (!previousId || (previousId && last(branch) && previousId !== last(branch))) { replyInfo = h('span', [i18n('in reply to '), api.message.html.link(last(branch))]) } } } else if (msg.value.content.project) { replyInfo = h('span', [i18n('on '), api.message.html.link(msg.value.content.project)]) } if (compact) { classList.push('-compact') } if (priority === 2) { classList.push('-new') } if (priority === 1) { classList.push('-unread') } return h('div', { classList }, [ messageHeader(msg, { replyInfo, priority, needsExpand, expanded }), h('section', { classList: [ when(expanded, '-expanded') ], hooks: [ ExpanderHook(needsExpand) ] }, [content]), computed(msg.key, (key) => { if (ref.isMsg(key)) { return h('footer', [ when(needsExpand, h('div.expander', { classList: when(expanded, null, '-truncated') }, [ h('a', { href: '#', 'ev-click': toggleAndTrack(expanded) }, when(expanded, i18n('See less'), i18n('See more'))) ])), h('div.actions', [ api.message.html.action(msg) ]) ]) } }), api.message.html.backlinks(msg, {includeReferences, includeForks}) ]) // scoped function messageHeader (msg, {replyInfo, priority}) { var additionalMeta = [] if (priority === 2) { additionalMeta.push(h('span.flag -new', {title: i18n('New Message')})) } else if (priority === 1) { additionalMeta.push(h('span.flag -unread', {title: i18n('Unread Message')})) } return h('header', [ h('div.main', [ h('a.avatar', {href: `${msg.value.author}`}, [ api.about.html.image(msg.value.author) ]), h('div.main', [ h('div.name', [ api.profile.html.person(msg.value.author) ]), h('div.meta', [ api.message.html.timestamp(msg), ' ', replyInfo ]) ]) ]), h('div.meta', [ api.message.html.meta(msg), additionalMeta ]) ]) } } } function last (array) { if (Array.isArray(array)) { return array[array.length - 1] } else { return array } } function toggleAndTrack (param) { return { handleEvent: handleToggle, param } } function handleToggle (ev) { this.param.set(!this.param()) if (!this.param()) { ev.target.scrollIntoViewIfNeeded() // HACK: due to a browser bug, sometimes the body gets affected!? // Why not just hack it!!! if (document.body.scrollTop > 0) { document.body.scrollTop = 0 } } }