Modify search by app field in APPM Publisher UI

feature/appm-store/pbac
Jayasanka 5 years ago
parent 1a7806e02d
commit 138ed15dff

@ -31,10 +31,16 @@ class ListApps extends React.Component {
super(props);
this.state = {
filters: {}
}
};
this.appName = '';
}
setFilters = (filters) => {
if (this.appName === '' && filters.hasOwnProperty("appName")) {
delete filters["appName"];
} else {
filters.appName = this.appName;
}
this.setState({
filters
});
@ -42,6 +48,7 @@ class ListApps extends React.Component {
setSearchText = (appName) => {
const filters = {...this.state.filters};
this.appName = appName;
if (appName === '' && filters.hasOwnProperty("appName")) {
delete filters["appName"];
} else {
@ -52,6 +59,17 @@ class ListApps extends React.Component {
});
};
onChangeSearchText = (e) => {
const filters = {...this.state.filters};
const appName = e.target.value;
if (appName === '' && filters.hasOwnProperty("appName")) {
delete filters["appName"];
this.setState({
filters
});
}
};
render() {
const {isDrawerVisible, filters} = this.state;
return (
@ -67,9 +85,10 @@ class ListApps extends React.Component {
</Col>
<Col span={18} style={{textAlign: "right"}}>
<Search
placeholder="input search text"
placeholder="Search by app name"
onSearch={this.setSearchText}
style={{width: 170, zIndex:0}}
onChange={this.onChangeSearchText}
style={{width: 240, zIndex: 0}}
/>
</Col>
</Row>

Loading…
Cancel
Save