Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V10 key select #1882

Draft
wants to merge 4 commits into
base: v10
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions packages/zent/src/select/KeySelect.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
import Select, { ISelectCommonProps } from './Select';
import { useMemo, useCallback } from 'react';

type IValueType = number | string;
type IValue = IValueType | IValueType[] | null;

interface ISelectProps extends ISelectCommonProps {
value?: IValue;
onChange?: (value: IValue) => void;
}

export const KeySelect = ({
value = null,
onChange,
options,
creatable,
...restProps
}: ISelectProps) => {
const validValue = useMemo(() => {
if (value === null) {
return null;
}
if (!Array.isArray(value)) {
const item = options.find(v => v.key === value);
if (item) {
return {
key: value,
text: item.text,
};
}
if (creatable) {
return {
key: value,
text: value,
};
}
return null;
}
return value.reduce((old, key) => {
const item = options.find(v => v.key === key);
let v;
if (!item) {
if (!creatable) {
return old;
}
v = {
key,
text: key,
};
} else {
v = {
key,
text: item.text,
};
}
old.push(v);
return old;
}, []);
}, [options, value, creatable]);
const keysOnChange = useCallback(
value => {
if (value === null) {
return onChange(null);
}
if (!Array.isArray(value)) {
return onChange(value.key);
}
return onChange(value.map(v => v.key));
},
[onChange]
);
return (
<Select
value={validValue}
onChange={keysOnChange}
options={options}
{...restProps}
/>
);
};
64 changes: 64 additions & 0 deletions packages/zent/src/select/demos/12.key-select.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
order: 12
zh-CN:
title: value为key值的keySelect
en-US:
title: select value with key
---

```js
import { KeySelect, Button } from 'zent';

const options = [
{ key: '1', text: 'Option 1' },
{ key: '2', text: 'Option 2' },
{ key: '3', text: 'Option 3' },
];

class Demo extends Component {
state = {
value: '1',
multiValue: null
};

onChange = value => {
console.log('value change', value);
this.setState({
value,
});
};

onMutiChange = multiValue => {
console.log('mutl value change', multiValue);
this.setState({
multiValue,
});
}

render() {
const { value, multiValue } = this.state;
return (
<div>
<KeySelect
placeholder="请选择"
options={options}
onChange={this.onChange}
value={value}
clearable
/>
<br/>
<KeySelect
placeholder="请选择"
options={options}
onChange={this.onMutiChange}
value={multiValue}
clearable
multiple
/>
</div>
);
}
}

ReactDOM.render(<Demo />, mountNode);
```
1 change: 1 addition & 0 deletions packages/zent/src/select/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Select from './Select';

export * from './Select';
export * from './KeySelect';

export type { ISelectTagListProps } from './TagList';

Expand Down