git ssb

2+

mixmix / ticktack



Tree: f2c1e3d81bf5bba14c878872f1c99529d7eb2be5

Files: f2c1e3d81bf5bba14c878872f1c99529d7eb2be5 / app / page / threadShow.js

557 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.page.threadShow')
5
6exports.needs = nest({
7 'app.html.nav': 'first',
8 'app.html.thread': 'first'
9})
10
11exports.create = (api) => {
12 return nest('app.page.threadShow', threadShow)
13
14 function threadShow (location) {
15 // location here can expected to be an ssb-message
16
17 const thread = api.app.html.thread(location.key)
18
19 return h('Page -threadShow', [
20 h('h1', 'Private message'),
21 api.app.html.nav(),
22 h('div.container', thread)
23 ])
24 }
25}
26

Built with git-ssb-web