git ssb

1+

Daan Patchwork / patchwork



Tree: 770fe5e2a3d5973a5c9b7d0945b214c3b2ea6793

Files: 770fe5e2a3d5973a5c9b7d0945b214c3b2ea6793 / lib / depject / about / html / image.js

441 bytesRaw
1const h = require('mutant/h')
2const nest = require('depnest')
3
4exports.needs = nest({
5 'about.obs.imageUrl': 'first',
6 'about.obs.color': 'first'
7})
8
9exports.gives = nest('about.html.image')
10
11exports.create = function (api) {
12 return nest('about.html.image', function (id) {
13 return h('img', {
14 className: 'Avatar',
15 style: { 'background-color': api.about.obs.color(id) },
16 src: api.about.obs.imageUrl(id)
17 })
18 })
19}
20

Built with git-ssb-web