Files: e0d1f2605dbd0f6b655b690d173b21a6de2d11f1 / app / sync / initialise / errorCatcher.js
545 bytesRaw
1 | const nest = require('depnest') |
2 | |
3 | exports.gives = nest('app.sync.initialise') |
4 | |
5 | exports.needs = nest({ |
6 | 'router.sync.router': 'first', |
7 | 'app.html.tabs': 'first' |
8 | }) |
9 | |
10 | exports.create = function (api) { |
11 | return nest('app.sync.initialise', errorCatcher) |
12 | |
13 | function errorCatcher () { |
14 | const tabs = api.app.html.tabs() |
15 | |
16 | var { container: errorPage, addError } = api.router.sync.router('/errors') |
17 | window.addEventListener('error', ev => { |
18 | if (!tabs.has('/errors')) tabs.add(errorPage, true) |
19 | |
20 | addError(ev.error || ev) |
21 | }) |
22 | } |
23 | } |
24 |
Built with git-ssb-web