Files: 8f4b44fd5c96edb542eb7ebe86e16d6807a5abc5 / plugs / message / html / render / following.js
1360 bytesRaw
1 | var h = require('mutant/h') |
2 | var nest = require('depnest') |
3 | var extend = require('xtend') |
4 | var ref = require('ssb-ref') |
5 | |
6 | exports.needs = nest({ |
7 | 'message.html': { |
8 | decorate: 'reduce', |
9 | layout: 'first' |
10 | }, |
11 | 'profile.html.person': 'first', |
12 | 'intl.sync.i18n': 'first', |
13 | }) |
14 | |
15 | exports.gives = nest('message.html.render') |
16 | |
17 | exports.create = function (api) { |
18 | const i18n = api.intl.sync.i18n |
19 | return nest('message.html.render', function renderMessage (msg, opts) { |
20 | if (msg.value.content.type !== 'contact') return |
21 | if (!ref.isFeed(msg.value.content.contact)) return |
22 | if (typeof msg.value.content.following !== 'boolean' && typeof msg.value.content.blocking !== 'boolean') return |
23 | |
24 | var element = api.message.html.layout(msg, extend({ |
25 | miniContent: messageContent(msg), |
26 | layout: 'mini' |
27 | }, opts)) |
28 | |
29 | return api.message.html.decorate(element, { msg }) |
30 | }) |
31 | |
32 | function messageContent (msg) { |
33 | var following = msg.value.content.following |
34 | var blocking = msg.value.content.blocking |
35 | |
36 | if (typeof blocking === 'boolean') { |
37 | return [ |
38 | blocking ? i18n('blocked ') : i18n('unblocked '), |
39 | api.profile.html.person(msg.value.content.contact) |
40 | ] |
41 | } else { |
42 | return [ |
43 | following ? i18n('followed ') : i18n('unfollowed '), |
44 | api.profile.html.person(msg.value.content.contact) |
45 | ] |
46 | } |
47 | } |
48 | } |
49 |
Built with git-ssb-web