git ssb

16+

Dominic / patchbay



Tree: 4c35bc97fddf6fc8f4a573734738fcc02e905863

Files: 4c35bc97fddf6fc8f4a573734738fcc02e905863 / router / html / page / profile.js

1855 bytesRaw
1const nest = require('depnest')
2const ref = require('ssb-ref')
3const Scroller = require('pull-scroll')
4const pull = require('pull-stream')
5const { h, watch } = require('mutant')
6const next = require('../../../junk/next-stepper')
7
8exports.gives = nest({
9 'router.html.page': true
10})
11// menu_items
12
13exports.needs = nest({
14 'about.html.edit': 'first',
15 'about.obs': {
16 'name': 'first'
17 // 'description': 'first',
18 // 'image': 'first',
19 // 'imageUrl',
20 // 'names',
21 // 'images',
22 },
23 'keys.sync.id': 'first',
24 'main.html.scroller': 'first',
25 'message.html.render': 'first',
26 'sbot.pull.userFeed': 'first'
27})
28
29
30exports.create = function (api) {
31 return nest({
32 'router.html.page': page
33 })
34 // menu_items: () => h('a', {
35 // href: '#'+self_id,
36 // style: { order: 1 }
37 // }, '/profile')
38
39 function page (id) {
40 if (!ref.isFeed(id)) return
41
42 const profile = h('Profile', [
43 h('section.edit', api.about.html.edit(id)),
44 // h('section.relationships', api.contact.relationships(id)),
45 h('section.activity', [
46 h('header', 'Activity')
47 // ideally the scroller content would go in here
48 ])
49 ])
50
51 var { container, content } = api.main.html.scroller({ prepend: profile })
52
53 const name = api.about.obs.name(id)
54 watch(name, name => container.title = '@'+name)
55 container.id = id
56
57 pull(
58 api.sbot.pull.userFeed({id: id, old: false, live: true}),
59 Scroller(container, content, api.message.html.render, true, false)
60 )
61
62 //how to handle when have scrolled past the start???
63
64 pull(
65 next(api.sbot.pull.userFeed, { id: id, reverse: true, limit: 50, live: false }, ['value', 'sequence']),
66 // pull.through(console.log.bind(console)),
67 Scroller(container, content, api.message.html.render, false, false)
68 )
69
70 return container
71 }
72}
73
74
75

Built with git-ssb-web