mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import * as React from "react";
|
|
import * as Constants from "~/common/constants";
|
|
import * as System from "~/components/system";
|
|
import * as Events from "~/common/custom-events";
|
|
|
|
export default class SidebarDeleteWalletAddress extends React.Component {
|
|
_handleSubmit = () => {
|
|
Events.dispatchMessage({ message: "Deleting wallet address...", status: "INFO" });
|
|
this.props.onSubmit({});
|
|
};
|
|
|
|
_handleCancel = () => {
|
|
this.props.onCancel();
|
|
};
|
|
|
|
_handleChange = (e) => {
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
<System.P
|
|
style={{
|
|
fontFamily: Constants.font.semiBold,
|
|
fontSize: Constants.typescale.lvl3,
|
|
}}
|
|
>
|
|
Are you sure you want to delete the selected wallet?
|
|
</System.P>
|
|
|
|
<System.ButtonPrimary full style={{ marginTop: 48 }} onClick={this._handleSubmit}>
|
|
Delete
|
|
</System.ButtonPrimary>
|
|
|
|
<System.ButtonSecondary full style={{ marginTop: 16 }} onClick={this._handleCancel}>
|
|
Cancel
|
|
</System.ButtonSecondary>
|
|
</div>
|
|
);
|
|
}
|
|
}
|