mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
102 lines
2.4 KiB
TypeScript
102 lines
2.4 KiB
TypeScript
import "./confirm-dialog.scss";
|
|
|
|
import React, { ReactNode } from "react";
|
|
import { observable } from "mobx";
|
|
import { observer } from "mobx-react";
|
|
import { Trans } from "@lingui/macro";
|
|
import { cssNames, noop, prevDefault } from "../../utils";
|
|
import { Button } from "../button";
|
|
import { Dialog, DialogProps } from "../dialog";
|
|
import { Icon } from "../icon";
|
|
|
|
export interface IConfirmDialogParams {
|
|
ok?: () => void;
|
|
labelOk?: ReactNode;
|
|
labelCancel?: ReactNode;
|
|
message?: ReactNode;
|
|
icon?: string;
|
|
}
|
|
|
|
interface Props extends Partial<DialogProps> {
|
|
}
|
|
|
|
@observer
|
|
export class ConfirmDialog extends React.Component<Props> {
|
|
@observable static isOpen = false;
|
|
@observable.ref static params: IConfirmDialogParams;
|
|
|
|
@observable isSaving = false;
|
|
|
|
static open(params: IConfirmDialogParams) {
|
|
ConfirmDialog.isOpen = true;
|
|
ConfirmDialog.params = params;
|
|
}
|
|
|
|
static close() {
|
|
ConfirmDialog.isOpen = false;
|
|
}
|
|
|
|
public defaultParams: IConfirmDialogParams = {
|
|
ok: noop,
|
|
labelOk: <Trans>Ok</Trans>,
|
|
labelCancel: <Trans>Cancel</Trans>,
|
|
icon: "warning",
|
|
};
|
|
|
|
get params(): IConfirmDialogParams {
|
|
return Object.assign({}, this.defaultParams, ConfirmDialog.params);
|
|
}
|
|
|
|
ok = async () => {
|
|
try {
|
|
this.isSaving = true;
|
|
await Promise.resolve(this.params.ok()).catch(noop);
|
|
} finally {
|
|
this.isSaving = false;
|
|
}
|
|
this.close();
|
|
}
|
|
|
|
onClose = () => {
|
|
this.isSaving = false;
|
|
}
|
|
|
|
close = () => {
|
|
ConfirmDialog.close();
|
|
}
|
|
|
|
render() {
|
|
const { className, ...dialogProps } = this.props;
|
|
const { icon, labelOk, labelCancel, message } = this.params;
|
|
return (
|
|
<Dialog
|
|
{...dialogProps}
|
|
className={cssNames("ConfirmDialog", className, icon)}
|
|
isOpen={ConfirmDialog.isOpen}
|
|
onClose={this.onClose}
|
|
close={this.close}
|
|
>
|
|
<div className="confirm-content">
|
|
<Icon big material={icon}/>
|
|
{message}
|
|
</div>
|
|
<div className="confirm-buttons">
|
|
<Button
|
|
plain
|
|
className="cancel"
|
|
label={labelCancel}
|
|
onClick={prevDefault(this.close)}
|
|
/>
|
|
<Button
|
|
autoFocus primary
|
|
className="ok"
|
|
label={labelOk}
|
|
onClick={prevDefault(this.ok)}
|
|
waiting={this.isSaving}
|
|
/>
|
|
</div>
|
|
</Dialog>
|
|
)
|
|
}
|
|
}
|