git ssb

0+

alanz / patchwork



forked from Matt McKegg / patchwork

Tree: 8d409051a8f9c8f004d964d1c5cac5e5b8649a01

Files: 8d409051a8f9c8f004d964d1c5cac5e5b8649a01 / modules / page / html / render / mentions.js

773 bytesRaw
1var nest = require('depnest')
2
3exports.needs = nest({
4 'feed.html.rollup': 'first',
5 'keys.sync.id': 'first',
6 'feed.pull.mentions': 'first'
7})
8
9exports.gives = nest('page.html.render')
10
11exports.create = function (api) {
12 return nest('page.html.render', function mentions (path) {
13 if (path !== '/mentions') return
14 var id = api.keys.sync.id()
15 return api.feed.html.rollup(api.feed.pull.mentions(id), {
16 bumpFilter: mentionFilter,
17 displayFilter: mentionFilter
18 })
19
20 // scoped
21 function mentionFilter (msg) {
22 if (Array.isArray(msg.value.content.mentions)) {
23 if (msg.value.content.mentions.some(mention => {
24 return mention && mention.link === id
25 })) {
26 return 'mention'
27 }
28 }
29 }
30 })
31}
32

Built with git-ssb-web