nifty-wallet/ui-dev.js

86 lines
2.0 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
// 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-06-30 18:22:16 -07:00
let selectedView = queryString.view || 'account detail'
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 = {
_setAccountManager(){},
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)
const container = document.querySelector('#app-content')
// parse opts
var store = configureStore(states[selectedView])
// start app
render(
h('.super-dev-container', [
2016-06-30 18:22:48 -07:00
h(Selector, { actions, selectedKey: selectedView, states, store }),
2016-06-30 18:22:16 -07:00
h('.mock-app-root', {
style: {
height: '500px',
width: '360px',
2016-07-06 23:05:30 -07:00
boxShadow: 'grey 0px 2px 9px',
2016-06-30 23:50:20 -07:00
margin: '20px',
},
}, [
h(Root, {
store: store,
}),
]),
2016-06-30 18:22:16 -07:00
]
), container)