You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
3.7 KiB
143 lines
3.7 KiB
/* MOCK DEV
|
|
*
|
|
* This is a utility module.
|
|
* It initializes a minimalist browserifiable project
|
|
* that contains the Metamask UI, with a local background process.
|
|
*
|
|
* Includes a state reset button for restoring to initial state.
|
|
*
|
|
* This is a convenient way to develop and test the plugin
|
|
* without having to re-open the plugin or even re-build it.
|
|
*/
|
|
|
|
import React from 'react'
|
|
const render = require('react-dom').render
|
|
const Root = require('../ui/app/pages')
|
|
const configureStore = require('../ui/app/store/store')
|
|
const actions = require('../ui/app/store/actions')
|
|
const backGroundConnectionModifiers = require('./backGroundConnectionModifiers')
|
|
import Selector from './selector'
|
|
const MetamaskController = require('../app/scripts/metamask-controller')
|
|
const firstTimeState = require('../app/scripts/first-time-state')
|
|
const ExtensionPlatform = require('../app/scripts/platforms/extension')
|
|
const noop = function () {}
|
|
|
|
// the states file is generated before this file is run, but after `lint` is run
|
|
const states = require('./states') /* eslint-disable-line import/no-unresolved */
|
|
|
|
const log = require('loglevel')
|
|
window.log = log
|
|
log.setLevel('debug')
|
|
|
|
//
|
|
// Query String
|
|
//
|
|
|
|
const qs = require('qs')
|
|
const routerPath = window.location.href.split('#')[1]
|
|
let queryString = {}
|
|
let selectedView
|
|
|
|
if (routerPath) {
|
|
queryString = qs.parse(routerPath.split('?')[1])
|
|
}
|
|
|
|
selectedView = queryString.view || 'send new ui'
|
|
const firstState = states[selectedView]
|
|
updateQueryParams(selectedView)
|
|
|
|
function updateQueryParams (newView) {
|
|
queryString.view = newView
|
|
const params = qs.stringify(queryString)
|
|
const locationPaths = window.location.href.split('#')
|
|
const routerPath = locationPaths[1] || ''
|
|
const newPath = locationPaths[0] + '#' + routerPath.split('?')[0] + `?${params}`
|
|
|
|
if (window.location.href !== newPath) {
|
|
window.location.href = newPath
|
|
}
|
|
}
|
|
|
|
//
|
|
// MetaMask Controller
|
|
//
|
|
|
|
const controller = new MetamaskController({
|
|
// User confirmation callbacks:
|
|
showUnconfirmedMessage: noop,
|
|
showUnapprovedTx: noop,
|
|
platform: {},
|
|
// initial state
|
|
initState: firstTimeState,
|
|
})
|
|
global.metamaskController = controller
|
|
global.platform = new ExtensionPlatform()
|
|
|
|
//
|
|
// User Interface
|
|
//
|
|
|
|
actions._setBackgroundConnection(controller.getApi())
|
|
actions.update = function (stateName) {
|
|
selectedView = stateName
|
|
updateQueryParams(stateName)
|
|
const newState = states[selectedView]
|
|
return {
|
|
type: 'GLOBAL_FORCE_UPDATE',
|
|
value: newState,
|
|
}
|
|
}
|
|
|
|
function modifyBackgroundConnection (backgroundConnectionModifier) {
|
|
const modifiedBackgroundConnection = Object.assign({}, controller.getApi(), backgroundConnectionModifier)
|
|
actions._setBackgroundConnection(modifiedBackgroundConnection)
|
|
}
|
|
|
|
// parse opts
|
|
const store = configureStore(firstState)
|
|
|
|
// start app
|
|
startApp()
|
|
|
|
function startApp () {
|
|
const body = document.body
|
|
const container = document.createElement('div')
|
|
container.id = 'test-container'
|
|
body.appendChild(container)
|
|
|
|
render(
|
|
<div className="super-dev-container">
|
|
<button
|
|
onClick={(ev) => {
|
|
ev.preventDefault()
|
|
store.dispatch(actions.update('terms'))
|
|
}}
|
|
style={{
|
|
margin: '19px 19px 0px 19px',
|
|
}}
|
|
>
|
|
Reset State
|
|
</button>
|
|
<Selector
|
|
states={states}
|
|
selectedKey={selectedView}
|
|
actions={actions}
|
|
store={store}
|
|
modifyBackgroundConnection={modifyBackgroundConnection}
|
|
backGroundConnectionModifiers={backGroundConnectionModifiers}
|
|
/>
|
|
<div
|
|
id="app-content"
|
|
style={{
|
|
height: '500px',
|
|
width: '360px',
|
|
boxShadow: 'grey 0px 2px 9px',
|
|
margin: '20px',
|
|
}}
|
|
>
|
|
<Root store={store} />
|
|
</div>
|
|
</div>,
|
|
container,
|
|
)
|
|
}
|
|
|