mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
114 lines
2.8 KiB
TypeScript
114 lines
2.8 KiB
TypeScript
import { forwardRef } from 'react';
|
|
import {
|
|
Modal,
|
|
Popover,
|
|
ModalBody,
|
|
IconButton,
|
|
PopoverBody,
|
|
ModalOverlay,
|
|
ModalContent,
|
|
PopoverArrow,
|
|
PopoverTrigger,
|
|
PopoverContent,
|
|
ModalCloseButton,
|
|
PopoverCloseButton,
|
|
} from '@chakra-ui/react';
|
|
import { FiSearch } from '@meronex/icons/fi';
|
|
import { If, ResolvedTarget } from '~/components';
|
|
import { useMobile } from '~/context';
|
|
import { useLGState } from '~/hooks';
|
|
|
|
import type { IconButtonProps } from '@chakra-ui/react';
|
|
import type { TSubmitButton, TRSubmitButton } from './types';
|
|
|
|
const SubmitIcon = forwardRef<HTMLButtonElement, Omit<IconButtonProps, 'aria-label'>>(
|
|
(props, ref) => {
|
|
const { isLoading } = props;
|
|
return (
|
|
<IconButton
|
|
ref={ref}
|
|
size="lg"
|
|
width={16}
|
|
type="submit"
|
|
icon={<FiSearch />}
|
|
title="Submit Query"
|
|
colorScheme="primary"
|
|
isLoading={isLoading}
|
|
aria-label="Submit Query"
|
|
/>
|
|
);
|
|
},
|
|
);
|
|
|
|
/**
|
|
* Mobile Submit Button
|
|
*/
|
|
const MSubmitButton = (props: TRSubmitButton) => {
|
|
const { children, isOpen, onClose, onChange } = props;
|
|
return (
|
|
<>
|
|
{children}
|
|
<Modal
|
|
size="xs"
|
|
isCentered
|
|
isOpen={isOpen}
|
|
onClose={onClose}
|
|
closeOnEsc={false}
|
|
closeOnOverlayClick={false}
|
|
motionPreset="slideInBottom">
|
|
<ModalOverlay />
|
|
<ModalContent>
|
|
<ModalCloseButton />
|
|
<ModalBody px={4} py={10}>
|
|
{isOpen && <ResolvedTarget setTarget={onChange} />}
|
|
</ModalBody>
|
|
</ModalContent>
|
|
</Modal>
|
|
</>
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Desktop Submit Button
|
|
*/
|
|
const DSubmitButton = (props: TRSubmitButton) => {
|
|
const { children, isOpen, onClose, onChange } = props;
|
|
return (
|
|
<Popover isOpen={isOpen} onClose={onClose} closeOnBlur={false}>
|
|
<PopoverTrigger>{children}</PopoverTrigger>
|
|
<PopoverContent>
|
|
<PopoverArrow />
|
|
<PopoverCloseButton />
|
|
<PopoverBody p={6}>{isOpen && <ResolvedTarget setTarget={onChange} />}</PopoverBody>
|
|
</PopoverContent>
|
|
</Popover>
|
|
);
|
|
};
|
|
|
|
export const SubmitButton = (props: TSubmitButton) => {
|
|
const { handleChange } = props;
|
|
const { btnLoading, resolvedIsOpen, resolvedClose, resetForm } = useLGState();
|
|
const isMobile = useMobile();
|
|
|
|
function handleClose(): void {
|
|
btnLoading.set(false);
|
|
resetForm();
|
|
resolvedClose();
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<If c={isMobile}>
|
|
<MSubmitButton isOpen={resolvedIsOpen.value} onClose={handleClose} onChange={handleChange}>
|
|
<SubmitIcon isLoading={btnLoading.value} />
|
|
</MSubmitButton>
|
|
</If>
|
|
<If c={!isMobile}>
|
|
<DSubmitButton isOpen={resolvedIsOpen.value} onClose={handleClose} onChange={handleChange}>
|
|
<SubmitIcon isLoading={btnLoading.value} />
|
|
</DSubmitButton>
|
|
</If>
|
|
</>
|
|
);
|
|
};
|