Example #1
0
 constructor (props) {
    super(props);
    this.state = {
       selectedSessionId: requestStore.new(),
       sessionIds: [],
       showProcesses: true,
       sidePanelWidth: 400,
    };
    this.handleClickProcesses = this.handleClickProcesses.bind(this);
    this.handleClickNewSession = this.handleClickNewSession.bind(this);
    this.handleSelectSession = this.handleSelectSession.bind(this);
    this.handleStoreUpdate = this.handleStoreUpdate.bind(this);
 }
Example #2
0
 handleClickNewSession () {
    requestStore.new();
 }