import * as Dialog from '@radix-ui/react-alert-dialog' import { MixerVerticalIcon } from '@radix-ui/react-icons' import { breakpoints, IconButton, DialogOverlay, DialogContent, RowButton, MenuTextInput, DialogInputWrapper, Divider, } from 'components/shared' import state, { useSelector } from 'state' import { Page } from 'types' export default function PageOptions({ page }: { page: Page }): JSX.Element { const hasOnlyOnePage = useSelector( (s) => Object.keys(s.data.document.pages).length <= 1 ) function handleNameChange(e: React.ChangeEvent) { state.send('CHANGED_PAGE_NAME', { id: page.id, name: e.currentTarget.value, }) } function handleDuplicate() { state.send('DUPLICATED_PAGE', { id: page.id }) } function handleDelete() { state.send('DELETED_PAGE', { id: page.id }) } function handleOpenChange() { if (page.name.length === 0) { state.send('CHANGED_PAGE_NAME', { id: page.id, name: 'Page', }) } } function stopPropagation(e: React.KeyboardEvent) { e.stopPropagation() } return ( Duplicate Delete Cancel ) }