forked from community/device-mgt-core
Create filter payload in AppsTable component See merge request entgra/carbon-device-mgt!165feature/appm-store/pbac
commit
1f175bc1c4
@ -1,74 +1,277 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import {Avatar, Card, Col, Row, Table, Typography, Input, Divider, Checkbox, Select, Button} from "antd";
|
import {Avatar, Card, Col, Row, Table, Typography, Input, Divider, Checkbox, Select, Button, Form, message} from "antd";
|
||||||
|
import axios from "axios";
|
||||||
|
import config from "../../../../public/conf/config.json";
|
||||||
|
|
||||||
const {Option} = Select;
|
const {Option} = Select;
|
||||||
const {Title, Text} = Typography;
|
const {Title, Text} = Typography;
|
||||||
|
|
||||||
class Filters extends React.Component {
|
|
||||||
|
class FiltersForm extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
categories: [],
|
||||||
|
tags: [],
|
||||||
|
deviceTypes: []
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
handleSubmit = e => {
|
||||||
|
e.preventDefault();
|
||||||
|
this.props.form.validateFields((err, values) => {
|
||||||
|
for (const [key, value] of Object.entries(values)) {
|
||||||
|
if (value === undefined) {
|
||||||
|
delete values[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.props.setFilters(values);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
this.getCategories();
|
||||||
|
this.getTags();
|
||||||
|
this.getDeviceTypes();
|
||||||
|
}
|
||||||
|
|
||||||
|
getCategories = () => {
|
||||||
|
axios.get(
|
||||||
|
config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.publisher + "/applications/categories",
|
||||||
|
{
|
||||||
|
headers: {'X-Platform': config.serverConfig.platform}
|
||||||
|
}).then(res => {
|
||||||
|
if (res.status === 200) {
|
||||||
|
let categories = JSON.parse(res.data.data);
|
||||||
|
this.setState({
|
||||||
|
categories: categories,
|
||||||
|
loading: false
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
if (error.response.status === 401) {
|
||||||
|
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + '/publisher/login';
|
||||||
|
} else {
|
||||||
|
message.warning('Something went wrong');
|
||||||
|
|
||||||
|
}
|
||||||
|
this.setState({
|
||||||
|
loading: false
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
getTags = () => {
|
||||||
|
axios.get(
|
||||||
|
config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.publisher + "/applications/tags",
|
||||||
|
{
|
||||||
|
headers: {'X-Platform': config.serverConfig.platform}
|
||||||
|
}).then(res => {
|
||||||
|
if (res.status === 200) {
|
||||||
|
let tags = JSON.parse(res.data.data);
|
||||||
|
this.setState({
|
||||||
|
tags: tags,
|
||||||
|
loading: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
if (error.response.status === 401) {
|
||||||
|
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + '/publisher/login';
|
||||||
|
} else {
|
||||||
|
message.warning('Something went wrong');
|
||||||
|
|
||||||
|
}
|
||||||
|
this.setState({
|
||||||
|
loading: false
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
getDeviceTypes = () => {
|
||||||
|
axios.get(
|
||||||
|
config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt + "/device-types",
|
||||||
|
{
|
||||||
|
headers: {'X-Platform': config.serverConfig.platform}
|
||||||
|
}).then(res => {
|
||||||
|
if (res.status === 200) {
|
||||||
|
const deviceTypes = JSON.parse(res.data.data);
|
||||||
|
this.setState({
|
||||||
|
deviceTypes,
|
||||||
|
loading: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}).catch((error) => {
|
||||||
|
if (error.response.status === 401) {
|
||||||
|
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + '/publisher/login';
|
||||||
|
} else {
|
||||||
|
message.warning('Something went wrong');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
this.setState({
|
||||||
|
loading: false
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
const {categories, tags, deviceTypes} = this.state;
|
||||||
|
const {getFieldDecorator} = this.props.form;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
<Card>
|
<Card>
|
||||||
|
<Form labelAlign="left" layout="horizontal"
|
||||||
|
hideRequiredMark
|
||||||
|
onSubmit={this.handleSubmit}>
|
||||||
<Row>
|
<Row>
|
||||||
<Col span={6}>
|
<Col span={12}>
|
||||||
<Title level={4}>Filter</Title>
|
<Title level={4}>Filter</Title>
|
||||||
</Col>
|
</Col>
|
||||||
|
<Col span={12}>
|
||||||
|
<Form.Item style={{
|
||||||
|
float: "right",
|
||||||
|
marginBottom: 0,
|
||||||
|
marginTop: -5
|
||||||
|
}}>
|
||||||
|
<Button
|
||||||
|
size="small"
|
||||||
|
type="primary"
|
||||||
|
htmlType="submit">
|
||||||
|
Submit
|
||||||
|
</Button>
|
||||||
|
</Form.Item>
|
||||||
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
<Divider/>
|
<Divider/>
|
||||||
|
|
||||||
<Text strong={true}>Category</Text>
|
{/*<Text strong={true}>Category</Text>*/}
|
||||||
<br/><br/>
|
{/*<br/><br/>*/}
|
||||||
|
<Form.Item label="Categories">
|
||||||
|
{getFieldDecorator('categories', {
|
||||||
|
rules: [{
|
||||||
|
required: false,
|
||||||
|
message: 'Please select categories'
|
||||||
|
}],
|
||||||
|
})(
|
||||||
<Select
|
<Select
|
||||||
mode="multiple"
|
mode="multiple"
|
||||||
style={{width: '100%'}}
|
style={{width: '100%'}}
|
||||||
placeholder="All Categories"
|
placeholder="Select a Category"
|
||||||
|
onChange={this.handleCategoryChange}
|
||||||
>
|
>
|
||||||
<Option key={1}>IoT</Option>
|
{
|
||||||
<Option key={2}>EMM</Option>
|
categories.map(category => {
|
||||||
|
return (
|
||||||
|
<Option
|
||||||
|
key={category.categoryName}>
|
||||||
|
{category.categoryName}
|
||||||
|
</Option>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
</Select>
|
</Select>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
{/*<Select*/}
|
||||||
|
{/*mode="multiple"*/}
|
||||||
|
{/*style={{width: '100%'}}*/}
|
||||||
|
{/*placeholder="All Categories"*/}
|
||||||
|
{/*>*/}
|
||||||
|
{/*<Option key={1}>IoT</Option>*/}
|
||||||
|
{/*<Option key={2}>EMM</Option>*/}
|
||||||
|
{/*</Select>*/}
|
||||||
<Divider/>
|
<Divider/>
|
||||||
|
|
||||||
<Text strong={true}>Platform</Text>
|
<Form.Item label="Device Types">
|
||||||
<br/><br/>
|
{getFieldDecorator('deviceTypes', {
|
||||||
<Checkbox>Android</Checkbox><br/>
|
rules: [{
|
||||||
<Checkbox>iOS</Checkbox><br/>
|
required: false,
|
||||||
<Checkbox>Windows</Checkbox><br/>
|
message: 'Please select device types'
|
||||||
<Checkbox>Default</Checkbox><br/>
|
}],
|
||||||
<Divider/>
|
})(
|
||||||
|
<Select
|
||||||
|
style={{width: '100%'}}
|
||||||
|
placeholder="Select device types"
|
||||||
|
>
|
||||||
|
{
|
||||||
|
deviceTypes.map(deviceType => {
|
||||||
|
return (
|
||||||
|
<Option
|
||||||
|
key={deviceType.name}>
|
||||||
|
{deviceType.name}
|
||||||
|
</Option>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</Select>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
<Text strong={true}>Tags</Text>
|
{/*<Text strong={true}>Tags</Text>*/}
|
||||||
<br/><br/>
|
<Form.Item label="Tags">
|
||||||
|
{getFieldDecorator('tags', {
|
||||||
|
rules: [{
|
||||||
|
required: false,
|
||||||
|
message: 'Please select tags'
|
||||||
|
}],
|
||||||
|
})(
|
||||||
<Select
|
<Select
|
||||||
mode="multiple"
|
mode="multiple"
|
||||||
style={{width: '100%'}}
|
style={{width: '100%'}}
|
||||||
placeholder="All Tags"
|
placeholder="Select tags"
|
||||||
>
|
>
|
||||||
<Option key={1}>test tag</Option>
|
{
|
||||||
|
tags.map(tag => {
|
||||||
|
return (
|
||||||
|
<Option
|
||||||
|
key={tag.tagName}>
|
||||||
|
{tag.tagName}
|
||||||
|
</Option>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
</Select>
|
</Select>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
<Divider/>
|
<Divider/>
|
||||||
<Text strong={true}>Type</Text>
|
<Form.Item label="App Type">
|
||||||
<br/><br/>
|
{getFieldDecorator('appType', {})(
|
||||||
<Checkbox>Enterprise</Checkbox><br/>
|
<Select
|
||||||
<Checkbox>Public</Checkbox><br/>
|
style={{width: '100%'}}
|
||||||
<Checkbox>Web APP</Checkbox><br/>
|
placeholder="Select app type"
|
||||||
<Checkbox>Web Clip</Checkbox><br/>
|
>
|
||||||
|
<Option value="ENTERPRISE">Enterprise</Option>
|
||||||
|
<Option value="PUBLIC">Public</Option>
|
||||||
|
<Option value="WEB_CLIP">Web APP</Option>
|
||||||
|
</Select>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
<Divider/>
|
<Divider/>
|
||||||
|
|
||||||
<Text strong={true}>Subscription</Text>
|
<Form.Item label="Subscription Type">
|
||||||
<br/><br/>
|
{getFieldDecorator('subscriptionType', {})(
|
||||||
<Checkbox>Free</Checkbox><br/>
|
<Checkbox.Group style={{width: '100%'}}>
|
||||||
<Checkbox>Paid</Checkbox><br/>
|
<Checkbox value="FREE">Free</Checkbox><br/>
|
||||||
|
<Checkbox value="PAID">Paid</Checkbox><br/>
|
||||||
|
</Checkbox.Group>,
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
<Divider/>
|
<Divider/>
|
||||||
|
</Form>
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const Filters = Form.create({name: 'filter-apps'})(FiltersForm);
|
||||||
|
|
||||||
|
|
||||||
export default Filters;
|
export default Filters;
|
Loading…
Reference in new issue