nifty-wallet/ui-dev.js

98 lines
2.3 KiB
JavaScript
Raw Normal View History

2016-07-06 17:58:46 -07:00
/* UI DEV
*
* This is a utility module.
* It initializes a minimalist browserifiable project
* that contains the Metamask UI, with a mocked state.
*
* Includes a state menu for switching between different
* mocked states, along with query param support,
* so those states are preserved when live-reloading.
*
* This is a convenient way to develop on the UI
* without having to re-enter your password
* every time the plugin rebuilds.
*
* To use, run `npm run ui`.
*/
2016-06-30 18:22:16 -07:00
const render = require('react-dom').render
const h = require('react-hyperscript')
const Root = require('./ui/app/root')
2016-07-21 18:08:35 -07:00
const configureStore = require('./development/uiStore')
const states = require('./development/states')
const Selector = require('./development/selector')
2016-06-30 18:22:48 -07:00
2017-02-20 12:59:44 -08:00
// logger
const log = require('loglevel')
window.log = log
log.setDefaultLevel(1)
2017-02-20 12:59:44 -08:00
2016-06-30 18:22:48 -07:00
// Query String
2016-06-30 18:22:16 -07:00
const qs = require('qs')
2016-06-30 18:22:48 -07:00
let queryString = qs.parse(window.location.href.split('#')[1])
2016-11-07 14:11:01 -08:00
let selectedView = queryString.view || 'first time'
2016-06-30 21:39:50 -07:00
const firstState = states[selectedView]
updateQueryParams(selectedView)
2016-06-30 18:22:16 -07:00
2016-06-30 18:22:48 -07:00
// CSS
const MetaMaskUiCss = require('./ui/css')
2016-06-30 18:22:16 -07:00
const injectCss = require('inject-css')
2016-06-30 18:22:48 -07:00
function updateQueryParams(newView) {
queryString.view = newView
const params = qs.stringify(queryString)
window.location.href = window.location.href.split('#')[0] + `#${params}`
2016-06-30 18:22:16 -07:00
}
const actions = {
2016-10-20 12:13:12 -07:00
_setBackgroundConnection(){},
2016-06-30 18:22:16 -07:00
update: function(stateName) {
selectedView = stateName
2016-06-30 18:22:48 -07:00
updateQueryParams(stateName)
2016-06-30 18:22:16 -07:00
const newState = states[selectedView]
return {
type: 'GLOBAL_FORCE_UPDATE',
value: newState,
}
},
}
var css = MetaMaskUiCss()
injectCss(css)
// parse opts
var store = configureStore(states[selectedView])
// start app
2017-09-29 11:50:24 -07:00
startApp()
function startApp(){
const body = document.body
const container = document.createElement('div')
container.id = 'test-container'
body.appendChild(container)
render(
h('.super-dev-container', [
h(Selector, { actions, selectedKey: selectedView, states, store }),
h('#app-content', {
style: {
height: '500px',
width: '360px',
boxShadow: 'grey 0px 2px 9px',
margin: '20px',
},
}, [
h(Root, {
store: store,
}),
]),
]
), container)
}
2016-06-30 18:22:16 -07:00