git ssb

16+

Dominic / patchbay



Tree: d3974f7074e6537fb960ef43cbbc1abcb4704929

Files: d3974f7074e6537fb960ef43cbbc1abcb4704929 / about / html / avatar.js

648 bytesRaw
1const nest = require('depnest')
2const { h, computed } = 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 const src = api.about.obs.imageUrl(id)
19 const color = computed(src, src => src.match(/^http/) ? 'rgba(0,0,0,0)' : api.about.obs.color(id))
20
21 return api.about.html.link(id,
22 h('img', {
23 className: 'Avatar',
24 style: { 'background-color': color },
25 src
26 })
27 )
28 }
29}
30

Built with git-ssb-web