aboutsummaryrefslogtreecommitdiffstats
path: root/mascara/src/proxy.js
blob: 8d91e455362c1123760fa1d4d75ca70733462bba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const ParentStream = require('iframe-stream').ParentStream
const SWcontroller = require('client-sw-ready-event/lib/sw-client.js')
const SwStream = require('sw-stream/lib/sw-stream.js')
const SetupUntrustedComunication = ('./lib/setup-untrusted-connection.js')

let intervalDelay =  Math.floor(Math.random() * (60000 - 1000)) + 1000
const background = new SWcontroller({
  fileName: '/background.js',
  letBeIdle: false,
  intervalDelay,
})
window.onfocus = () => {
  background.sendMessage('wakeUp')
  .catch((err) => {
    console.error('problem with wake up', err)
  })
}
const pageStream = new ParentStream()
background.on('ready', (_) => {
  let swStream = SwStream({
    serviceWorker: background.controller,
    context: 'dapp',
  })
  pageStream.pipe(swStream).pipe(pageStream)

})

background.on('error', console.error)
background.startWorker()