Files: 8b451f64d074c71ad91a91ec9686141a693e369c / main.js
1362 bytesRaw
1 | const combine = require('depject') |
2 | const entry = require('depject/entry') |
3 | const nest = require('depnest') |
4 | const bulk = require('bulk-require') |
5 | |
6 | // polyfills |
7 | require('setimmediate') |
8 | |
9 | const 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 | inbox: require('patch-inbox'), |
24 | history: require('patch-history'), |
25 | } |
26 | } |
27 | |
28 | |
29 | // from more specialized to more general |
30 | const sockets = combine( |
31 | //require('ssb-horcrux'), |
32 | //require('patch-hub'), |
33 | |
34 | require('ssb-chess'), |
35 | require('patchbay-gatherings'), |
36 | // require('patch-network), |
37 | require('patch-settings'), // might need to be in patchbay |
38 | patchbay, |
39 | require('patchcore') |
40 | ) |
41 | |
42 | const api = entry(sockets, nest('app.html.app', 'first')) |
43 | const app = api.app.html.app |
44 | |
45 | module.exports = patchbay |
46 | |
47 | // for electro[n] |
48 | if (typeof window !== 'undefined') { |
49 | document.body.appendChild(app()) |
50 | } |
51 | |
52 |
Built with git-ssb-web