Commit 702311acccdb404b47764737d8dbc680fb5ded24
clean up some old stuff
Matt McKegg committed on 4/23/2017, 1:01:49 AMParent: ead5d15c75ce6e84eb01e6e0f16ba10e3552d905
Files changed
modules/page/html/render/channel.js | changed |
modules/page/html/render/public.js | changed |
modules/page/html/render/channel.js | ||
---|---|---|
@@ -20,9 +20,9 @@ | ||
20 | 20 … | var channel = path.substr(1) |
21 | 21 … | var subscribedChannels = api.channel.obs.subscribed(api.keys.sync.id()) |
22 | 22 … | |
23 | 23 … | var prepend = [ |
24 | - h('div', {className: 'PageHeading'}, [ | |
24 … | + h('PageHeading', [ | |
25 | 25 … | h('h1', `#${channel}`), |
26 | 26 … | h('div.meta', [ |
27 | 27 … | when(subscribedChannels.has(channel), |
28 | 28 … | h('a.ToggleButton.-unsubscribe', { |
modules/page/html/render/public.js | ||
---|---|---|
@@ -51,18 +51,8 @@ | ||
51 | 51 … | var connectedPeers = api.sbot.obs.connectedPeers() |
52 | 52 … | var localPeers = api.sbot.obs.localPeers() |
53 | 53 … | var connectedPubs = computed([connectedPeers, localPeers], (c, l) => c.filter(x => !l.includes(x))) |
54 | 54 … | |
55 | - var oldest = Date.now() - (2 * 24 * 60 * 60e3) | |
56 | - getFirstMessage(id, (_, msg) => { | |
57 | - if (msg) { | |
58 | - // fall back to timestamp stream before this, give 48 hrs for feeds to stabilize | |
59 | - if (msg.value.timestamp > oldest) { | |
60 | - oldest = Date.now() | |
61 | - } | |
62 | - } | |
63 | - }) | |
64 | - | |
65 | 55 … | var prepend = [ |
66 | 56 … | api.message.html.compose({ meta: { type: 'post' }, placeholder: 'Write a public message' }) |
67 | 57 … | ] |
68 | 58 … | |
@@ -71,9 +61,9 @@ | ||
71 | 61 … | waitFor: computed([ |
72 | 62 … | following.sync, |
73 | 63 … | subscribedChannels.sync |
74 | 64 … | ], (...x) => x.every(Boolean)), |
75 | - windowSize: 500, | |
65 … | + windowSize: 1000, | |
76 | 66 … | filter: (item) => { |
77 | 67 … | return !item.boxed && (item.lastUpdateType !== 'post' || item.message) && ( |
78 | 68 … | id === item.author || |
79 | 69 … | (item.author && following().has(item.author)) || |
@@ -219,9 +209,9 @@ | ||
219 | 209 … | ] |
220 | 210 … | } |
221 | 211 … | |
222 | 212 … | function getFeed (opts) { |
223 | - if (opts.lt && opts.lt < oldest) { | |
213 … | + if (opts.lt) { | |
224 | 214 … | opts = extend(opts, {lt: parseInt(opts.lt, 10)}) |
225 | 215 … | } |
226 | 216 … | |
227 | 217 … | return pull( |
@@ -230,24 +220,8 @@ | ||
230 | 220 … | if (msg.sync) return msg |
231 | 221 … | return {key: msg.key, value: msg.value, timestamp: msg.value.timestamp} |
232 | 222 … | }) |
233 | 223 … | ) |
234 | - | |
235 | - // if (opts.lt && opts.lt < oldest) { | |
236 | - // opts = extend(opts, {lt: parseInt(opts.lt, 10)}) | |
237 | - // return pull( | |
238 | - // api.sbot.pull.feed(opts), | |
239 | - // pull.map((msg) => { | |
240 | - // if (msg.sync) { | |
241 | - // return msg | |
242 | - // } else { | |
243 | - // return {key: msg.key, value: msg.value, timestamp: msg.value.timestamp} | |
244 | - // } | |
245 | - // }) | |
246 | - // ) | |
247 | - // } else { | |
248 | - // return api.sbot.pull.log(opts) | |
249 | - // } | |
250 | 224 … | } |
251 | 225 … | |
252 | 226 … | function getFirstMessage (feedId, cb) { |
253 | 227 … | api.sbot.pull.userFeed({id: feedId, gte: 0, limit: 1})(null, cb) |
Built with git-ssb-web