WIP Whiteboard Changes
This commit is contained in:
@@ -25,18 +25,17 @@ function searchResult(query) {
|
||||
function renderOption(item) {
|
||||
return (
|
||||
<Option key={item.category} text={item.category}>
|
||||
<div className="global-search-item">
|
||||
<span className="global-search-item-desc">
|
||||
<div className='global-search-item'>
|
||||
<span className='global-search-item-desc'>
|
||||
Found {item.query} on
|
||||
<a
|
||||
href={`https://s.taobao.com/search?q=${item.query}`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
target='_blank'
|
||||
rel='noopener noreferrer'>
|
||||
{item.category}
|
||||
</a>
|
||||
</span>
|
||||
<span className="global-search-item-count">{item.count} results</span>
|
||||
<span className='global-search-item-count'>{item.count} results</span>
|
||||
</div>
|
||||
</Option>
|
||||
);
|
||||
@@ -56,25 +55,26 @@ export default class GlobalSearch extends React.Component {
|
||||
render() {
|
||||
const { dataSource } = this.state;
|
||||
return (
|
||||
<div style={{ width: 300 }}>
|
||||
<AutoComplete
|
||||
size="large"
|
||||
style={{ width: "100%" }}
|
||||
dataSource={dataSource.map(renderOption)}
|
||||
onSelect={onSelect}
|
||||
onSearch={this.handleSearch}
|
||||
placeholder="input here"
|
||||
optionLabelProp="text"
|
||||
>
|
||||
<Input
|
||||
suffix={
|
||||
<Button style={{ marginRight: -12 }} size="large" type="primary">
|
||||
<Icon type="search" />
|
||||
</Button>
|
||||
}
|
||||
/>
|
||||
</AutoComplete>
|
||||
</div>
|
||||
<div />
|
||||
// <div style={{ width: 300 }}>
|
||||
// <AutoComplete
|
||||
// size="large"
|
||||
// style={{ width: "100%" }}
|
||||
// dataSource={dataSource.map(renderOption)}
|
||||
// onSelect={onSelect}
|
||||
// onSearch={this.handleSearch}
|
||||
// placeholder="input here"
|
||||
// optionLabelProp="text"
|
||||
// >
|
||||
// <Input
|
||||
// suffix={
|
||||
// <Button style={{ marginRight: -12 }} size="large" type="primary">
|
||||
// <Icon type="search" />
|
||||
// </Button>
|
||||
// }
|
||||
// />
|
||||
// </AutoComplete>
|
||||
// </div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user