1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/development/mock-dev.js

142 lines
3.7 KiB
JavaScript
Raw Normal View History

2016-07-22 03:08:35 +02:00
/* 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 log from 'loglevel'
2019-11-25 14:32:09 +01:00
import React from 'react'
import { render } from 'react-dom'
import * as qs from 'qs'
2019-11-25 14:32:09 +01:00
import Selector from './selector'
import * as actions from '../ui/app/store/actions'
import Root from '../ui/app/pages'
import configureStore from '../ui/app/store/store'
import MetamaskController from '../app/scripts/metamask-controller'
import firstTimeState from '../app/scripts/first-time-state'
import ExtensionPlatform from '../app/scripts/platforms/extension'
const backGroundConnectionModifiers = require('./backGroundConnectionModifiers')
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 */
2017-02-20 21:59:44 +01:00
window.log = log
log.setLevel('debug')
2016-07-22 03:08:35 +02:00
2018-04-05 03:21:30 +02:00
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'
2016-07-22 03:08:35 +02:00
const firstState = states[selectedView]
updateQueryParams(selectedView)
2018-04-05 03:21:30 +02:00
function updateQueryParams (newView) {
queryString.view = newView
const params = qs.stringify(queryString)
2018-04-05 03:21:30 +02:00
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
//
2016-07-22 03:08:35 +02:00
const controller = new MetamaskController({
// User confirmation callbacks:
showUnconfirmedMessage: noop,
2016-12-16 19:33:36 +01:00
showUnapprovedTx: noop,
2017-09-19 19:53:56 +02:00
platform: {},
2017-01-12 04:04:19 +01:00
// initial state
2017-02-01 08:39:39 +01:00
initState: firstTimeState,
2016-07-22 03:08:35 +02:00
})
global.metamaskController = controller
2018-07-03 00:49:33 +02:00
global.platform = new ExtensionPlatform()
2016-07-22 03:08:35 +02:00
//
// User Interface
//
2016-07-22 03:08:35 +02:00
2016-10-20 21:13:12 +02:00
actions._setBackgroundConnection(controller.getApi())
function updateState (stateName) {
2016-07-22 03:08:35 +02:00
selectedView = stateName
updateQueryParams(stateName)
const newState = states[selectedView]
return {
type: 'GLOBAL_FORCE_UPDATE',
value: newState,
}
}
2018-07-03 00:49:33 +02:00
function modifyBackgroundConnection (backgroundConnectionModifier) {
const modifiedBackgroundConnection = Object.assign({}, controller.getApi(), backgroundConnectionModifier)
actions._setBackgroundConnection(modifiedBackgroundConnection)
}
2016-07-22 03:08:35 +02:00
// parse opts
const store = configureStore(firstState)
2016-07-22 03:08:35 +02:00
// start app
startApp()
2018-07-03 00:49:33 +02:00
function startApp () {
const body = document.body
const container = document.createElement('div')
container.id = 'test-container'
body.appendChild(container)
render(
2019-11-25 14:32:09 +01:00
<div className="super-dev-container">
<button
onClick={(ev) => {
ev.preventDefault()
store.dispatch(updateState('terms'))
2019-11-25 14:32:09 +01:00
}}
style={{
margin: '19px 19px 0px 19px',
2019-11-25 14:32:09 +01:00
}}
>
Reset State
</button>
<Selector
states={states}
selectedKey={selectedView}
updateState={updateState}
2019-11-25 14:32:09 +01:00
store={store}
modifyBackgroundConnection={modifyBackgroundConnection}
backGroundConnectionModifiers={backGroundConnectionModifiers}
/>
<div
id="app-content"
style={{
height: '500px',
width: '360px',
boxShadow: 'grey 0px 2px 9px',
margin: '20px',
2019-11-25 14:32:09 +01:00
}}
>
<Root store={store} />
2019-11-25 14:32:09 +01:00
</div>
</div>,
container,
)
}