diff options
author | elijah <elijah@riseup.net> | 2016-11-07 22:23:42 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-11-07 22:23:42 -0800 |
commit | 5ba120030a7641a0404252fb7d8b05fced8ede30 (patch) | |
tree | fceda496b0b4d0fa0758bf41163d26d3e1f9a0bd /ui/app/components/addressbook/index.js | |
parent | 7169b2c38d517834e867be987cf62e7466b6f241 (diff) |
ui: add initial addressbook panel
Diffstat (limited to 'ui/app/components/addressbook/index.js')
-rw-r--r-- | ui/app/components/addressbook/index.js | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/ui/app/components/addressbook/index.js b/ui/app/components/addressbook/index.js new file mode 100644 index 0000000..74c119d --- /dev/null +++ b/ui/app/components/addressbook/index.js @@ -0,0 +1,80 @@ +// +// Interface to the key manager +// + + +import React from 'react' +import App from 'app' +import { ButtonToolbar, Button, Glyphicon, Alert } from 'react-bootstrap' + +import {VerticalLayout, Row} from 'components/layout' +import bitmask from 'lib/bitmask' +import './addressbook.less' + +export default class Addressbook extends React.Component { + + static get defaultProps() {return{ + account: null + }} + + constructor(props) { + super(props) + this.state = { + keys: null, + errorMsg: "" + } + this.close = this.close.bind(this) + } + + componentWillMount() { + bitmask.keys.list(true).then(keys => { + this.setState({keys: keys}) + }, error => { + this.setState({errorMsg: error}) + }) + } + + close() { + App.show('main', {initialAccount: this.props.account}) + } + + render() { + let alert = null + let keyList = null + + if (this.state.errorMsg) { + alert = ( + <Alert bsStyle="danger">{this.state.errorMsg}</Alert> + ) + } + + keyList = <b>list of keys goes here</b> + + let buttons = ( + <Button onClick={this.close} className="btn-inverse"> + <Glyphicon glyph="remove" /> + Close + </Button> + ) + + let page = ( + <VerticalLayout className="darkBg"> + <Row className="header" size="shrink" gutter="8px"> + <div className="pull-right"> + {buttons} + </div> + <div className="title"> + {this.props.account.address} + <h1>Addressbook</h1> + </div> + </Row> + <Row className="lightFg" size="expand"> + {alert} + {keyList} + </Row> + </VerticalLayout> + ) + return page + } + +} |