-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add DialogContainer component to support controlled dialogs #1082
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
233 changes: 233 additions & 0 deletions
233
packages/@react-spectrum/dialog/docs/DialogContainer.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
<!-- Copyright 2020 Adobe. All rights reserved. | ||
This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. You may obtain a copy | ||
of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under | ||
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
OF ANY KIND, either express or implied. See the License for the specific language | ||
governing permissions and limitations under the License. --> | ||
|
||
import {Layout} from '@react-spectrum/docs'; | ||
export default Layout; | ||
|
||
import docs from 'docs:@react-spectrum/dialog'; | ||
import {ExampleImage, HeaderInfo, PropTable, FunctionAPI} from '@react-spectrum/docs'; | ||
import packageData from '@react-spectrum/dialog/package.json'; | ||
|
||
```jsx import | ||
import {Content, Footer, Header} from '@react-spectrum/view'; | ||
import {Form} from '@react-spectrum/form'; | ||
import {Heading, Text} from '@react-spectrum/text'; | ||
import {TextField} from '@react-spectrum/textfield'; | ||
import {Divider} from '@react-spectrum/divider'; | ||
import {DialogContainer, Dialog, AlertDialog} from '@react-spectrum/dialog'; | ||
import {ActionButton, Button} from '@react-spectrum/button'; | ||
import {ButtonGroup} from '@react-spectrum/buttongroup'; | ||
import {MenuTrigger, Menu, Item} from '@react-spectrum/menu'; | ||
import More from '@spectrum-icons/workflow/More'; | ||
import Delete from '@spectrum-icons/workflow/Delete'; | ||
import Edit from '@spectrum-icons/workflow/Edit'; | ||
``` | ||
|
||
--- | ||
category: Overlays | ||
keywords: [dialog container, dialog, modal] | ||
after_version: 3.3.0 | ||
--- | ||
|
||
# DialogContainer | ||
|
||
<p>{docs.exports.DialogContainer.description}</p> | ||
|
||
<HeaderInfo | ||
packageData={packageData} | ||
componentNames={['DialogContainer', 'Dialog']} /> | ||
|
||
## Example | ||
|
||
```tsx example | ||
function Example(props) { | ||
let [isOpen, setOpen] = React.useState(false); | ||
|
||
return ( | ||
<> | ||
<ActionButton onPress={() => setOpen(true)}> | ||
<Delete /> | ||
<Text>Delete</Text> | ||
</ActionButton> | ||
<DialogContainer onDismiss={() => setOpen(false)} {...props}> | ||
{isOpen && | ||
<AlertDialog | ||
title="Delete" | ||
variant="destructive" | ||
primaryActionLabel="Delete"> | ||
Are you sure you want to delete this item? | ||
</AlertDialog> | ||
} | ||
</DialogContainer> | ||
</> | ||
); | ||
} | ||
``` | ||
|
||
## Dialog triggered by a menu item | ||
|
||
DialogContainer is useful over a [DialogTrigger](DialogTrigger.html) when your have a trigger that can unmount while the dialog is | ||
open. For example, placing a DialogTrigger around a menu item would not work because the menu closes when pressing an item, thereby | ||
unmounting the DialogTrigger. When the trigger unmounts, so does the Dialog. In these cases, it is useful to place the dialog *outside* | ||
the tree that unmounts, so that the dialog is not also removed. | ||
|
||
The following example shows a [MenuTrigger](MenuTrigger.html) containing a [Menu](Menu.html) with two actions: "edit" and "delete". | ||
Each menu item opens a different dialog. This is implemented by using a DialogContainer that displays the edit dialog, | ||
delete dialog, or no dialog depending on the current value stored in local state. Pressing a menu item triggers the menu's | ||
`onAction` prop, which sets the state to the type of dialog to display, based on the menu item's `key`. This causes the associated | ||
dialog to be rendered within the DialogContainer. | ||
|
||
This example also demonstrates the use of the `useDialogContainer` hook, which allows the dialog to dismiss itself when a user | ||
presses one of the buttons inside it. This triggers the DialogContainer's `onDismiss` event, which resets the state storing the | ||
open dialog back to `null`. In addition, the user can close the dialog using the <kbd>Escape</kbd> key (unless the | ||
`isKeyboardDismissDisabled` prop is set), or by clicking outside (if the `isDismissable` prop is set). | ||
|
||
```tsx example | ||
import {useDialogContainer} from '@react-spectrum/dialog'; | ||
|
||
function Example() { | ||
let [dialog, setDialog] = React.useState(); | ||
|
||
return ( | ||
<> | ||
<MenuTrigger> | ||
<ActionButton aria-label="Actions"><More /></ActionButton> | ||
<Menu onAction={setDialog}> | ||
<Item key="edit">Edit...</Item> | ||
<Item key="delete">Delete...</Item> | ||
</Menu> | ||
</MenuTrigger> | ||
<DialogContainer onDismiss={() => setDialog(null)}> | ||
{dialog === 'edit' && | ||
<EditDialog /> | ||
} | ||
{dialog === 'delete' && | ||
<AlertDialog | ||
title="Delete" | ||
variant="destructive" | ||
primaryActionLabel="Delete"> | ||
Are you sure you want to delete this item? | ||
</AlertDialog> | ||
} | ||
</DialogContainer> | ||
</> | ||
); | ||
} | ||
|
||
function EditDialog() { | ||
// This hook allows us to dismiss the dialog when the user | ||
// presses one of the buttons (below). | ||
let dialog = useDialogContainer(); | ||
|
||
return ( | ||
<Dialog> | ||
<Heading>Edit</Heading> | ||
<Divider /> | ||
<Content> | ||
<Form labelPosition="side" width="100%"> | ||
<TextField autoFocus label="First Name" defaultValue="John" /> | ||
<TextField label="Last Name" defaultValue="Smith" /> | ||
</Form> | ||
</Content> | ||
<ButtonGroup> | ||
<Button variant="secondary" onPress={dialog.dismiss}>Cancel</Button> | ||
<Button variant="cta" onPress={dialog.dismiss}>Save</Button> | ||
</ButtonGroup> | ||
</Dialog> | ||
); | ||
} | ||
``` | ||
|
||
## Props | ||
|
||
<PropTable component={docs.exports.DialogContainer} links={docs.links} /> | ||
|
||
## useDialogContainer | ||
|
||
The `useDialogContainer` hook can be used to allow a custom dialog component to access the `type` of container | ||
the dialog is rendered in (e.g. `modal`, `popover`, `fullscreen`, etc.), and also to dismiss the dialog | ||
programmatically. It works with both `DialogContainer` and [DialogTrigger](DialogTrigger.html). | ||
|
||
<FunctionAPI function={docs.exports.useDialogContainer} links={docs.links} /> | ||
|
||
## Visual options | ||
|
||
### Full screen | ||
|
||
The `type` prop allows setting the type of modal to display. Set it to `"fullscreen"` to display a full screen dialog, which | ||
only reveals a small portion of the page behind the underlay. Use this variant for more complex workflows that do not fit in | ||
the available modal dialog [sizes](Dialog.html#size). | ||
|
||
```tsx example | ||
function Example(props) { | ||
let [isOpen, setOpen] = React.useState(false); | ||
|
||
return ( | ||
<> | ||
<ActionButton onPress={() => setOpen(true)}> | ||
<Edit /> | ||
<Text>Edit</Text> | ||
</ActionButton> | ||
<DialogContainer type="fullscreen" onDismiss={() => setOpen(false)} {...props}> | ||
{isOpen && | ||
<EditDialog /> | ||
} | ||
</DialogContainer> | ||
</> | ||
); | ||
} | ||
``` | ||
|
||
### Full screen takeover | ||
|
||
Fullscreen takeover dialogs are similar to the fullscreen variant except that the dialog covers the entire screen. | ||
|
||
```tsx example | ||
function Example(props) { | ||
let [isOpen, setOpen] = React.useState(false); | ||
|
||
return ( | ||
<> | ||
<ActionButton onPress={() => setOpen(true)}> | ||
<Edit /> | ||
<Text>Edit</Text> | ||
</ActionButton> | ||
<DialogContainer type="fullscreenTakeover" onDismiss={() => setOpen(false)} {...props}> | ||
{isOpen && | ||
<EditDialog /> | ||
} | ||
</DialogContainer> | ||
</> | ||
); | ||
} | ||
``` | ||
|
||
```tsx import | ||
// Duplicated from above so we can access in other examples... | ||
function EditDialog() { | ||
let dialog = useDialogContainer(); | ||
|
||
return ( | ||
<Dialog> | ||
<Heading>Edit</Heading> | ||
<Divider /> | ||
<Content> | ||
<Form width="100%"> | ||
<TextField autoFocus label="First Name" defaultValue="John" /> | ||
<TextField label="Last Name" defaultValue="Smith" /> | ||
</Form> | ||
</Content> | ||
<ButtonGroup> | ||
<Button variant="secondary" onPress={dialog.dismiss}>Cancel</Button> | ||
<Button variant="cta" onPress={dialog.dismiss}>Save</Button> | ||
</ButtonGroup> | ||
</Dialog> | ||
); | ||
} | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright 2020 Adobe. All rights reserved. | ||
* This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. You may obtain a copy | ||
* of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under | ||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
* OF ANY KIND, either express or implied. See the License for the specific language | ||
* governing permissions and limitations under the License. | ||
*/ | ||
|
||
import {DialogContext} from './context'; | ||
import {Modal} from '@react-spectrum/overlays'; | ||
import React, {ReactElement, useRef} from 'react'; | ||
import {SpectrumDialogContainerProps} from '@react-types/dialog'; | ||
|
||
/** | ||
* A DialogContainer accepts a single Dialog as a child, and manages showing and hiding | ||
* it in a modal. Useful in cases where there is no trigger element | ||
* or when the trigger unmounts while the dialog is open. | ||
*/ | ||
export function DialogContainer(props: SpectrumDialogContainerProps) { | ||
let { | ||
children, | ||
type = 'modal', | ||
onDismiss, | ||
isDismissable, | ||
isKeyboardDismissDisabled | ||
} = props; | ||
|
||
let childArray = React.Children.toArray(children); | ||
if (childArray.length > 1) { | ||
throw new Error('Only a single child can be passed to DialogContainer.'); | ||
} | ||
|
||
let lastChild = useRef<ReactElement>(null); | ||
let child = React.isValidElement(childArray[0]) ? childArray[0] : null; | ||
if (child) { | ||
lastChild.current = child; | ||
} | ||
|
||
let context = { | ||
type, | ||
onClose: onDismiss, | ||
isDismissable | ||
}; | ||
|
||
return ( | ||
<Modal | ||
isOpen={!!child} | ||
onClose={onDismiss} | ||
type={type} | ||
isDismissable={isDismissable} | ||
isKeyboardDismissDisabled={isKeyboardDismissDisabled}> | ||
<DialogContext.Provider value={context}> | ||
{lastChild.current} | ||
</DialogContext.Provider> | ||
</Modal> | ||
); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes the issue with
aria-hidden
on an open dialog that came up before. I believe this logic was simply incorrect: each ModalProvider keeps track of the number of modals open in its subtree, but this seems to store a count of all open modals. 🤷