Files: 0dbf73654513a31bdd3cab71a2047f263c054072 / main.js
1212 bytesRaw
1 | const combine = require('depject') |
2 | const entry = require('depject/entry') |
3 | const nest = require('depnest') |
4 | |
5 | // polyfills |
6 | require('setimmediate') |
7 | |
8 | // add inspect right click menu |
9 | require('./context-menu') |
10 | |
11 | // from more specialized to more general |
12 | const sockets = combine( |
13 | require('patch-settings'), |
14 | //we always need to have translations first! |
15 | { translations: require('./translations/sync') }, |
16 | { |
17 | about: require('./about'), |
18 | app: require('./app'), |
19 | blob: require('./blob'), |
20 | channel: require('./channel'), |
21 | //config: require('./ssb-config'), |
22 | config: require('./config'), |
23 | // group: require('./group'), |
24 | message: require('./message'), |
25 | router: require('./router'), |
26 | styles: require('./styles'), |
27 | state: require('./state/obs'), |
28 | unread: require('./unread'), |
29 | }, |
30 | require('patchcore') |
31 | ) |
32 | |
33 | const api = entry(sockets, nest({ |
34 | 'app.html.app': 'first', |
35 | 'invite.async.autofollow': 'first' |
36 | })) |
37 | |
38 | document.body.appendChild(api.app.html.app()) |
39 | |
40 | api.invite.async.autofollow( |
41 | 'wx.larpa.net:8008:@DTNmX+4SjsgZ7xyDh5xxmNtFqa6pWi5Qtw7cE8aR9TQ=.ed25519~YIRnryeLBhtBa2il9fCWDlAIFWR37Uh63Vep0L6tk6c=', |
42 | function (err, follows) { |
43 | console.log('autofollowed', err, follows); |
44 | }) |
45 | |
46 |
Built with git-ssb-web