Dialog は、重要な情報を提供したり、意思決定を促したりするために、アプリコンテンツの前に表示されるモーダルウィンドウの一種です。
以下のコンポーネントが含まれています。
Dialog
- ダイアログ要素DialogButton
- ダイアログボタン要素名前 | 型 | デフォルト値 | 説明 |
---|---|---|---|
backdrop | boolean | true | ポップアップの背景(半透明の暗いレイヤー)を有効にします。 |
buttons | ReactNode | ダイアログボタンの内容 | |
colors | object | Tailwind CSS のカラークラスを含むオブジェクト | |
colors.bgIos | string | 'bg-white dark:bg-neutral-800' | iOS テーマでのダイアログの背景色 |
colors.bgMaterial | string | 'bg-md-light-surface-3 dark:bg-md-dark-surface-3' | iOS テーマでのダイアログの背景色 |
colors.contentTextIos | string | '' | iOS テーマでのコンテンツテキストの色 |
colors.contentTextMaterial | string | 'text-md-light-on-surface-variant dark:text-md-dark-on-surface-variant' | Material テーマでのコンテンツテキストの色 |
colors.titleIos | string | '' | iOS テーマでのタイトルテキストの色 |
colors.titleMaterial | string | 'text-md-light-on-surface dark:text-md-dark-on-surface' | Material テーマでのタイトルテキストの色 |
component | string | 'div' | コンポーネントの HTML 要素 |
content | ReactNode | ダイアログのメインコンテンツ | |
opened | boolean | false | ポップアップを開閉し、初期状態を設定できます。 |
sizeIos | string | 'w-[16.875rem]' | iOS テーマの Tailwind CSS サイズクラス |
sizeMaterial | string | 'w-[19.5rem]' | Material テーマの Tailwind CSS サイズクラス |
title | ReactNode | ダイアログのタイトルコンテンツ | |
titleFontSizeIos | string | 'text-[18px]' | iOS テーマのタイトルフォントサイズの Tailwind CSS クラス |
titleFontSizeMaterial | string | 'text-[24px]' | Material テーマのタイトルフォントサイズの Tailwind CSS クラス |
translucent | boolean | true | iOS テーマでダイアログの背景をトランスルーセントにします ( |
onBackdropClick | function(e) | 背景要素のクリックハンドラー |
名前 | 型 | デフォルト値 | 説明 |
---|---|---|---|
colors | object | Tailwind CSS のカラークラスを含むオブジェクト | |
colors.activeBgIos | string | 'active:bg-black active:bg-opacity-10 dark:active:bg-white dark:active:bg-opacity-10' | iOS テーマでのアクティブ/押下状態の背景色 |
colors.disabledTextIos | string | 'text-black text-opacity-30 dark:text-white dark:text-opacity-30' | iOS テーマでの無効化されたボタンのテキストの色 |
colors.textIos | string | 'text-primary' | iOS テーマでのテキストの色 |
component | string | 'button' | コンポーネントの HTML 要素 |
disabled | boolean | false | ボタンを無効にします。 |
strong | boolean | false | iOS テーマではボタンを太字にし、Material テーマでは塗りつぶしにします。 |
strongIos | boolean | false | iOS テーマでボタンを太字にします。 |
strongMaterial | boolean | false | Material テーマでボタンを塗りつぶしにします。 |
onClick | function(e) | DialogButton のクリックハンドラー |
import React, { useState } from 'react';import {Page,Navbar,NavbarBackLink,Dialog,DialogButton,Block,List,ListItem,Radio,Button,} from 'konsta/react';export default function DialogPage() {const [basicOpened, setBasicOpened] = useState(false);const [alertOpened, setAlertOpened] = useState(false);const [confirmOpened, setConfirmOpened] = useState(false);const [listOpened, setListOpened] = useState(false);const [radioValue, setRadioValue] = useState('batman');return (<Page><Navbartitle="Dialog"/><Block strong inset className="space-y-4"><p>Dialog is a type of modal window that appears in front of app contentto provide critical information, or prompt for a decision to be made.</p></Block><Block strong inset><p className="grid grid-cols-2 md:grid-cols-4 gap-4"><Button rounded onClick={() => setBasicOpened(true)}>Basic</Button><Button rounded onClick={() => setAlertOpened(true)}>Alert</Button><Button rounded onClick={() => setConfirmOpened(true)}>Confirm</Button><Button rounded onClick={() => setListOpened(true)}>List</Button></p></Block><Dialogopened={basicOpened}onBackdropClick={() => setBasicOpened(false)}title="Dialog Title"content="Dialog is a type of modal window that appears in front of app content to provide critical information, or prompt for a decision to be made."buttons={<><DialogButton onClick={() => setBasicOpened(false)}>Action 2</DialogButton><DialogButton onClick={() => setBasicOpened(false)}>Action 1</DialogButton></>}/><Dialogopened={alertOpened}onBackdropClick={() => setAlertOpened(false)}title="Konsta UI"content="Hello world!"buttons={<DialogButton onClick={() => setAlertOpened(false)}>Ok</DialogButton>}/><Dialogopened={confirmOpened}onBackdropClick={() => setConfirmOpened(false)}title="Konsta UI"content="All good today?"buttons={<><DialogButton onClick={() => setConfirmOpened(false)}>No</DialogButton><DialogButton strong onClick={() => setConfirmOpened(false)}>Yes</DialogButton></>}/><Dialogopened={listOpened}onBackdropClick={() => setListOpened(false)}title="Your super hero"content={<List nested className="-mx-4"><ListItemlabeltitle="Batman"after={<Radiocomponent="div"value="batman"checked={radioValue === 'batman'}onChange={() => setRadioValue('batman')}/>}/><ListItemlabeltitle="Spider-man"after={<Radiocomponent="div"value="spiderman"checked={radioValue === 'spiderman'}onChange={() => setRadioValue('spiderman')}/>}/><ListItemlabeltitle="Hulk"after={<Radiocomponent="div"value="hulk"checked={radioValue === 'hulk'}onChange={() => setRadioValue('hulk')}/>}/></List>}buttons={<DialogButton onClick={() => setListOpened(false)}>Confirm</DialogButton>}/></Page>);}