office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
43 lines • 2.31 kB
JavaScript
import * as React from 'react';
import { DefaultButton, PrimaryButton } from 'office-ui-fabric-react/lib/Button';
import { Dialog, DialogFooter, DialogType } from 'office-ui-fabric-react/lib/Dialog';
import { Panel } from 'office-ui-fabric-react/lib/Panel';
import { useConstCallback } from '@uifabric/react-hooks';
var explanation = 'When this panel is closed, a confirmation dialog will appear.';
var dialogContentProps = {
type: DialogType.normal,
title: 'Are you sure you want to close the panel?'
};
var dialogModalProps = {
isBlocking: true,
styles: { main: { maxWidth: 450 } }
};
export var PanelConfirmDismissExample = function () {
var _a = React.useState(false), isPanelOpen = _a[0], setIsPanelOpen = _a[1];
var _b = React.useState(false), isDialogVisible = _b[0], setIsDialogVisible = _b[1];
var openPanel = useConstCallback(function () { return setIsPanelOpen(true); });
var onDismiss = useConstCallback(function (ev) {
if (ev) {
// Instead of closing the panel immediately, cancel that action and show a dialog
ev.preventDefault();
setIsDialogVisible(true);
}
});
var hideDialog = useConstCallback(function () { return setIsDialogVisible(false); });
var hideDialogAndPanel = useConstCallback(function () {
setIsPanelOpen(false);
setIsDialogVisible(false);
});
return (React.createElement("div", null,
explanation,
React.createElement("br", null),
React.createElement("br", null),
React.createElement(DefaultButton, { text: "Open panel", onClick: openPanel }),
React.createElement(Panel, { headerText: "Panel with custom close behavior", isOpen: isPanelOpen, onDismiss: onDismiss, closeButtonAriaLabel: "Close" },
React.createElement("span", null, explanation)),
React.createElement(Dialog, { hidden: !isDialogVisible, onDismiss: hideDialog, dialogContentProps: dialogContentProps, modalProps: dialogModalProps },
React.createElement(DialogFooter, null,
React.createElement(PrimaryButton, { onClick: hideDialogAndPanel, text: "Yes" }),
React.createElement(DefaultButton, { onClick: hideDialog, text: "No" })))));
};
//# sourceMappingURL=Panel.ConfirmDismiss.Example.js.map