1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/development/mock-3box.js
Dan J Miller 970e90ea70
Add migration on 3box imports and remove feature flag (#7209)
* Delete unused code

* Run threebox imports through migrations

* Remove 3box feature flag

* Remove unnecessary use of 'type' in threebox._updatePlugin

* Fix threebox controller getLastUpdated

* Turn off threebox by default

* Rename restoredFromThreeBox to showRestorePrompt

* Remove accientally added method from threebox controller

* Restore from threebox on import from unlock screen

* Throw on non 404 errors from Box.getconfig in new3Box
2019-09-26 03:24:52 -04:00

68 lines
1.6 KiB
JavaScript

function delay (time) {
return new Promise(resolve => setTimeout(resolve, time))
}
function loadFromMock3Box (key) {
return new Promise(async (resolve) => {
const res = await fetch('http://localhost:8889?key=' + key)
const text = await res.text()
resolve(text.length ? JSON.parse(text) : null)
})
}
function saveToMock3Box (key, newDataAtKey) {
return new Promise(async (resolve) => {
const res = await fetch('http://localhost:8889', {
method: 'POST',
body: JSON.stringify({
key,
data: newDataAtKey,
}),
})
resolve(res.text())
})
}
class Mock3Box {
static openBox (address) {
this.address = address
return Promise.resolve({
onSyncDone: cb => { setTimeout(cb, 200) },
openSpace: async (spaceName, config) => {
const { onSyncDone } = config
this.spaceName = spaceName
setTimeout(onSyncDone, 150)
await delay(50)
return {
private: {
get: async (key) => {
await delay(50)
const res = await loadFromMock3Box(`${this.address}-${this.spaceName}-${key}`)
return res
},
set: async (key, data) => {
await saveToMock3Box(`${this.address}-${this.spaceName}-${key}`, data)
await delay(50)
return null
},
},
}
},
logout: () => {},
})
}
static async getConfig (address) {
const backup = await loadFromMock3Box(`${address}-metamask-metamaskBackup`)
return backup
? { spaces: { metamask: {} } }
: {}
}
}
module.exports = Mock3Box