Files: 68976cde98459b3f066c8c3c0fab7c054a4d848c / modules / private.js
2400 bytesRaw
1 | var pull = require('pull-stream') |
2 | var ref = require('ssb-ref') |
3 | var plugs = require('patchbay/plugs') |
4 | var message_compose = plugs.first(exports.message_compose = []) |
5 | var sbot_log = plugs.first(exports.sbot_log = []) |
6 | var feed_summary = plugs.first(exports.feed_summary = []) |
7 | var message_unbox = plugs.first(exports.message_unbox = []) |
8 | var get_id = plugs.first(exports.get_id = []) |
9 | var avatar_image_link = plugs.first(exports.avatar_image_link = []) |
10 | var update_cache = plugs.first(exports.update_cache = []) |
11 | var h = require('../lib/h') |
12 | |
13 | exports.screen_view = function (path, sbot) { |
14 | if (path === '/private') { |
15 | var id = get_id() |
16 | |
17 | return feed_summary((opts) => { |
18 | return pull( |
19 | sbot_log(opts), |
20 | loosen(10), // release tight loops if they continue too long (avoid scroll jank) |
21 | unbox(), |
22 | pull.through((item) => { |
23 | if (item.value) { |
24 | update_cache(item) |
25 | } |
26 | }) |
27 | ) |
28 | }, [ |
29 | message_compose({type: 'post', recps: [], private: true}, { |
30 | prepublish: function (msg) { |
31 | msg.recps = [id].concat(msg.mentions).filter(function (e) { |
32 | return ref.isFeed(typeof e === 'string' ? e : e.link) |
33 | }) |
34 | if (!msg.recps.length) { |
35 | throw new Error('cannot make private message without recipients - just mention the user in an at reply in the message you send') |
36 | } |
37 | return msg |
38 | }, |
39 | placeholder: 'Write a private message' |
40 | }) |
41 | ], { |
42 | windowSize: 1000 |
43 | }) |
44 | } |
45 | } |
46 | |
47 | exports.message_meta = function (msg) { |
48 | if (msg.value.content.recps || msg.value.private) { |
49 | return h('span.private', [ |
50 | map(msg.value.content.recps, function (id) { |
51 | return avatar_image_link(typeof id === 'string' ? id : id.link, 'thumbnail') |
52 | }) |
53 | ]) |
54 | } |
55 | } |
56 | |
57 | function unbox () { |
58 | return pull( |
59 | pull.filter(function (msg) { |
60 | return typeof msg.value.content === 'string' |
61 | }), |
62 | pull.map(function (msg) { |
63 | return message_unbox(msg) || { timestamp: msg.timestamp } |
64 | }) |
65 | ) |
66 | } |
67 | |
68 | function map (ary, iter) { |
69 | if (Array.isArray(ary)) return ary.map(iter) |
70 | } |
71 | |
72 | function loosen (max) { |
73 | var lastRelease = Date.now() |
74 | return pull.asyncMap(function (item, cb) { |
75 | if (Date.now() - lastRelease > max) { |
76 | setImmediate(() => { |
77 | lastRelease = Date.now() |
78 | cb(null, item) |
79 | }) |
80 | } else { |
81 | cb(null, item) |
82 | } |
83 | }) |
84 | } |
85 |
Built with git-ssb-web