Merge pull request #66 from RickCole21/master

Picker添加embed配置项
This commit is contained in:
liaoxuezhi 2019-06-03 17:11:27 +08:00 committed by GitHub
commit e0b6e57d4a
4 changed files with 80 additions and 78 deletions

View File

@ -773,7 +773,7 @@ export default class CRUD extends React.Component<CRUDProps, any> {
} }
handleSelect(items: Array<any>, unSelectedItems: Array<any>) { handleSelect(items: Array<any>, unSelectedItems: Array<any>) {
const {store, keepItemSelectionOnPageChange, primaryField, multiple, pickerMode} = this.props; const {store, keepItemSelectionOnPageChange, primaryField, multiple, pickerMode, onSelect} = this.props;
let newItems = items; let newItems = items;
let newUnSelectedItems = unSelectedItems; let newUnSelectedItems = unSelectedItems;
@ -796,6 +796,7 @@ export default class CRUD extends React.Component<CRUDProps, any> {
store.setSelectedItems(newItems); store.setSelectedItems(newItems);
store.setUnSelectedItems(newUnSelectedItems); store.setUnSelectedItems(newUnSelectedItems);
onSelect && onSelect(newItems);
} }
handleChildPopOverOpen(popOver: any) { handleChildPopOverOpen(popOver: any) {

View File

@ -12,7 +12,7 @@ import {
Action Action
} from '../../types'; } from '../../types';
import find = require('lodash/find'); import find = require('lodash/find');
import { anyChanged } from '../../utils/helper'; import {anyChanged, autobind} from '../../utils/helper';
import findIndex = require('lodash/findIndex'); import findIndex = require('lodash/findIndex');
export interface PickerProps extends OptionsControlProps { export interface PickerProps extends OptionsControlProps {
@ -35,7 +35,8 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
"options", "options",
"value", "value",
"inline", "inline",
"multiple" "multiple",
"embed",
]; ];
static defaultProps: Partial<PickerProps> = { static defaultProps: Partial<PickerProps> = {
modalMode: 'dialog', modalMode: 'dialog',
@ -45,7 +46,8 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
listItem: { listItem: {
title: '${label}' title: '${label}'
} }
} },
embed: false
} }
state: PickerState = { state: PickerState = {
@ -53,15 +55,6 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
schema: this.buildSchema(this.props) schema: this.buildSchema(this.props)
}; };
constructor(props:PickerProps) {
super(props);
this.open = this.open.bind(this);
this.close = this.close.bind(this);
this.handleModalConfirm = this.handleModalConfirm.bind(this);
this.renderBody = this.renderBody.bind(this);
}
componentWillReceiveProps(nextProps: PickerProps) { componentWillReceiveProps(nextProps: PickerProps) {
const props = this.props; const props = this.props;
@ -93,31 +86,40 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
} }
} }
@autobind
open() { open() {
this.setState({ this.setState({
isOpened: true isOpened: true
}); });
} }
@autobind
close() { close() {
this.setState({ this.setState({
isOpened: false isOpened: false
}); });
} }
@autobind
handleModalConfirm(values: Array<any>, action: Action, ctx: any, components: Array<any>) { handleModalConfirm(values: Array<any>, action: Action, ctx: any, components: Array<any>) {
const idx = findIndex(components, (item: any) => item.props.type === "crud");
this.handleChange(values[idx].items);
this.close();
}
@autobind
handleChange(items: Array<any>) {
const { const {
joinValues, joinValues,
extractValue,
valueField, valueField,
delimiter, delimiter,
setOptions, extractValue,
multiple,
options, options,
onChange, setOptions,
multiple onChange
} = this.props; } = this.props;
const idx = findIndex(components, (item:any) => item.props.type === "crud");
const items:Array<any> = values[idx].items;
let value: any = items; let value: any = items;
if (joinValues) { if (joinValues) {
@ -136,9 +138,7 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
}); });
additionalOptions.length && setOptions(options.concat(additionalOptions)); additionalOptions.length && setOptions(options.concat(additionalOptions));
onChange(value); onChange(value);
this.close();
} }
removeItem(index: number) { removeItem(index: number) {
@ -164,14 +164,6 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
value = multiple ? items : items[0]; value = multiple ? items : items[0];
} }
// if (joinValues) {
// value = items.map((item: any) => item[valueField || 'value']).join(delimiter || ',');
// } else if (extractValue) {
// value = items.map((item: any) => item[valueField || 'value']);
// } else if (!multiple) {
// value = value[0];
// }
onChange(value); onChange(value);
} }
@ -196,20 +188,23 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
); );
} }
@autobind
renderBody() { renderBody() {
const { const {
render, render,
selectedOptions, selectedOptions,
options, options,
multiple, multiple,
valueField valueField,
embed
} = this.props; } = this.props;
return render('modal-body', this.state.schema, { return render('modal-body', this.state.schema, {
value: selectedOptions, value: selectedOptions,
valueField, valueField,
options: options, options: options,
multiple multiple,
onSelect: embed ? this.handleChange : undefined
}) as JSX.Element; }) as JSX.Element;
} }
@ -220,14 +215,18 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
disabled, disabled,
render, render,
modalMode, modalMode,
pickerSchema,
source, source,
size, size,
env env,
embed
} = this.props; } = this.props;
return ( return (
<div className={cx(`${ns}PickerControl`, className)}> <div className={cx(`${ns}PickerControl`, className)}>
{embed ? (
<div className={`${ns}Picker`}>
{this.renderBody()}
</div>
) : (
<div className={`${ns}Picker`}> <div className={`${ns}Picker`}>
{this.renderValues()} {this.renderValues()}
@ -260,6 +259,7 @@ export default class PickerControl extends React.PureComponent<PickerProps, any>
show: this.state.isOpened show: this.state.isOpened
})} })}
</div> </div>
)}
</div> </div>
); );
} }

View File

@ -1432,7 +1432,8 @@ class TableRow extends React.Component<TableRowProps> {
if ( if (
!e.currentTarget.contains(target) || !e.currentTarget.contains(target) ||
~['INPUT', 'TEXTAREA'].indexOf(target.tagName) || ~['INPUT', 'TEXTAREA'].indexOf(target.tagName) ||
target.closest(`button, a, .${ns}Form-item`) // target.closest(`button, a, .${ns}Form-item`)
target.closest(`button, a`) // 兼容Picker的embed模式所以去掉了.${ns}Form-item
) { ) {
return; return;
} }

View File

@ -148,7 +148,7 @@ export const validateMessages: {
isEmail: 'Email 格式不正确', isEmail: 'Email 格式不正确',
isRequired: '这是必填项', isRequired: '这是必填项',
isUrl: 'Url 格式不正确', isUrl: 'Url 格式不正确',
isInt: '请输入整数字', isInt: '请输入整数字',
isAlpha: '请输入字母', isAlpha: '请输入字母',
isNumeric: '请输入数字', isNumeric: '请输入数字',
isAlphanumeric: '请输入字母或者数字', isAlphanumeric: '请输入字母或者数字',