Files: ef0e26935108e5a9748cd1b03ef830fceff93640 / message / html / render / about.js
1421 bytesRaw
1 | const nest = require('depnest') |
2 | const extend = require('xtend') |
3 | const ref = require('ssb-ref') |
4 | const { h, when } = require('mutant') |
5 | |
6 | exports.gives = nest('message.html.render') |
7 | |
8 | exports.needs = nest({ |
9 | 'about.html.link': 'first', |
10 | 'blob.sync.url': 'first', |
11 | 'message.html': { |
12 | decorate: 'reduce', |
13 | layout: 'first' |
14 | } |
15 | }) |
16 | |
17 | exports.create = function (api) { |
18 | return nest('message.html.render', about) |
19 | |
20 | function about (msg, opts) { |
21 | if (msg.value.content.type !== 'about') return |
22 | |
23 | const element = api.message.html.layout(msg, extend({ |
24 | content: renderContent(msg), |
25 | layout: 'default' |
26 | }, opts)) |
27 | |
28 | return api.message.html.decorate(element, { msg }) |
29 | } |
30 | |
31 | function renderContent (msg) { |
32 | const { author, content } = msg.value |
33 | var { about, name, description, image } = content |
34 | |
35 | if (image && ref.isBlob(image.link)) image = image.link |
36 | |
37 | if (!ref.isFeed(about)) { |
38 | return [ |
39 | 'Describes ', |
40 | h('a', { href: about }, [about.slice(0, 7), '...']), |
41 | ' as: ', |
42 | name |
43 | ] |
44 | } |
45 | |
46 | const target = author === about |
47 | ? 'themself ' |
48 | : api.about.html.link(about) |
49 | |
50 | return [ |
51 | 'Declares the following about ', target, |
52 | when(name, h('div', [ h('strong', 'Name: '), name ])), |
53 | when(description, h('div', [ h('strong', 'Description: '), description ])), |
54 | when(image, h('img', { src: api.blob.sync.url(image) })) |
55 | ] |
56 | } |
57 | } |
58 | |
59 |
Built with git-ssb-web