Merge remote-tracking branch 'baidu/master'

This commit is contained in:
2betop 2020-04-20 17:31:39 +08:00
commit de2689ba6b
6 changed files with 337 additions and 156 deletions

View File

@ -5,7 +5,7 @@
目前在百度大量用于内部平台的前端开发,已有 100+ 部门使用,创建了 2.5w+ 页面。
通过 amis 搭建自己的后台系统,可以参考这: https://github.com/fex-team/amis-admin
包含fis3版本、webpack版本和 jssdk 版本。
包含fis3 版本、webpack 版本和 jssdk 版本。
## 快速开始
@ -13,6 +13,8 @@
## 开发指南
> 如果 github 下载慢可以使用 [gitee](https://gitee.com/baidu/amis) 上的镜像。
推荐使用 node 10node 6 和 node 8 也可以。node 12 未测试,可能 fis3 还有些插件不支持。
```bash
@ -46,9 +48,9 @@ npm run coverage
## 维护者
- [2betop](https://github.com/2betop)
- [RickCole21](https://github.com/RickCole21)
- [catchonme](https://github.com/catchonme)
- [2betop](https://github.com/2betop)
- [RickCole21](https://github.com/RickCole21)
- [catchonme](https://github.com/catchonme)
## 讨论

View File

@ -1,19 +1,20 @@
### NestedSelect
树形结构选择框。
嵌套选择框。
- `type` 请设置成 `nested-select`
- `options` 类似于 [select](./Select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `source` Api 地址,如果选项不固定,可以通过配置 `source` 动态拉取。
- `multiple` 默认为 `false`, 设置成 `true` 表示可多选。
- `joinValues` 默认为 `true`
- 单选模式:当用户选中某个选项时,选项中的 value 将被作为该表单项的值提交,否则,整个选项对象都会作为该表单项的值提交。
- 多选模式:选中的多个选项的 `value` 会通过 `delimiter` 连接起来,否则直接将以数组的形式提交值。
- `extractValue` 默认为 `false`, `joinValues`设置为`false`时生效, 开启后将选中的选项 value 的值封装为数组,作为当前表单项的值。
- `delimiter` 默认为 `,`
- `autoFill` 将当前已选中的选项的某个字段的值自动填充到表单中某个表单项中,只在单选时有效
- `autoFill`的格式为`{address: "${label}"}`,表示将选中项中的`label`的值,自动填充到当前表单项中`name` 为`address` 中
- **还有更多通用配置请参考** [FormItem](./FormItem.md)
- `type` 请设置成 `nested-select`
- `options` 类似于 [select](./Select.md) 中 `options`, 并且支持通过 `children` 无限嵌套。
- `source` Api 地址,如果选项不固定,可以通过配置 `source` 动态拉取。
- `multiple` 默认为 `false`, 设置成 `true` 表示可多选。
- `searchable` 默认为 `false`, 表示是否可搜索
- `joinValues` 默认为 `true`
- 单选模式:当用户选中某个选项时,选项中的 value 将被作为该表单项的值提交,否则,整个选项对象都会作为该表单项的值提交。
- 多选模式:选中的多个选项的 `value` 会通过 `delimiter` 连接起来,否则直接将以数组的形式提交值。
- `extractValue` 默认为 `false`, `joinValues`设置为`false`时生效, 开启后将选中的选项 value 的值封装为数组,作为当前表单项的值。
- `delimiter` 默认为 `,`
- `cascade` 设置成 `true` 时当选中父节点时不自动选择子节点。
- `withChildren` 是指成 `true`,选中父节点时,值里面将包含子节点的值,否则只会保留父节点的值。
- **还有更多通用配置请参考** [FormItem](./FormItem.md)
```schema:height="300" scope="form-item"
{

View File

@ -52,6 +52,12 @@
flex-grow: 1;
}
.#{$ns}Select-arrow {
position: absolute;
right: 0;
top: px2rem(10px);
}
&-clear {
padding: px2rem(3px);
cursor: pointer;
@ -84,15 +90,25 @@
}
}
&-menuOuter,
&-childrenOuter {
z-index: 10;
position: absolute;
&-menuOuter {
display: flex;
}
&-menu {
width: 160px;
max-width: 160px;
max-height: px2rem(300px);
background: $Form-select-menu-bg;
color: $Form-select-menu-color;
border: $Form-select-outer-borderWidth solid
$Form-input-onFocused-borderColor;
box-shadow: $Form-select-outer-boxShadow;
overflow-y: auto;
overflow-x: hidden;
&:not(:first-child) {
border-left: 0;
}
.#{$ns}NestedSelect-option {
position: relative;
@ -100,6 +116,12 @@
height: $Form-input-height;
line-height: $Form-input-height;
cursor: pointer;
display: flex;
> label {
flex: 1;
cursor: pointer;
}
&.is-active {
color: $Form-select-menu-onActive-color;
@ -125,14 +147,4 @@
}
}
}
&-childrenOuter {
display: none;
position: relative;
width: 100%;
left: 100%;
transform: translateY(-$Form-input-height);
padding: 0;
margin: 0;
}
}

