Skip to content

Commit

Permalink
fix: add dts to tree picker
Browse files Browse the repository at this point in the history
  • Loading branch information
chaofan232 authored and xiaofan2406 committed Oct 10, 2023
1 parent 496ecfa commit 8e1e54c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
6 changes: 4 additions & 2 deletions src/components/TreePicker/TreePickerHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import cc from 'classnames';
import _ from 'lodash';
import Button from '../Button';
import { useTreePickerGetState, useTreePickerSlice } from './TreePickerContext';
import { expandDts } from '../../utils';

import './TreePickerHeader.css';

Expand Down Expand Up @@ -37,13 +38,13 @@ const getCurrentNodeHeader = (state) => {
return currentNode?.header;
};

const TreePickerHeader = ({ children, className, label }) => {
const TreePickerHeader = ({ children, className, label, dts }) => {
const header = useTreePickerSlice(getCurrentNodeHeader);

const finalLabel = !_.isUndefined(header) ? header : label;

return !finalLabel ? null : (
<div className={cc('aui--tree-picker-row', 'aui--tree-picker-header', className)}>
<div className={cc('aui--tree-picker-row', 'aui--tree-picker-header', className)} {...expandDts(dts)}>
<div className="aui--tree-picker-row-content">{finalLabel}</div>
{children ?? <HeaderAddAll />}
</div>
Expand All @@ -54,6 +55,7 @@ TreePickerHeader.propTypes = {
label: PropTypes.node,
children: PropTypes.node,
className: PropTypes.string,
dts: PropTypes.string,
};

export default TreePickerHeader;
8 changes: 6 additions & 2 deletions src/components/TreePicker/TreePickerNode.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ import {
useHiddenById,
useTreePickerSlice,
} from './TreePickerContext';
import { expandDts } from '../../utils';

import './TreePickerNode.css';

const TreePickerNodeContext = React.createContext({ level: 0 });

export const useTreePickerNode = () => React.useContext(TreePickerNodeContext);

const TreePickerNode = ({ className, children, node }) => {
const TreePickerNode = ({ className, children, node, dts }) => {
const { goTo } = useInternalActions();
const [state, setState] = React.useState(() => ({ expanded: false, subNodes: [] }));

Expand Down Expand Up @@ -61,7 +62,9 @@ const TreePickerNode = ({ className, children, node }) => {

return (
<TreePickerNodeContext.Provider value={value}>
<div className={cx('aui--tree-picker-row', className)}>{children}</div>
<div className={cx('aui--tree-picker-row', className)} {...expandDts(dts)}>
{children}
</div>
{state.subNodes.length === 0 ? null : <TreePickerNodeBranch nodes={state.subNodes} />}
</TreePickerNodeContext.Provider>
);
Expand All @@ -73,6 +76,7 @@ TreePickerNode.propTypes = {
id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
label: PropTypes.string.isRequired,
}).isRequired,
dts: PropTypes.string,
};

const TreePickerNodeBranch = ({ nodes }) => {
Expand Down
5 changes: 4 additions & 1 deletion src/components/TreePicker/TreePickerTree.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
HiddenByIdCtx,
} from './TreePickerContext';
import TreePickerNode from './TreePickerNode';
import { expandDts } from '../../utils';

import './TreePickerTree.css';

Expand Down Expand Up @@ -71,6 +72,7 @@ const TreePickerTree = ({
className,
resolveRootNodes,
hiddenNodeIds,
dts,
placeholder = defaultPlaceholder,
emptyState = defaultEmptyState,
}) => {
Expand Down Expand Up @@ -114,7 +116,7 @@ const TreePickerTree = ({

return (
<HiddenByIdCtx.Provider value={byId}>
<div className={cx('aui--tree-picker-tree', className)}>
<div className={cx('aui--tree-picker-tree', className)} {...expandDts(dts)}>
{isResolvingRoot ? placeholder : visibleNodes.length === 0 ? emptyState : visibleNodes.map(renderNode)}
</div>
</HiddenByIdCtx.Provider>
Expand All @@ -127,6 +129,7 @@ TreePickerTree.propTypes = {
resolveRootNodes: PropTypes.func.isRequired,
placeholder: PropTypes.node,
emptyState: PropTypes.node,
dts: PropTypes.string,
};

TreePickerTree.Placeholder = TreePickerTreePlaceholder;
Expand Down
3 changes: 3 additions & 0 deletions src/components/TreePicker/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export interface TreePickerNodeProps {
node: TreePickerNodeNode;
children: React.ReactNode;
className?: string;
dts?: string;
}

declare const TreePickerNode: React.FC<TreePickerNodeProps> & {
Expand All @@ -61,6 +62,7 @@ export interface TreePickerHeaderProps {
label?: React.ReactNode;
children?: React.ReactNode;
className?: string;
dts?: string;
}

declare const TreePickerHeader: React.FC<TreePickerHeaderProps>;
Expand All @@ -79,6 +81,7 @@ export interface TreePickerTreeProps {
hiddenNodeIds?: string[];
placeholder?: React.ReactNode;
emptyState?: React.ReactNode;
dts?: string;
}

declare const TreePickerTree: React.FC<TreePickerTreeProps>;
Expand Down

0 comments on commit 8e1e54c

Please sign in to comment.