1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/open-hand-choerodon-ui

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
index.tsx 6.7 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
HughHzWu Отправлено 3 лет назад acf16fd
import React, { Component, CSSProperties, DragEvent, MouseEvent, ReactElement, ReactNode } from 'react';
import classNames from 'classnames';
import DirectoryTree from './DirectoryTree';
import animation from '../_util/openAnimation';
import RcTree, { TreeNode, TreeProps as RcTreeProps } from '../rc-components/tree';
import { TreeNodeProps } from '../rc-components/tree/TreeNode';
import { DraggableProps } from '../rc-components/tree/contextTypes';
import Icon from '../icon';
import Progress from '../progress';
import { ProgressType } from '../progress/enum';
import { Size } from '../_util/enum';
import { DataNode, EventDataNode, Key } from '../rc-components/tree/interface';
import { isValidElement, cloneElement } from '../_util/reactNode';
import ConfigContext, { ConfigContextValue } from '../config-provider/ConfigContext';
export { TreeNode };
export { EventDataNode, DataNode, TreeNodeProps };
export { ExpandAction as DirectoryTreeExpandAction, DirectoryTreeProps } from './DirectoryTree';
export interface C7ndTreeNodeAttribute {
eventKey: string;
prefixCls: string;
className: string;
expanded: boolean;
selected: boolean;
checked: boolean;
halfChecked: boolean;
children: ReactNode;
title: ReactNode;
pos: string;
dragOver: boolean;
dragOverGapTop: boolean;
dragOverGapBottom: boolean;
isLeaf: boolean;
selectable: boolean;
disabled: boolean;
disableCheckbox: boolean;
}
export interface C7nTreeNodeProps {
className?: string;
checkable?: boolean;
disabled?: boolean;
disableCheckbox?: boolean;
title?: string | ReactNode;
key?: string;
eventKey?: string;
isLeaf?: boolean;
checked?: boolean;
expanded?: boolean;
loading?: boolean;
selected?: boolean;
selectable?: boolean;
icon?: ((treeNode: C7ndTreeNodeAttribute) => ReactNode) | ReactNode;
children?: ReactNode;
[customProp: string]: any;
}
export type C7nTreeNode = Component<C7nTreeNodeProps, {}>
export interface C7nTreeNodeBaseEvent {
node: C7nTreeNode;
nativeEvent: MouseEvent;
}
export interface C7nTreeNodeCheckedEvent extends C7nTreeNodeBaseEvent {
event: 'check';
checked?: boolean;
checkedNodes?: C7nTreeNode[];
}
export interface C7nTreeNodeSelectedEvent extends C7nTreeNodeBaseEvent {
event: 'select';
selected?: boolean;
selectedNodes?: DataNode[];
}
export interface C7nTreeNodeExpandedEvent extends C7nTreeNodeBaseEvent {
expanded?: boolean;
}
export interface C7nTreeNodeMouseEvent {
node: C7nTreeNode;
event: DragEvent<HTMLElement>;
}
export interface C7nTreeNodeDragEnterEvent extends C7nTreeNodeMouseEvent {
expandedKeys: string[];
}
export interface C7nTreeNodeDropEvent {
node: C7nTreeNode;
dragNode: C7nTreeNode;
dragNodesKeys: string[];
dropPosition: number;
dropToGap?: boolean;
event: MouseEvent<HTMLElement>;
}
// [Legacy] Compatible for v3
export type TreeNodeNormal = DataNode;
export interface TreeProps extends Omit<RcTreeProps, 'prefixCls' | 'showLine'> {
showLine?: boolean | { showLeafIcon: boolean };
className?: string;
/** 是否支持多选 */
multiple?: boolean;
/** 是否自动展开父节点 */
autoExpandParent?: boolean;
/** checkable状态下节点选择完全受控(父子节点选中状态不再关联) */
checkStrictly?: boolean;
/** 是否支持选中 */
checkable?: boolean;
/** 是否禁用树 */
disabled?: boolean;
/** 默认展开所有树节点 */
defaultExpandAll?: boolean;
/** 默认展开对应树节点 */
defaultExpandParent?: boolean;
/** 默认展开指定的树节点 */
defaultExpandedKeys?: Key[];
/** (受控)展开指定的树节点 */
expandedKeys?: Key[];
/** (受控)选中复选框的树节点 */
checkedKeys?: Key[] | { checked: Key[]; halfChecked: Key[] };
/** 默认选中复选框的树节点 */
defaultCheckedKeys?: Key[];
/** (受控)设置选中的树节点 */
selectedKeys?: Key[];
/** 默认选中的树节点 */
defaultSelectedKeys?: Key[];
selectable?: boolean;
loadedKeys?: string[];
/** 设置节点可拖拽(IE>8) */
draggable?: ((node?: DataNode) => boolean) | boolean | DraggableProps;
style?: CSSProperties;
showIcon?: boolean;
icon?: ((nodeProps: C7ndTreeNodeAttribute) => ReactNode) | ReactNode;
switcherIcon?: ReactElement<any>;
prefixCls?: string;
children?: ReactNode;
blockNode?: boolean;
}
export default class Tree extends Component<TreeProps, any> {
static displayName = 'Tree';
static get contextType(): typeof ConfigContext {
return ConfigContext;
}
static TreeNode = TreeNode;
static DirectoryTree = DirectoryTree;
static defaultProps = {
checkable: false,
showIcon: false,
openAnimation: animation,
};
context: ConfigContextValue;
renderSwitcherIcon = ({ isLeaf, loading }: C7nTreeNodeProps) => {
const { showLine, switcherIcon } = this.props;
const prefixCls = this.getPrefixCls();
if (loading) {
return (
<Progress
type={ProgressType.loading}
className={`${prefixCls}-switcher-loading-icon`}
size={Size.small}
/>
);
}
const switcherCls = `${prefixCls}-switcher-icon`;
let showLeafIcon;
if (showLine && typeof showLine === 'object') {
showLeafIcon = showLine.showLeafIcon;
}
if (isLeaf) {
if (showLine) {
if (typeof showLine === 'object' && !showLeafIcon) {
return <span className={`${prefixCls}-switcher-leaf-line`} />;
}
return <Icon type="note" className={`${prefixCls}-switcher-line-icon`} />;
}
return null;
}
if (isValidElement(switcherIcon)) {
const switcherOriginCls = switcherIcon.props.className || '';
return cloneElement(switcherIcon, {
className: [switcherOriginCls, switcherCls],
});
}
return <Icon type="arrow_drop_down" className={switcherCls} />;
};
tree: any;
setTreeRef = (node: any) => {
this.tree = node;
};
getPrefixCls() {
const { prefixCls } = this.props;
const { getPrefixCls } = this.context;
return getPrefixCls('tree', prefixCls);
}
onKeyDown(e) {
this.tree.onKeyDown(e);
return e.isDefaultPrevented();
}
render() {
const props = this.props;
const { className, showIcon, showLine, children, checkable } = props;
const prefixCls = this.getPrefixCls();
const newProps = {
...props,
showLine: Boolean(showLine),
};
return (
<RcTree
itemHeight={20}
ref={this.setTreeRef}
{...newProps}
className={classNames(!showIcon && `${prefixCls}-icon-hide`, className)}
checkable={checkable ? <span className={`${prefixCls}-checkbox-inner`} /> : 0}
switcherIcon={this.renderSwitcherIcon}
prefixCls={prefixCls}
>
{children}
</RcTree>
);
}
}

Комментарий ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/open-hand-choerodon-ui.git
git@gitlife.ru:oschina-mirror/open-hand-choerodon-ui.git
oschina-mirror
open-hand-choerodon-ui
open-hand-choerodon-ui
1.6.4