66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
![]() |
import { DialogContentText } from "@material-ui/core";
|
||
|
import ActionDialog from "@saleor/components/ActionDialog";
|
||
|
import { ConfirmButtonTransitionState } from "@saleor/macaw-ui";
|
||
|
import { getStringOrPlaceholder } from "@saleor/misc";
|
||
|
import React from "react";
|
||
|
import { FormattedMessage, useIntl } from "react-intl";
|
||
|
|
||
|
import msgs from "./messages";
|
||
|
|
||
|
export interface AppDeleteDialogProps {
|
||
|
confirmButtonState: ConfirmButtonTransitionState;
|
||
|
open: boolean;
|
||
|
name?: string | null;
|
||
|
onClose: () => void;
|
||
|
onConfirm: () => void;
|
||
|
type: "CUSTOM" | "EXTERNAL";
|
||
|
}
|
||
|
|
||
|
const AppDeleteDialog: React.FC<AppDeleteDialogProps> = ({
|
||
|
confirmButtonState,
|
||
|
open,
|
||
|
name,
|
||
|
onClose,
|
||
|
onConfirm,
|
||
|
type,
|
||
|
}) => {
|
||
|
const intl = useIntl();
|
||
|
|
||
|
const missingName = name === null || name === "";
|
||
|
const isExternal = type === "EXTERNAL";
|
||
|
|
||
|
const getMainText = () => {
|
||
|
if (missingName && isExternal) {
|
||
|
return intl.formatMessage(msgs.deleteApp);
|
||
|
}
|
||
|
if (missingName) {
|
||
|
return intl.formatMessage(msgs.deleteLocalApp);
|
||
|
}
|
||
|
if (isExternal) {
|
||
|
return intl.formatMessage(msgs.deleteNamedApp, {
|
||
|
name: <strong>{getStringOrPlaceholder(name)}</strong>,
|
||
|
});
|
||
|
}
|
||
|
return intl.formatMessage(msgs.deleteLocalNamedApp, {
|
||
|
name: <strong>{getStringOrPlaceholder(name)}</strong>,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<ActionDialog
|
||
|
confirmButtonState={confirmButtonState}
|
||
|
open={open}
|
||
|
onClose={onClose}
|
||
|
onConfirm={onConfirm}
|
||
|
title={intl.formatMessage(msgs.deleteAppTitle)}
|
||
|
variant="delete"
|
||
|
>
|
||
|
<DialogContentText data-test-id="dialog-content">
|
||
|
{getMainText()} <FormattedMessage {...msgs.deleteAppQuestion} />
|
||
|
</DialogContentText>
|
||
|
</ActionDialog>
|
||
|
);
|
||
|
};
|
||
|
AppDeleteDialog.displayName = "AppDeleteDialog";
|
||
|
export default AppDeleteDialog;
|