Files: 1dbd43a0028f966bbda4aefac6ac37088dd99da9 / modules / feed / html / rollup.js
8537 bytesRaw
1 | var nest = require('depnest') |
2 | var {Value, Proxy, Array: MutantArray, h, computed, map, when, onceTrue, throttle} = require('mutant') |
3 | var pull = require('pull-stream') |
4 | var Abortable = require('pull-abortable') |
5 | var Scroller = require('../../../lib/scroller') |
6 | var nextStepper = require('../../../lib/next-stepper') |
7 | var extend = require('xtend') |
8 | var paramap = require('pull-paramap') |
9 | |
10 | var bumpMessages = { |
11 | 'vote': 'liked this message', |
12 | 'post': 'replied to this message', |
13 | 'about': 'added changes', |
14 | 'mention': 'mentioned you', |
15 | 'channel-mention': 'mentioned this channel' |
16 | } |
17 | |
18 | // bump even for first message |
19 | var rootBumpTypes = ['mention', 'channel-mention'] |
20 | |
21 | exports.needs = nest({ |
22 | 'about.obs.name': 'first', |
23 | 'app.sync.externalHandler': 'first', |
24 | 'message.html.render': 'first', |
25 | 'profile.html.person': 'first', |
26 | 'message.html.link': 'first', |
27 | 'message.sync.root': 'first', |
28 | 'feed.pull.rollup': 'first', |
29 | 'sbot.async.get': 'first', |
30 | 'keys.sync.id': 'first' |
31 | }) |
32 | |
33 | exports.gives = nest({ |
34 | 'feed.html.rollup': true |
35 | }) |
36 | |
37 | exports.create = function (api) { |
38 | return nest('feed.html.rollup', function (getStream, { |
39 | prepend, |
40 | rootFilter = returnTrue, |
41 | bumpFilter = returnTrue, |
42 | displayFilter = returnTrue, |
43 | updateStream, // override the stream used for realtime updates |
44 | waitFor = true |
45 | }) { |
46 | var updates = Value(0) |
47 | var yourId = api.keys.sync.id() |
48 | var throttledUpdates = throttle(updates, 200) |
49 | var updateLoader = h('a Notifier -loader', { href: '#', 'ev-click': refresh }, [ |
50 | 'Show ', h('strong', [throttledUpdates]), ' ', plural(throttledUpdates, 'update', 'updates') |
51 | ]) |
52 | |
53 | var abortLastFeed = null |
54 | var content = Value() |
55 | var loading = Proxy(true) |
56 | var newSinceRefresh = new Set() |
57 | var highlightItems = new Set() |
58 | |
59 | var container = h('Scroller', { |
60 | style: { overflow: 'auto' }, |
61 | hooks: [(element) => { |
62 | // don't activate until added to DOM |
63 | refresh() |
64 | |
65 | // deactivate when removed from DOM |
66 | return () => { |
67 | if (abortLastFeed) { |
68 | abortLastFeed() |
69 | abortLastFeed = null |
70 | } |
71 | } |
72 | }] |
73 | }, [ |
74 | h('div.wrapper', [ |
75 | h('section.prepend', prepend), |
76 | content, |
77 | when(loading, h('Loading -large')) |
78 | ]) |
79 | ]) |
80 | |
81 | onceTrue(waitFor, () => { |
82 | // display pending updates |
83 | pull( |
84 | updateStream || pull( |
85 | getStream({old: false}), |
86 | LookupRoot() |
87 | ), |
88 | pull.filter((msg) => { |
89 | // only render posts that have a root message |
90 | var root = msg.root || msg |
91 | return root && root.value && root.value.content && rootFilter(root) && bumpFilter(msg) && displayFilter(msg) |
92 | }), |
93 | pull.drain((msg) => { |
94 | if (msg.value.content.type === 'vote') return |
95 | if (api.app.sync.externalHandler(msg)) return |
96 | newSinceRefresh.add(msg.key) |
97 | |
98 | if (updates() === 0 && msg.value.author === yourId && container.scrollTop < 20) { |
99 | refresh() |
100 | } else { |
101 | updates.set(updates() + 1) |
102 | } |
103 | }) |
104 | ) |
105 | }) |
106 | |
107 | var result = MutantArray([ |
108 | when(updates, updateLoader), |
109 | container |
110 | ]) |
111 | |
112 | result.pendingUpdates = throttledUpdates |
113 | result.reload = refresh |
114 | |
115 | return result |
116 | |
117 | function refresh () { |
118 | onceTrue(waitFor, () => { |
119 | if (abortLastFeed) abortLastFeed() |
120 | updates.set(0) |
121 | content.set(h('section.content')) |
122 | |
123 | var abortable = Abortable() |
124 | abortLastFeed = abortable.abort |
125 | |
126 | highlightItems = newSinceRefresh |
127 | newSinceRefresh = new Set() |
128 | |
129 | var done = Value(false) |
130 | var stream = nextStepper(getStream, {reverse: true, limit: 50}) |
131 | var scroller = Scroller(container, content(), renderItem, () => done.set(true)) |
132 | |
133 | // track loading state |
134 | loading.set(computed([done, scroller.queue], (done, queue) => { |
135 | return !done && queue < 5 |
136 | })) |
137 | |
138 | pull( |
139 | stream, |
140 | pull.filter(bumpFilter), |
141 | abortable, |
142 | api.feed.pull.rollup(rootFilter), |
143 | scroller |
144 | ) |
145 | }) |
146 | } |
147 | |
148 | function renderItem (item, opts) { |
149 | var partial = opts && opts.partial |
150 | var meta = null |
151 | var previousId = item.key |
152 | |
153 | var groupedBumps = {} |
154 | var lastBumpType = null |
155 | |
156 | var rootBumpType = bumpFilter(item) |
157 | if (rootBumpTypes.includes(rootBumpType)) { |
158 | lastBumpType = rootBumpType |
159 | groupedBumps[lastBumpType] = [item] |
160 | } |
161 | |
162 | item.replies.forEach(msg => { |
163 | var value = bumpFilter(msg) |
164 | if (value) { |
165 | var type = typeof value === 'string' ? value : getType(msg) |
166 | ;(groupedBumps[type] = groupedBumps[type] || []).unshift(msg) |
167 | lastBumpType = type |
168 | } |
169 | }) |
170 | |
171 | var replies = item.replies.filter(isReply) |
172 | var replyElements = replies.filter(displayFilter).sort(byAssertedTime).slice(-3).map((msg) => { |
173 | var result = api.message.html.render(msg, { |
174 | inContext: true, |
175 | inSummary: true, |
176 | previousId, |
177 | priority: highlightItems.has(msg.key) ? 2 : 0 |
178 | }) |
179 | previousId = msg.key |
180 | return result |
181 | }) |
182 | |
183 | var renderedMessage = api.message.html.render(item, {inContext: true}) |
184 | if (!renderedMessage) return h('div') |
185 | if (lastBumpType) { |
186 | var bumps = lastBumpType === 'vote' |
187 | ? getLikeAuthors(groupedBumps[lastBumpType]) |
188 | : getAuthors(groupedBumps[lastBumpType]) |
189 | |
190 | var description = bumpMessages[lastBumpType] || 'added changes' |
191 | meta = h('div.meta', { title: names(bumps) }, [ |
192 | many(bumps, api.profile.html.person), ' ', description |
193 | ]) |
194 | } |
195 | |
196 | return h('FeedEvent -post', { |
197 | attributes: { |
198 | 'data-root-id': item.key |
199 | } |
200 | }, [ |
201 | meta, |
202 | renderedMessage, |
203 | when(replyElements.length, [ |
204 | when(replies.length > replyElements.length || partial, |
205 | h('a.full', {href: item.key}, ['View full thread (', replies.length, ')']) |
206 | ), |
207 | h('div.replies', replyElements) |
208 | ]) |
209 | ]) |
210 | } |
211 | }) |
212 | |
213 | function names (ids) { |
214 | var items = map(Array.from(ids), api.about.obs.name) |
215 | return computed([items], (names) => names.map((n) => `- ${n}`).join('\n')) |
216 | } |
217 | |
218 | function LookupRoot () { |
219 | return paramap((msg, cb) => { |
220 | var rootId = api.message.sync.root(msg) |
221 | if (rootId) { |
222 | api.sbot.async.get(rootId, (_, value) => { |
223 | cb(null, extend(msg, { |
224 | root: {key: rootId, value} |
225 | })) |
226 | }) |
227 | } else { |
228 | cb(null, msg) |
229 | } |
230 | }) |
231 | } |
232 | } |
233 | |
234 | function plural (value, single, many) { |
235 | return computed(value, (value) => { |
236 | if (value === 1) { |
237 | return single |
238 | } else { |
239 | return many |
240 | } |
241 | }) |
242 | } |
243 | |
244 | function many (ids, fn) { |
245 | ids = Array.from(ids) |
246 | var featuredIds = ids.slice(0, 4) |
247 | |
248 | if (ids.length) { |
249 | if (ids.length > 4) { |
250 | return [ |
251 | fn(featuredIds[0]), ', ', |
252 | fn(featuredIds[1]), ', ', |
253 | fn(featuredIds[2]), ' and ', |
254 | ids.length - 3, ' others' |
255 | ] |
256 | } else if (ids.length === 4) { |
257 | return [ |
258 | fn(featuredIds[0]), ', ', |
259 | fn(featuredIds[1]), ', ', |
260 | fn(featuredIds[2]), ' and ', |
261 | fn(featuredIds[3]) |
262 | ] |
263 | } else if (ids.length === 3) { |
264 | return [ |
265 | fn(featuredIds[0]), ', ', |
266 | fn(featuredIds[1]), ' and ', |
267 | fn(featuredIds[2]) |
268 | ] |
269 | } else if (ids.length === 2) { |
270 | return [ |
271 | fn(featuredIds[0]), ' and ', |
272 | fn(featuredIds[1]) |
273 | ] |
274 | } else { |
275 | return fn(featuredIds[0]) |
276 | } |
277 | } |
278 | } |
279 | |
280 | function getAuthors (items) { |
281 | return items.reduce((result, msg) => { |
282 | result.add(msg.value.author) |
283 | return result |
284 | }, new Set()) |
285 | } |
286 | |
287 | function getLikeAuthors (items) { |
288 | return items.reduce((result, msg) => { |
289 | if (msg.value.content.type === 'vote') { |
290 | if (msg.value.content && msg.value.content.vote && msg.value.content.vote.value === 1) { |
291 | result.add(msg.value.author) |
292 | } else { |
293 | result.delete(msg.value.author) |
294 | } |
295 | } |
296 | return result |
297 | }, new Set()) |
298 | } |
299 | |
300 | function isReply (msg) { |
301 | if (msg.value && msg.value.content) { |
302 | var type = msg.value.content.type |
303 | return type === 'post' || (type === 'about' && msg.value.content.attendee) |
304 | } |
305 | } |
306 | |
307 | function getType (msg) { |
308 | return msg && msg.value && msg.value.content && msg.value.content.type |
309 | } |
310 | |
311 | function returnTrue () { |
312 | return true |
313 | } |
314 | |
315 | function byAssertedTime (a, b) { |
316 | return a.value.timestamp - b.value.timestamp |
317 | } |
318 |
Built with git-ssb-web