2022-08-31 02:35:06 -07:00
|
|
|
import classNames from 'clsx';
|
2022-11-25 09:04:11 -08:00
|
|
|
import React from 'react';
|
2022-03-21 11:09:01 -07:00
|
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
|
2022-07-22 10:30:16 -07:00
|
|
|
import { SelectDropdown } from '../features/forms';
|
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
import Icon from './icon';
|
2022-11-25 09:04:11 -08:00
|
|
|
import { HStack, Select } from './ui';
|
2022-03-21 11:09:01 -07:00
|
|
|
|
2023-01-10 15:03:15 -08:00
|
|
|
interface IList {
|
|
|
|
children: React.ReactNode
|
|
|
|
}
|
|
|
|
|
|
|
|
const List: React.FC<IList> = ({ children }) => (
|
2022-03-21 11:09:01 -07:00
|
|
|
<div className='space-y-0.5'>{children}</div>
|
|
|
|
);
|
|
|
|
|
2022-04-27 18:01:31 -07:00
|
|
|
interface IListItem {
|
|
|
|
label: React.ReactNode,
|
|
|
|
hint?: React.ReactNode,
|
2022-10-26 10:08:02 -07:00
|
|
|
onClick?(): void,
|
|
|
|
onSelect?(): void
|
|
|
|
isSelected?: boolean
|
2023-01-10 15:03:15 -08:00
|
|
|
children?: React.ReactNode
|
2022-04-27 18:01:31 -07:00
|
|
|
}
|
2022-03-21 11:09:01 -07:00
|
|
|
|
2022-10-26 10:08:02 -07:00
|
|
|
const ListItem: React.FC<IListItem> = ({ label, hint, children, onClick, onSelect, isSelected }) => {
|
2022-03-21 11:09:01 -07:00
|
|
|
const id = uuidv4();
|
|
|
|
const domId = `list-group-${id}`;
|
|
|
|
|
2022-11-24 15:03:22 -08:00
|
|
|
const onKeyDown = (e: React.KeyboardEvent) => {
|
|
|
|
if (e.key === 'Enter') {
|
|
|
|
onClick!();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
const Comp = onClick ? 'a' : 'div';
|
2022-10-26 10:08:02 -07:00
|
|
|
const LabelComp = onClick || onSelect ? 'span' : 'label';
|
2022-11-27 13:30:00 -08:00
|
|
|
const linkProps = onClick || onSelect ? { onClick: onClick || onSelect, onKeyDown, tabIndex: 0, role: 'link' } : {};
|
2022-03-21 11:09:01 -07:00
|
|
|
|
2022-07-22 10:30:16 -07:00
|
|
|
const renderChildren = React.useCallback(() => {
|
|
|
|
return React.Children.map(children, (child) => {
|
2022-03-21 11:09:01 -07:00
|
|
|
if (React.isValidElement(child)) {
|
2022-07-22 10:30:16 -07:00
|
|
|
const isSelect = child.type === SelectDropdown || child.type === Select;
|
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
return React.cloneElement(child, {
|
|
|
|
id: domId,
|
2022-07-22 10:30:16 -07:00
|
|
|
className: classNames({
|
|
|
|
'w-auto': isSelect,
|
2022-09-11 15:32:34 -07:00
|
|
|
}, child.props.className),
|
2022-03-21 11:09:01 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2022-07-22 10:30:16 -07:00
|
|
|
});
|
|
|
|
}, [children, domId]);
|
2022-03-21 11:09:01 -07:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Comp
|
|
|
|
className={classNames({
|
2022-07-22 10:30:16 -07:00
|
|
|
'flex items-center justify-between px-3 py-2 first:rounded-t-lg last:rounded-b-lg bg-gradient-to-r from-gradient-start/10 to-gradient-end/10': true,
|
2022-10-26 10:08:02 -07:00
|
|
|
'cursor-pointer hover:from-gradient-start/20 hover:to-gradient-end/20 dark:hover:from-gradient-start/5 dark:hover:to-gradient-end/5': typeof onClick !== 'undefined' || typeof onSelect !== 'undefined',
|
2022-03-21 11:09:01 -07:00
|
|
|
})}
|
|
|
|
{...linkProps}
|
|
|
|
>
|
2022-11-25 09:04:11 -08:00
|
|
|
<div className='flex flex-col py-1.5 pr-4 rtl:pl-4 rtl:pr-0'>
|
2022-07-22 10:30:16 -07:00
|
|
|
<LabelComp className='text-gray-900 dark:text-gray-100' htmlFor={domId}>{label}</LabelComp>
|
2022-03-21 11:09:01 -07:00
|
|
|
|
|
|
|
{hint ? (
|
2022-07-22 10:30:16 -07:00
|
|
|
<span className='text-sm text-gray-700 dark:text-gray-600'>{hint}</span>
|
2022-03-21 11:09:01 -07:00
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{onClick ? (
|
2022-11-25 09:04:11 -08:00
|
|
|
<HStack space={1} alignItems='center' className='text-gray-700 dark:text-gray-600'>
|
2022-03-21 11:09:01 -07:00
|
|
|
{children}
|
|
|
|
|
2022-12-04 17:40:09 -08:00
|
|
|
<Icon src={require('@tabler/icons/chevron-right.svg')} className='ml-1 rtl:rotate-180' />
|
2022-11-25 09:04:11 -08:00
|
|
|
</HStack>
|
2022-10-26 10:28:50 -07:00
|
|
|
) : null}
|
2022-10-26 10:08:02 -07:00
|
|
|
|
|
|
|
{onSelect ? (
|
|
|
|
<div className='flex flex-row items-center text-gray-700 dark:text-gray-600'>
|
|
|
|
{children}
|
|
|
|
|
|
|
|
{isSelected ? (
|
|
|
|
<Icon src={require('@tabler/icons/check.svg')} className='ml-1 text-primary-500 dark:text-primary-400' />
|
|
|
|
) : null}
|
|
|
|
</div>
|
2022-10-26 10:28:50 -07:00
|
|
|
) : null}
|
|
|
|
|
|
|
|
{typeof onClick === 'undefined' && typeof onSelect === 'undefined' ? renderChildren() : null}
|
2022-03-21 11:09:01 -07:00
|
|
|
</Comp>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export { List as default, ListItem };
|