git ssb

3+

arj / patchbook



Tree: fd2459df8b46e1e0fe589fc20f3d16020399d671

Files: fd2459df8b46e1e0fe589fc20f3d16020399d671 / book / html / authors.js

760 bytesRaw
1const nest = require('depnest')
2const { h, when } = require('mutant')
3
4exports.needs = nest({
5 'blob.sync.url': 'first',
6 'app.sync.goTo': 'first'
7})
8
9exports.gives = nest(
10 'book.html.authors'
11)
12
13exports.create = (api) => {
14 return nest('book.html.authors', authors)
15 function authors ({authors, isEditing, onUpdate}) {
16 return h('section.authors',
17 when(isEditing,
18 h('input', {
19 'ev-input': e => onUpdate(e.target.value),
20 placeholder: 'Authors',
21 value: authors
22 }),
23 h('a', { 'href': '#',
24 'ev-click': () => api.app.sync.goTo({
25 page: 'books',
26 query: 'authors=' + authors()
27 })
28 }, authors)
29 )
30 )
31 }
32}
33

Built with git-ssb-web