git ssb

16+

Dominic / patchbay



Tree: cdbc61e108d53d33bc2c5f6160c2c557d17808db

Files: cdbc61e108d53d33bc2c5f6160c2c557d17808db / main.js

1465 bytesRaw
1const combine = require('depject')
2const entry = require('depject/entry')
3const nest = require('depnest')
4const bulk = require('bulk-require')
5
6// polyfills
7require('setimmediate')
8
9const patchbay = {
10 patchbay: {
11 about: bulk(__dirname, [ 'about/**/*.js' ]),
12 app: bulk(__dirname, [ 'app/**/*.js' ]),
13 blob: bulk(__dirname, [ 'blob/**/*.js' ]),
14 channel: bulk(__dirname, [ 'channel/**/*.js' ]),
15 contact: bulk(__dirname, [ 'contact/**/*.js' ]),
16 message: bulk(__dirname, [ 'message/**/*.js' ]),
17 router: bulk(__dirname, [ 'router/**/*.js' ]),
18 styles: bulk(__dirname, [ 'styles/**/*.js' ]),
19
20 config: require('./config'), // shouldn't be in here ?
21 contextMenu: require('patch-context'),
22 suggestions: require('patch-suggest'),
23 settings: require('patch-settings'),
24 drafts: require('patch-drafts'),
25 inbox: require('patch-inbox'), // TODO - ideally this would be a standalone patch-* module
26 history: require('patch-history')
27 }
28}
29
30// from more specialized to more general
31const sockets = combine(
32 // require('ssb-horcrux'),
33 // require('patch-hub'),
34
35 require('ssb-chess'),
36 require('patchbay-gatherings'),
37 require('patchbay-book'),
38 // require('patch-network),
39 patchbay,
40 require('patchcore')
41)
42
43const api = entry(sockets, nest('app.html.app', 'first'))
44const app = api.app.html.app
45
46module.exports = patchbay
47
48// for electro[n]
49if (typeof window !== 'undefined') {
50 document.body.appendChild(app())
51}
52

Built with git-ssb-web