slate/components/sidebars/SidebarDeleteWalletAddress.js

49 lines
1.2 KiB
JavaScript
Raw Normal View History

import * as React from "react";
import * as Constants from "~/common/constants";
import * as System from "~/components/system";
2020-09-12 01:25:33 +03:00
import { dispatchCustomEvent } from "~/common/custom-events";
export default class SidebarDeleteWalletAddress extends React.Component {
_handleSubmit = () => {
2020-09-12 01:25:33 +03:00
dispatchCustomEvent({
name: "create-alert",
detail: {
alert: { 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>
2020-09-08 02:28:50 +03:00
<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
2020-08-02 22:17:13 +03:00
</System.ButtonPrimary>
<System.ButtonSecondary full style={{ marginTop: 16 }} onClick={this._handleCancel}>
Cancel
2020-08-02 22:17:13 +03:00
</System.ButtonSecondary>
</div>
);
}
}