Files: 93aed91e8e392b4b011fbacc5cccc010522e986d / book / html / authors.js
480 bytesRaw
1 | const nest = require('depnest') |
2 | const { h, when } = require('mutant') |
3 | |
4 | exports.needs = nest({ |
5 | 'blob.sync.url': 'first' |
6 | }) |
7 | |
8 | exports.gives = nest( |
9 | 'book.html.authors' |
10 | ) |
11 | |
12 | exports.create = (api) => { |
13 | return nest('book.html.authors', authors) |
14 | function authors ({authors, isEditing, onUpdate}) { |
15 | return h('section.authors', |
16 | when(isEditing, |
17 | h('input', {'ev-input': e => onUpdate(e.target.value), value: authors}), |
18 | h('span', authors) |
19 | ) |
20 | ) |
21 | } |
22 | } |
23 |
Built with git-ssb-web