mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
7e692ad585
* chore: init * chore: panel style * docs: update demo * chore: fill style * test: update snapshot * docs: update demo * chore: push * docs: update desc * chore: fix icons * chore: use shared hooks * test: update snapshot * chore: fix lint
65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { Panel } from 'rc-cascader';
|
|
import type { PickType } from 'rc-cascader/lib/Panel';
|
|
|
|
import type { CascaderProps } from '.';
|
|
import DefaultRenderEmpty from '../config-provider/defaultRenderEmpty';
|
|
import useBase from './hooks/useBase';
|
|
import useCheckable from './hooks/useCheckable';
|
|
import useColumnIcons from './hooks/useColumnIcons';
|
|
import useStyle from './style';
|
|
import usePanelStyle from './style/panel';
|
|
|
|
export type PanelPickType = Exclude<PickType, 'checkable'> | 'multiple' | 'rootClassName';
|
|
|
|
export type CascaderPanelProps = Pick<CascaderProps, PanelPickType>;
|
|
|
|
export default function CascaderPanel(props: CascaderPanelProps) {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
multiple,
|
|
rootClassName,
|
|
notFoundContent,
|
|
direction,
|
|
expandIcon,
|
|
} = props;
|
|
|
|
const [prefixCls, cascaderPrefixCls, mergedDirection, renderEmpty] = useBase(
|
|
customizePrefixCls,
|
|
direction,
|
|
);
|
|
|
|
const [, hashId] = useStyle(cascaderPrefixCls);
|
|
usePanelStyle(cascaderPrefixCls);
|
|
|
|
const isRtl = mergedDirection === 'rtl';
|
|
|
|
// ===================== Icon ======================
|
|
const [mergedExpandIcon, loadingIcon] = useColumnIcons(prefixCls, isRtl, expandIcon);
|
|
|
|
// ===================== Empty =====================
|
|
const mergedNotFoundContent = notFoundContent || renderEmpty?.('Cascader') || (
|
|
<DefaultRenderEmpty componentName="Cascader" />
|
|
);
|
|
|
|
// =================== Multiple ====================
|
|
const checkable = useCheckable(cascaderPrefixCls, multiple);
|
|
|
|
// ==================== Render =====================
|
|
|
|
return (
|
|
<Panel
|
|
{...props}
|
|
checkable={checkable}
|
|
prefixCls={cascaderPrefixCls}
|
|
className={classNames(className, hashId, rootClassName)}
|
|
notFoundContent={mergedNotFoundContent}
|
|
direction={mergedDirection}
|
|
expandIcon={mergedExpandIcon}
|
|
loadingIcon={loadingIcon}
|
|
/>
|
|
);
|
|
}
|