git ssb

16+

Dominic / patchbay



Tree: 7e42019f7ef0130e0530ed01be90d79fbad2dac3

Files: 7e42019f7ef0130e0530ed01be90d79fbad2dac3 / about / html / avatar.js

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

Built with git-ssb-web