참고: Alert Dialog는 shadcn/ui 구조를 참고하여 구현되었습니다. 접근성 속성(ARIA)이
포함되어 있으며, 프론트엔드에서 React로 전환 시 동일한 구조를 사용할 수 있습니다.
기본 사용법
타이틀 있음, 버튼 2개
Remove this item?
This item will be removed from your cart.
<AlertDialogTrigger dialogId="demo-1"> 다이얼로그 열기 </AlertDialogTrigger>
<AlertDialog id="demo-1"> <AlertDialogContent dialogId="demo-1">
<AlertDialogHeader> <AlertDialogTitle> Remove this item?
</AlertDialogTitle> <AlertDialogDescription> This item will be removed from
your cart. </AlertDialogDescription> </AlertDialogHeader>
<AlertDialogFooter> <AlertDialogActionOutline
dialogId="demo-1">Cancel</AlertDialogActionOutline> <AlertDialogActionPrimary
dialogId="demo-1">Remove</AlertDialogActionPrimary> </AlertDialogFooter>
</AlertDialogContent> </AlertDialog>
타이틀 없음, 버튼 1개
설명만 있고 확인 버튼 1개
Shipping is not available to the selected country at the moment. We’re working to
expand our shipping service to more countries.
<AlertDialog id="demo-2"> <AlertDialogContent dialogId="demo-2">
<AlertDialogDescription> Are you sure you want to proceed?
</AlertDialogDescription> <AlertDialogFooter> <AlertDialogActionPrimary
dialogId="demo-2">Confirm</AlertDialogActionPrimary> </AlertDialogFooter>
</AlertDialogContent> </AlertDialog>
타이틀 없음, 버튼 2개
설명만 있고, 버튼 2개
Please note that if you wish to change the shippong country/region, it is likely that
the policies of the products, prices, and promotions may differ due to the
characteristics of each country and the shippong fees.
<AlertDialog id="demo-3"> <AlertDialogContent dialogId="demo-3">
<AlertDialogDescription> Please note that if you wish to change the shippong
country/region, it is likely that the policies of the products, prices, and promotions may
differ due to the characteristics of each country and the shippong fees.
</AlertDialogDescription> <AlertDialogFooter> <AlertDialogActionOutline
dialogId="demo-3">Cancel</AlertDialogActionOutline> <AlertDialogActionPrimary
dialogId="demo-3">Confirm</AlertDialogActionPrimary> </AlertDialogFooter>
</AlertDialogContent> </AlertDialog>
타이틀 없음, 버튼 2개(버튼 텍스트 2줄)
설명만 있고, 버튼 2개(버튼 텍스트 2줄)
Card authentication was not completed. Please complete the verification and try again.
<AlertDialog id="demo-4"> <AlertDialogContent dialogId="demo-4">
<AlertDialogDescription> Please note that if you wish to change the shippong
country/region, it is likely that the policies of the products, prices, and promotions may
differ due to the characteristics of each country and the shippong fees.
</AlertDialogDescription> <AlertDialogFooter> <AlertDialogActionOutline
dialogId="demo-4">Cancel</AlertDialogActionOutline> <AlertDialogActionPrimary
dialogId="demo-4">Confirm</AlertDialogActionPrimary> </AlertDialogFooter>
</AlertDialogContent> </AlertDialog>
주요 기능
접근성:
ARIA 속성 자동 설정 (role="dialog", aria-modal="true")
타이틀과 설명 ID 자동 연결 (aria-labelledby, aria-describedby)