mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
const ObservableStore = require('obs-store')
|
|
const extend = require('xtend')
|
|
|
|
/**
|
|
* @typedef {Object} InitState
|
|
* @property {Boolean} seedPhraseBackedUp Indicates whether the user has completed the seed phrase backup challenge
|
|
*/
|
|
|
|
/**
|
|
* @typedef {Object} OnboardingOptions
|
|
* @property {InitState} initState The initial controller state
|
|
*/
|
|
|
|
/**
|
|
* Controller responsible for maintaining
|
|
* a cache of account balances in local storage
|
|
*/
|
|
class OnboardingController {
|
|
/**
|
|
* Creates a new controller instance
|
|
*
|
|
* @param {OnboardingOptions} [opts] Controller configuration parameters
|
|
*/
|
|
constructor (opts = {}) {
|
|
const initState = extend({
|
|
seedPhraseBackedUp: true,
|
|
}, opts.initState)
|
|
this.store = new ObservableStore(initState)
|
|
}
|
|
|
|
setSeedPhraseBackedUp (newSeedPhraseBackUpState) {
|
|
this.store.updateState({
|
|
seedPhraseBackedUp: newSeedPhraseBackUpState,
|
|
})
|
|
}
|
|
|
|
getSeedPhraseBackedUp () {
|
|
return this.store.getState().seedPhraseBackedUp
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = OnboardingController
|