blob: aaf2dc5b73f6f2d2c774e3802ba237cdeed9cdd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import React from 'react'
import ReactDOM from 'react-dom'
import DebugPanel from './debug_panel'
import Splash from './splash'
import GreeterPanel from './greeter_panel'
import MainPanel from './main_panel'
import Wizard from './wizard'
import App from 'app'
import 'lib/common'
export default class PanelSwitcher extends React.Component {
constructor(props) {
super(props)
this.state = {
panel: null,
panel_properties: null,
debug: false
}
App.switcher = this
}
show(component_name, properties={}) {
this.setState({panel: component_name, panel_properties: properties})
}
render() {
let elems = []
if (this.panelExist(this.state.panel)) {
elems.push(
this.panelRender(this.state.panel, this.state.panel_properties)
)
}
if (this.state.debug) {
elems.push(
elem(DebugPanel, {key: 'debug'})
)
}
return <div id="root">{elems}</div>
}
panelExist(panel) {
return panel && this['render_'+panel]
}
panelRender(panel_name, props) {
let panel = this['render_'+panel_name](props)
return elem('div', {key: 'panel'}, panel)
}
render_splash(props) {return elem(Splash, props)}
render_wizard(props) {return elem(Wizard, props)}
render_greeter(props) {return elem(GreeterPanel, props)}
render_main(props) {return elem(MainPanel, props)}
}
|