View File

@ -6,10 +6,12 @@ import Checkbox from '../../components/Checkbox';
import PopOver from '../../components/PopOver';
import {RootCloseWrapper} from 'react-overlays';
import {Icon} from '../../components/icons';
import {autobind, flattenTree, isEmpty} from '../../utils/helper';
import {autobind, flattenTree, isEmpty, filterTree} from '../../utils/helper';
import {dataMapping} from '../../utils/tpl-builtin';
import {OptionsControl, OptionsControlProps, Option} from '../Form/Options';
import {OptionsControl, OptionsControlProps} from '../Form/Options';
import {Option, Options} from '../../components/Select';
import Input from '../../components/Input';
import {findDOMNode} from 'react-dom';
export interface NestedSelectProps extends OptionsControlProps {
cascade?: boolean;
@ -18,6 +20,9 @@ export interface NestedSelectProps extends OptionsControlProps {
export interface NestedSelectState {
isOpened?: boolean;
isFocused?: boolean;
inputValue?: string;
stack: Array<Array<Option>>;
}
export default class NestedSelectControl extends React.Component<
@ -26,12 +31,16 @@ export default class NestedSelectControl extends React.Component<
> {
static defaultProps: Partial<NestedSelectProps> = {
cascade: false,
withChildren: false
withChildren: false,
searchPromptText: '输入内容进行检索'
};
target: any;
alteredOptions: any;
state = {
isOpened: false
input: HTMLInputElement;
state: NestedSelectState = {
isOpened: false,
isFocused: false,
inputValue: '',
stack: []
};
@autobind
@ -41,9 +50,11 @@ export default class NestedSelectControl extends React.Component<
@autobind
open() {
if (!this.props.disabled) {
const {options, disabled} = this.props;
if (!disabled) {
this.setState({
isOpened: true
isOpened: true,
stack: [options]
});
}
}
@ -51,7 +62,8 @@ export default class NestedSelectControl extends React.Component<
@autobind
close() {
this.setState({
isOpened: false
isOpened: false,
stack: []
});
}
@ -101,6 +113,10 @@ export default class NestedSelectControl extends React.Component<
onBulkChange
} = this.props;
if (multiple) {
return;
}
e.stopPropagation();
const sendTo =
@ -120,7 +136,7 @@ export default class NestedSelectControl extends React.Component<
!multiple && this.close();
}
handleCheck(option: any | Array<any>) {
handleCheck(option: Option | Options, index?: number) {
const {
onChange,
selectedOptions,
@ -129,11 +145,33 @@ export default class NestedSelectControl extends React.Component<
delimiter,
extractValue,
withChildren,
cascade
cascade,
multiple
} = this.props;
const {stack} = this.state;
if (
!Array.isArray(option) &&
option.children &&
option.children.length &&
typeof index === 'number'
) {
const checked = selectedOptions.some(
o => o.value == (option as Option).value
);
const uncheckable = cascade
? false
: option.uncheckable || (multiple && !checked);
const children = option.children.map(c => ({...c, uncheckable}));
if (stack[index]) {
stack.splice(index + 1, 1, children);
} else {
stack.push(children);
}
}
const items = selectedOptions.concat();
let newValue;
let newValue: Option | Options | string;
// 三种情况:
// 1.全选option为数组
@ -148,46 +186,56 @@ export default class NestedSelectControl extends React.Component<
newValue = xorBy(items, [option], valueField || 'value');
} else if (withChildren) {
option = flattenTree([option]);
const fn = option.every((opt: any) => !!~items.indexOf(opt))
const fn = option.every(
(opt: Option) => !!~items.findIndex(item => item.value === opt.value)
)
? xorBy
: unionBy;
newValue = fn(items, option, valueField || 'value');
} else {
newValue = items.filter(item => !~flattenTree([option]).indexOf(item));
!~items.indexOf(option) && newValue.push(option);
newValue = items.filter(
item =>
!~flattenTree([option], i => (i as Option).value).indexOf(
item.value
)
);
!~items.map(item => item.value).indexOf(option.value) &&
newValue.push(option);
}
} else {
newValue = xorBy(items, [option], valueField || 'value');
}
if (joinValues) {
newValue = newValue
.map((item: any) => item[valueField || 'value'])
newValue = (newValue as Options)
.map(item => item[valueField || 'value'])
.join(delimiter || ',');
} else if (extractValue) {
newValue = newValue.map((item: any) => item[valueField || 'value']);
newValue = (newValue as Options).map(item => item[valueField || 'value']);
}
onChange(newValue);
}
allChecked(options: Array<any>): boolean {
return options.every((option: any) => {
if (option.children) {
allChecked(options: Options): boolean {
const {selectedOptions, withChildren} = this.props;
return options.every(option => {
if (withChildren && option.children) {
return this.allChecked(option.children);
}
return this.props.selectedOptions.some(
return selectedOptions.some(
selectedOption => selectedOption.value == option.value
);
});
}
partialChecked(options: Array<any>): boolean {
return options.some((option: any) => {
if (option.children) {
partialChecked(options: Options): boolean {
const {selectedOptions, withChildren} = this.props;
return options.some(option => {
if (withChildren && option.children) {
return this.partialChecked(option.children);
}
return this.props.selectedOptions.some(
return selectedOptions.some(
selectedOption => selectedOption.value == option.value
);
});
@ -198,11 +246,83 @@ export default class NestedSelectControl extends React.Component<
reload && reload();
}
renderOptions(
newOptions: Array<any>,
isChildren: boolean,
uncheckable: boolean
): any {
@autobind
onFocus(e: any) {
this.props.disabled ||
this.state.isOpened ||
this.setState(
{
isFocused: true
},
this.focus
);
this.props.onFocus && this.props.onFocus(e);
}
@autobind
onBlur(e: any) {
this.setState({
isFocused: false
});
this.props.onBlur && this.props.onBlur(e);
}
@autobind
focus() {
this.input
? this.input.focus()
: this.getTarget() && this.getTarget().focus();
}
@autobind
blur() {
this.input
? this.input.blur()
: this.getTarget() && this.getTarget().blur();
}
@autobind
getTarget() {
if (!this.target) {
this.target = findDOMNode(this) as HTMLElement;
}
return this.target as HTMLElement;
}
@autobind
inputRef(ref: HTMLInputElement) {
this.input = ref;
}
@autobind
handleInputChange(evt: React.ChangeEvent<HTMLInputElement>) {
const inputValue = evt.currentTarget.value;
const {options, labelField, valueField} = this.props;
const regexp = new RegExp(`${inputValue}`, 'i');
let filtedOptions =
inputValue && this.state.isOpened
? filterTree(
options,
option =>
regexp.test(option[labelField || 'label']) ||
regexp.test(option[valueField || 'value']) ||
!!(option.children && option.children.length),
1,
true
)
: options.concat();
this.setState({
inputValue,
stack: [filtedOptions]
});
}
renderOptions() {
const {
multiple,
selectedOptions,
@ -210,87 +330,119 @@ export default class NestedSelectControl extends React.Component<
value,
options,
disabled,
cascade
searchable,
searchPromptText
} = this.props;
if (multiple) {
let partialChecked = this.partialChecked(options);
let allChecked = this.allChecked(options);
const stack = this.state.stack;
return (
<div className={cx({'NestedSelect-childrenOuter': isChildren})}>
{!isChildren ? (
<div className={cx('NestedSelect-option', 'checkall')}>
<Checkbox
onChange={this.handleCheck.bind(this, options)}
checked={partialChecked}
partial={partialChecked && !allChecked}
>
</Checkbox>
</div>
) : null}
{newOptions.map((option, idx) => {
const checked = selectedOptions.some(o => o.value == option.value);
const selfChecked = !!uncheckable || checked;
let nodeDisabled = !!uncheckable || !!disabled;
const searchInput = searchable ? (
<div
className={cx(`Select-input`, {
'is-focused': this.state.isFocused
})}
>
<Icon icon="search" className="icon" />
<Input
value={this.state.inputValue}
onFocus={this.onFocus}
onBlur={this.onBlur}
disabled={disabled}
placeholder={searchPromptText}
onChange={this.handleInputChange}
ref={this.inputRef}
/>
</div>
) : null;
return (
<div className={cx('NestedSelect-option')} key={idx}>
<Checkbox
onChange={this.handleCheck.bind(this, option)}
trueValue={option.value}
checked={selfChecked}
disabled={nodeDisabled}
>
{option.label}
</Checkbox>
{option.children ? (
<div className={cx('NestedSelect-optionArrowRight')}>
<Icon icon="right-arrow" className="icon" />
</div>
) : null}
{option.children && option.children.length
? this.renderOptions(
option.children,
true,
cascade ? false : uncheckable || (multiple && checked)
)
: null}
</div>
);
})}
</div>
);
}
let partialChecked = this.partialChecked(options);
let allChecked = this.allChecked(options);
return (
<div className={cx({'NestedSelect-childrenOuter': isChildren})}>
{newOptions.map((option, idx) => (
<div
key={idx}
className={cx('NestedSelect-option', {
'is-active': value && value === option.value
})}
onClick={this.handleOptionClick.bind(this, option)}
>
<span>{option.label}</span>
{option.children ? (
<div className={cx('NestedSelect-optionArrowRight')}>
<Icon icon="right-arrow" className="icon" />
<>
{stack.map((options, index) => (
<div key={index} className={cx('NestedSelect-menu')}>
{index === 0 ? searchInput : null}
{multiple && index === 0 ? (
<div className={cx('NestedSelect-option', 'checkall')}>
<Checkbox
onChange={this.handleCheck.bind(this, options)}
checked={partialChecked}
partial={partialChecked && !allChecked}
>
</Checkbox>
</div>
) : null}
{option.children && option.children.length
? this.renderOptions(option.children, true, false)
: null}
{options.map((option: Option, idx: number) => {
const checked = selectedOptions.some(
o => o.value == option.value
);
const selfChecked = !!option.uncheckable || checked;
let nodeDisabled = !!option.uncheckable || !!disabled;
return (
<div
key={idx}
className={cx('NestedSelect-option', {
'is-active': value && value === option.value
})}
onClick={this.handleOptionClick.bind(this, option)}
onMouseEnter={this.onMouseEnter.bind(this, option, index)}
>
{multiple ? (
<Checkbox
onChange={this.handleCheck.bind(this, option, index)}
trueValue={option.value}
checked={selfChecked}
disabled={nodeDisabled}
>
{option.label}
</Checkbox>
) : (
<span>{option.label}</span>
)}
{option.children && option.children.length ? (
<div className={cx('NestedSelect-optionArrowRight')}>
<Icon icon="right-arrow" className="icon" />
</div>
) : null}
</div>
);
})}
</div>
))}
</div>
</>
);
}
onMouseEnter(option: Option, index: number, e: MouseEvent) {
let {stack} = this.state;
let {cascade, multiple, selectedOptions} = this.props;
index = index + 1;
if (option.children && option.children.length) {
const checked = selectedOptions.some(o => o.value == option.value);
const uncheckable = cascade
? false
: option.uncheckable || (multiple && checked);
const children = option.children.map(c => ({...c, uncheckable}));
if (stack[index]) {
stack.splice(index, 1, children);
} else {
stack.push(children);
}
} else {
stack[index] && stack.splice(index, 1);
}
this.setState({stack});
}
renderOuter() {
const {popOverContainer, options, classnames: cx} = this.props;
const {popOverContainer, classnames: cx} = this.props;
let body = (
<RootCloseWrapper
@ -301,24 +453,25 @@ export default class NestedSelectControl extends React.Component<
className={cx('NestedSelect-menuOuter')}
style={{minWidth: this.target.offsetWidth}}
>
{this.renderOptions(options, false, false)}
{this.renderOptions()}
</div>
</RootCloseWrapper>
);
if (popOverContainer) {
return (
<Overlay container={popOverContainer} target={() => this.target} show>
<PopOver
className={cx('NestedSelect-popover')}
style={{minWidth: this.target.offsetWidth}}
>
{body}
</PopOver>
</Overlay>
);
}
return body;
return (
<Overlay
container={popOverContainer || this.getTarget}
target={this.getTarget}
show
>
<PopOver
className={cx('NestedSelect-popover')}
style={{minWidth: this.target.offsetWidth}}
>
{body}
</PopOver>
</Overlay>
);
}
render() {

View File

@ -66,7 +66,7 @@ export default class Page extends React.Component<PageProps> {
static propsList: Array<string> = [
'title',
'subtitle',
'subTitle',
'initApi',
'initFetchOn',
'initFetch',

View File

@ -833,19 +833,32 @@ export function getTree<T extends TreeItem>(
export function filterTree<T extends TreeItem>(
tree: Array<T>,
iterator: (item: T, key: number, level: number) => boolean,
level: number = 1
level: number = 1,
depthFirst: boolean = false
) {
return tree.filter((item, index) => {
if (!iterator(item, index, level)) {
return false;
}
if (depthFirst) {
return tree
.map(item => {
let children: TreeArray | undefined = item.children
? filterTree(item.children, iterator, level + 1, depthFirst)
: undefined;
children && (item = {...item, children: children});
return item;
})
.filter((item, index) => iterator(item, index, level));
}
if (item.children && item.children.splice) {
item.children = filterTree(item.children, iterator, level + 1);
}
return true;
});
return tree
.filter((item, index) => iterator(item, index, level))
.map(item => {
if (item.children && item.children.splice) {
item = {
...item,
children: filterTree(item.children, iterator, level + 1, depthFirst)
};
}
return item;
});
}
/**