git ssb

16+

Dominic / patchbay



Tree: e892538e56a4865e34dfc370f63cfb992eee9f75

Files: e892538e56a4865e34dfc370f63cfb992eee9f75 / message / html / meta / unread.js

433 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('message.html.meta')
5
6exports.needs = nest({
7 'about.obs.name': 'first',
8 'message.obs.likes': 'first'
9})
10
11exports.create = (api) => {
12 return nest('message.html.meta', unread)
13
14 // UnreadFeature (search codebase for this if extracting)
15 function unread (msg) {
16 return h('i.unread.fa.fa-bell', {
17 title: 'A new message'
18 })
19 }
20}
21

Built with git-ssb-web