Files: b562e05b785dd3f68360267ec1b32b9c9e775278 / app / page / groupShow.js
613 bytesRaw
1 | const nest = require('depnest') |
2 | const { h } = require('mutant') |
3 | |
4 | exports.gives = nest('app.page.groupShow') |
5 | |
6 | exports.needs = nest({ |
7 | 'translations.sync.strings': 'first', |
8 | 'app.html.nav': 'first' |
9 | }) |
10 | |
11 | exports.create = (api) => { |
12 | var strings = api.translations.sync.strings() |
13 | return nest('app.page.groupShow', groupShow) |
14 | |
15 | function groupShow (location) { |
16 | // location here can be the root message of a group : { type: 'group', key } |
17 | // TODO show specific group index described by key |
18 | |
19 | return h('Page -groupShow', {title: strings.groupShow}, [ |
20 | h('p', `key: ${location.key}`) |
21 | ]) |
22 | } |
23 | } |
24 | |
25 | |
26 | |
27 | |
28 |
Built with git-ssb-web