Skip to content

Commit

Permalink
Merge branch 'develop' into feature/add-avatar-forced-colors-border
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpens authored Sep 11, 2024
2 parents 0b632c3 + f25bc01 commit 80be4aa
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
3 changes: 1 addition & 2 deletions packages/css/src/components/dialog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ Also, this approach keeps the order of buttons consistent on both narrow and wid

## Closing Dialog without submit

You can close a Dialog without submitting by using `<button type="button" onClick={closeDialog}>`.
This uses the `closeDialog` function from the React package.
You can close a Dialog without submitting by using `<button type="button" onClick={Dialog.close}>`.

## References

Expand Down
14 changes: 9 additions & 5 deletions packages/react/src/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ export type DialogProps = {
heading: string
} & PropsWithChildren<DialogHTMLAttributes<HTMLDialogElement>>

export const closeDialog = (event: MouseEvent<HTMLButtonElement>) => event.currentTarget.closest('dialog')?.close()
const closeDialog = (event: MouseEvent<HTMLButtonElement>) => event.currentTarget.closest('dialog')?.close()
const openDialog = (id: string) => (document.querySelector(id) as HTMLDialogElement)?.showModal()

export const openDialog = (id: string) => (document.querySelector(id) as HTMLDialogElement)?.showModal()

export const Dialog = forwardRef(
const DialogRoot = forwardRef(
(
{ actions, children, className, closeButtonLabel = 'Sluiten', heading, ...restProps }: DialogProps,
ref: ForwardedRef<HTMLDialogElement>,
Expand All @@ -40,4 +39,9 @@ export const Dialog = forwardRef(
),
)

Dialog.displayName = 'Dialog'
DialogRoot.displayName = 'Dialog'

export const Dialog = Object.assign(DialogRoot, {
close: closeDialog,
open: openDialog,
})
2 changes: 1 addition & 1 deletion packages/react/src/Dialog/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { closeDialog, Dialog, openDialog } from './Dialog'
export { Dialog } from './Dialog'
export type { DialogProps } from './Dialog'
4 changes: 2 additions & 2 deletions storybook/src/components/Dialog/Dialog.docs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ Click or tap this Button to open the Dialog.

#### Utility functions

To open the Dialog, use the `openDialog` function from the React package.
To open the Dialog, use `Dialog.open(id)` from the React package.
Pass the Dialog’s `id` to the function to select it.
To close the Dialog, use the `closeDialog` function.
To close the Dialog, use `Dialog.close`.

### Vertically stacked Buttons

Expand Down
12 changes: 6 additions & 6 deletions storybook/src/components/Dialog/Dialog.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* Copyright Gemeente Amsterdam
*/

import { Button, closeDialog, Heading, Paragraph } from '@amsterdam/design-system-react'
import { Dialog, openDialog } from '@amsterdam/design-system-react/src'
import { Button, Heading, Paragraph } from '@amsterdam/design-system-react'
import { Dialog } from '@amsterdam/design-system-react/src'
import { Meta, StoryObj } from '@storybook/react'

const meta = {
Expand All @@ -14,7 +14,7 @@ const meta = {
actions: (
<>
<Button type="submit">Doorgaan</Button>
<Button onClick={closeDialog} variant="tertiary">
<Button onClick={Dialog.close} variant="tertiary">
Stoppen
</Button>
</>
Expand Down Expand Up @@ -67,7 +67,7 @@ export const Default: Story = {

export const WithScrollbar: Story = {
args: {
actions: <Button onClick={closeDialog}>Sluiten</Button>,
actions: <Button onClick={Dialog.close}>Sluiten</Button>,
children: [
<Heading level={2} size="level-5" key={1}>
Algemeen
Expand Down Expand Up @@ -125,7 +125,7 @@ export const TriggerButton: Story = {
decorators: [
(Story) => (
<article>
<Button onClick={() => openDialog('#openDialog')}>Open Dialog</Button>
<Button onClick={() => Dialog.open('#openDialog')}>Open Dialog</Button>
<Story />
</article>
),
Expand All @@ -137,7 +137,7 @@ export const VerticalButtons: Story = {
actions: (
<>
<Button type="submit">Lange teksten op deze knoppen</Button>
<Button onClick={closeDialog} variant="tertiary">
<Button onClick={Dialog.close} variant="tertiary">
Om verticaal stapelen te demonstreren
</Button>
</>
Expand Down

0 comments on commit 80be4aa

Please sign in to comment.