slate/components/sidebars/SidebarCreateWalletAddress.js

98 lines
2.2 KiB
JavaScript
Raw Normal View History

2020-06-19 06:57:57 +03:00
import * as React from "react";
import * as Strings from "~/common/strings";
import * as Constants from "~/common/constants";
import * as SVG from "~/components/system/svg";
import * as System from "~/components/system";
2020-06-19 06:57:57 +03:00
import { css } from "@emotion/react";
const SELECT_MENU_OPTIONS = [
2020-06-19 06:57:57 +03:00
{ value: "1", name: "BLS" },
{ value: "2", name: "SECP256K1" },
// { value: '3', name: 'MULTISIG' },
];
const SELECT_MENU_MAP = {
2020-06-19 06:57:57 +03:00
"1": "BLS",
"2": "SECP256K1",
// '3': 'MULTISIG',
};
const SELECT_MENU_SAVE_STRINGS = {
2020-06-19 06:57:57 +03:00
"1": "bls",
"2": "secp256k1",
};
export default class SidebarCreateWalletAddress extends React.Component {
state = {
2020-06-19 06:57:57 +03:00
name: "",
type: "1",
default: false,
};
_handleSubmit = () => {
const data = {
name: this.state.name,
wallet_type: SELECT_MENU_SAVE_STRINGS[this.state.type],
makeDefault: this.state.default,
2020-06-19 06:57:57 +03:00
type: "CREATE_WALLET_ADDRESS",
};
this.props.onSubmit(data);
};
_handleCancel = () => {
this.props.onCancel();
};
_handleChange = (e) => {
this.setState({ [e.target.name]: e.target.value });
};
render() {
return (
<div>
<System.P style={{ fontFamily: Constants.font.semiBold }}>
2020-06-19 06:57:57 +03:00
Create a new address
</System.P>
<System.Input
containerStyle={{ marginTop: 24 }}
label="Address name"
name="name"
value={this.state.name}
onChange={this._handleChange}
/>
<System.SelectMenuFull
containerStyle={{ marginTop: 24 }}
name="type"
label="Address type"
value={this.state.type}
category="type"
onChange={this._handleChange}
2020-06-19 06:57:57 +03:00
options={SELECT_MENU_OPTIONS}
>
{SELECT_MENU_MAP[this.state.type]}
</System.SelectMenuFull>
<System.CheckBox
style={{ marginTop: 24 }}
name="default"
value={this.state.default}
2020-06-19 06:57:57 +03:00
onChange={this._handleChange}
>
Make this wallet the default
</System.CheckBox>
2020-06-19 06:57:57 +03:00
<System.ButtonPrimaryFull
style={{ marginTop: 48 }}
onClick={this._handleSubmit}
>
Create {this.state.name}
</System.ButtonPrimaryFull>
</div>
);
}
}