Remove reporting components See merge request entgra/carbon-device-mgt!488merge-requests/489/head
commit
7d660e3105
@ -1,61 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { DatePicker } from 'antd';
|
|
||||||
import moment from 'moment';
|
|
||||||
|
|
||||||
class DateRangePicker extends React.Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send updated date range to index.js when duration change
|
|
||||||
onChange = (dates, dateStrings) => {
|
|
||||||
this.props.updateDurationValue(dateStrings[0], dateStrings[1]);
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { RangePicker } = DatePicker;
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<RangePicker
|
|
||||||
ranges={{
|
|
||||||
Today: [moment(), moment()],
|
|
||||||
Yesterday: [moment().subtract(1, 'days'), moment()],
|
|
||||||
'Last 7 Days': [moment().subtract(7, 'days'), moment()],
|
|
||||||
'Last 30 Days': [moment().subtract(30, 'days'), moment()],
|
|
||||||
'This Month': [moment().startOf('month'), moment().endOf('month')],
|
|
||||||
'Last Month': [
|
|
||||||
moment()
|
|
||||||
.subtract(1, 'month')
|
|
||||||
.startOf('month'),
|
|
||||||
moment()
|
|
||||||
.subtract(1, 'month')
|
|
||||||
.endOf('month'),
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
format="YYYY-MM-DD"
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default DateRangePicker;
|
|
@ -1,260 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import axios from 'axios';
|
|
||||||
import { Icon, message, notification, Table, Tag, Tooltip } from 'antd';
|
|
||||||
import TimeAgo from 'javascript-time-ago';
|
|
||||||
// Load locale-specific relative date/time formatting rules.
|
|
||||||
import en from 'javascript-time-ago/locale/en';
|
|
||||||
import { withConfigContext } from '../../../../../../components/ConfigContext';
|
|
||||||
|
|
||||||
let config = null;
|
|
||||||
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
title: 'Device',
|
|
||||||
dataIndex: 'name',
|
|
||||||
width: 100,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Type',
|
|
||||||
dataIndex: 'type',
|
|
||||||
key: 'type',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: type => {
|
|
||||||
const defaultPlatformIcons = config.defaultPlatformIcons;
|
|
||||||
let icon = defaultPlatformIcons.default.icon;
|
|
||||||
let color = defaultPlatformIcons.default.color;
|
|
||||||
let theme = defaultPlatformIcons.default.theme;
|
|
||||||
|
|
||||||
if (defaultPlatformIcons.hasOwnProperty(type)) {
|
|
||||||
icon = defaultPlatformIcons[type].icon;
|
|
||||||
color = defaultPlatformIcons[type].color;
|
|
||||||
theme = defaultPlatformIcons[type].theme;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<span style={{ fontSize: 20, color: color, textAlign: 'center' }}>
|
|
||||||
<Icon type={icon} theme={theme} />
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Owner',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'owner',
|
|
||||||
render: enrolmentInfo => enrolmentInfo.owner,
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Ownership',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'ownership',
|
|
||||||
render: enrolmentInfo => enrolmentInfo.ownership,
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Status',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'status',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: enrolmentInfo => {
|
|
||||||
const status = enrolmentInfo.status.toLowerCase();
|
|
||||||
let color = '#f9ca24';
|
|
||||||
switch (status) {
|
|
||||||
case 'active':
|
|
||||||
color = '#badc58';
|
|
||||||
break;
|
|
||||||
case 'created':
|
|
||||||
color = '#6ab04c';
|
|
||||||
break;
|
|
||||||
case 'removed':
|
|
||||||
color = '#ff7979';
|
|
||||||
break;
|
|
||||||
case 'inactive':
|
|
||||||
color = '#f9ca24';
|
|
||||||
break;
|
|
||||||
case 'blocked':
|
|
||||||
color = '#636e72';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return <Tag color={color}>{status}</Tag>;
|
|
||||||
},
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Last Updated',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'dateOfLastUpdate',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: data => {
|
|
||||||
const { dateOfLastUpdate } = data;
|
|
||||||
const timeAgoString = getTimeAgo(dateOfLastUpdate);
|
|
||||||
return (
|
|
||||||
<Tooltip title={new Date(dateOfLastUpdate).toString()}>
|
|
||||||
{timeAgoString}
|
|
||||||
</Tooltip>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const getTimeAgo = time => {
|
|
||||||
const timeAgo = new TimeAgo('en-US');
|
|
||||||
return timeAgo.format(time);
|
|
||||||
};
|
|
||||||
|
|
||||||
class deviceTable extends React.Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
config = this.props.context;
|
|
||||||
TimeAgo.addLocale(en);
|
|
||||||
this.state = {
|
|
||||||
data: [],
|
|
||||||
pagination: {},
|
|
||||||
loading: false,
|
|
||||||
selectedRows: [],
|
|
||||||
paramsObj: {},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
rowSelection = {
|
|
||||||
onChange: (selectedRowKeys, selectedRows) => {
|
|
||||||
this.setState({
|
|
||||||
selectedRows: selectedRows,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
if (this.props.apiUrl) {
|
|
||||||
this.fetch();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Rerender component when parameters change
|
|
||||||
componentDidUpdate(prevProps, prevState, snapshot) {
|
|
||||||
if (prevProps.apiUrl !== this.props.apiUrl) {
|
|
||||||
this.fetch();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// fetch data from api
|
|
||||||
fetch = (params = {}) => {
|
|
||||||
this.setState({ loading: true });
|
|
||||||
// get current page
|
|
||||||
const currentPage = params.hasOwnProperty('page') ? params.page : 1;
|
|
||||||
|
|
||||||
const extraParams = {
|
|
||||||
offset: 10 * (currentPage - 1), // calculate the offset
|
|
||||||
limit: 10,
|
|
||||||
};
|
|
||||||
|
|
||||||
const encodedExtraParams = Object.keys(extraParams)
|
|
||||||
.map(key => key + '=' + extraParams[key])
|
|
||||||
.join('&');
|
|
||||||
|
|
||||||
// send request to the invokerss
|
|
||||||
axios
|
|
||||||
.get(this.props.apiUrl + encodedExtraParams)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
const pagination = { ...this.state.pagination };
|
|
||||||
if (
|
|
||||||
res.data.data.devices.length &&
|
|
||||||
res.data.data.devices[0].hasOwnProperty('deviceInfo')
|
|
||||||
) {
|
|
||||||
columns.push({
|
|
||||||
title: 'OS Version',
|
|
||||||
dataIndex: 'deviceInfo',
|
|
||||||
key: 'osVersion',
|
|
||||||
render: deviceInfo => deviceInfo.osVersion,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
this.setState({
|
|
||||||
loading: false,
|
|
||||||
data: res.data.data,
|
|
||||||
pagination,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
if (error.hasOwnProperty('response') && error.response.status === 401) {
|
|
||||||
// todo display a popop with error
|
|
||||||
message.error('You are not logged in');
|
|
||||||
window.location.href = window.location.origin + '/entgra/login';
|
|
||||||
} else {
|
|
||||||
notification.error({
|
|
||||||
message: 'There was a problem',
|
|
||||||
duration: 0,
|
|
||||||
description: 'Error occurred while trying to load devices.',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setState({ loading: false });
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
handleTableChange = (pagination, filters, sorter) => {
|
|
||||||
const pager = { ...this.state.pagination };
|
|
||||||
pager.current = pagination.current;
|
|
||||||
this.setState({
|
|
||||||
pagination: pager,
|
|
||||||
});
|
|
||||||
this.fetch({
|
|
||||||
results: pagination.pageSize,
|
|
||||||
page: pagination.current,
|
|
||||||
sortField: sorter.field,
|
|
||||||
sortOrder: sorter.order,
|
|
||||||
...filters,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { data, pagination, loading } = this.state;
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<Table
|
|
||||||
columns={columns}
|
|
||||||
rowKey={record =>
|
|
||||||
record.deviceIdentifier +
|
|
||||||
record.enrolmentInfo.owner +
|
|
||||||
record.enrolmentInfo.ownership
|
|
||||||
}
|
|
||||||
dataSource={data.devices}
|
|
||||||
pagination={{
|
|
||||||
...pagination,
|
|
||||||
size: 'small',
|
|
||||||
total: data.count,
|
|
||||||
showTotal: (total, range) =>
|
|
||||||
`showing ${range[0]}-${range[1]} of ${total} devices`,
|
|
||||||
}}
|
|
||||||
loading={loading}
|
|
||||||
onChange={this.handleTableChange}
|
|
||||||
rowSelection={this.rowSelection}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(deviceTable);
|
|
@ -1,258 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { PageHeader, Breadcrumb, Icon, Row, Col, Card } from 'antd';
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
|
|
||||||
class Reports extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
this.state = {
|
|
||||||
paramsObject: {},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// Get modified value from datepicker and set it to paramsObject
|
|
||||||
updateDurationValue = (modifiedFromDate, modifiedToDate) => {
|
|
||||||
let tempParamObj = this.state.paramsObject;
|
|
||||||
tempParamObj.from = modifiedFromDate;
|
|
||||||
tempParamObj.to = modifiedToDate;
|
|
||||||
this.setState({ paramsObject: tempParamObj });
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get modified value from filters and set it to paramsObject
|
|
||||||
updateFiltersValue = (modifiedValue, filterType) => {
|
|
||||||
let tempParamObj = this.state.paramsObject;
|
|
||||||
if (filterType == 'Device Status') {
|
|
||||||
tempParamObj.status = modifiedValue;
|
|
||||||
if (modifiedValue == 'ALL' && tempParamObj.status) {
|
|
||||||
delete tempParamObj.status;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
tempParamObj.ownership = modifiedValue;
|
|
||||||
if (modifiedValue == 'ALL' && tempParamObj.ownership) {
|
|
||||||
delete tempParamObj.ownership;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.setState({ paramsObject: tempParamObj });
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>Reports</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap">
|
|
||||||
<h3>Reports</h3>
|
|
||||||
<div style={{ borderRadius: 5 }}>
|
|
||||||
<Row gutter={16}>
|
|
||||||
<Col span={8}>
|
|
||||||
<Link
|
|
||||||
to={{
|
|
||||||
// Path to respective report page
|
|
||||||
pathname: '/entgra/reports/policy/compliance',
|
|
||||||
data: {
|
|
||||||
name: 'all_policy_compliance_report',
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Card
|
|
||||||
bordered={true}
|
|
||||||
hoverable={true}
|
|
||||||
style={{ borderRadius: 10, marginBottom: 16 }}
|
|
||||||
>
|
|
||||||
<div align="center">
|
|
||||||
<Icon
|
|
||||||
type="desktop"
|
|
||||||
style={{ fontSize: '25px', color: '#08c' }}
|
|
||||||
/>
|
|
||||||
<h2>
|
|
||||||
<b>Policy Compliance Report</b>
|
|
||||||
</h2>
|
|
||||||
<p>Policy compliance details of all enrolled devices</p>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</Link>
|
|
||||||
</Col>
|
|
||||||
<Col span={8}>
|
|
||||||
<Link
|
|
||||||
to={{
|
|
||||||
// Path to respective report page
|
|
||||||
pathname: '/entgra/reports/enrollments',
|
|
||||||
data: {
|
|
||||||
name: 'enrollments_vs_unenrollments_report',
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Card
|
|
||||||
bordered={true}
|
|
||||||
hoverable={true}
|
|
||||||
style={{ borderRadius: 10, marginBottom: 16 }}
|
|
||||||
>
|
|
||||||
<div align="center">
|
|
||||||
<Icon
|
|
||||||
type="desktop"
|
|
||||||
style={{ fontSize: '25px', color: '#08c' }}
|
|
||||||
/>
|
|
||||||
<h2>
|
|
||||||
<b>Enrollments vs Unenrollments</b>
|
|
||||||
</h2>
|
|
||||||
<p>Details on device enrollments vs unenrollments</p>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</Link>
|
|
||||||
</Col>
|
|
||||||
|
|
||||||
<Col span={8}>
|
|
||||||
<Link
|
|
||||||
to={{
|
|
||||||
// Path to respective report page
|
|
||||||
pathname: '/entgra/reports/device-status',
|
|
||||||
data: {
|
|
||||||
name: 'enrollment_status_report',
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Card
|
|
||||||
bordered={true}
|
|
||||||
hoverable={true}
|
|
||||||
style={{ borderRadius: 10, marginBottom: 16 }}
|
|
||||||
>
|
|
||||||
<div align="center">
|
|
||||||
<Icon
|
|
||||||
type="desktop"
|
|
||||||
style={{ fontSize: '25px', color: '#08c' }}
|
|
||||||
/>
|
|
||||||
<h2>
|
|
||||||
<b>Device Status Report</b>
|
|
||||||
</h2>
|
|
||||||
<p>Report based on device status</p>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</Link>
|
|
||||||
</Col>
|
|
||||||
|
|
||||||
<Col span={8}>
|
|
||||||
<Link
|
|
||||||
to={{
|
|
||||||
// Path to respective report page
|
|
||||||
pathname: '/entgra/reports/expired-devices',
|
|
||||||
data: {
|
|
||||||
name: 'expired_devices_report',
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Card
|
|
||||||
bordered={true}
|
|
||||||
hoverable={true}
|
|
||||||
style={{ borderRadius: 10, marginBottom: 16 }}
|
|
||||||
>
|
|
||||||
<div align="center">
|
|
||||||
<Icon
|
|
||||||
type="desktop"
|
|
||||||
style={{ fontSize: '25px', color: '#08c' }}
|
|
||||||
/>
|
|
||||||
<h2>
|
|
||||||
<b>Outdated OS Version Report</b>
|
|
||||||
</h2>
|
|
||||||
<p>Report based on device OS version</p>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</Link>
|
|
||||||
</Col>
|
|
||||||
|
|
||||||
<Col span={8}>
|
|
||||||
<Link
|
|
||||||
to={{
|
|
||||||
// Path to respective report page
|
|
||||||
pathname: '/entgra/reports/enrollment-type',
|
|
||||||
data: {
|
|
||||||
name: 'enrollemt_type_report',
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Card
|
|
||||||
bordered={true}
|
|
||||||
hoverable={true}
|
|
||||||
style={{ borderRadius: 10, marginBottom: 16 }}
|
|
||||||
>
|
|
||||||
<div align="center">
|
|
||||||
<Icon
|
|
||||||
type="desktop"
|
|
||||||
style={{ fontSize: '25px', color: '#08c' }}
|
|
||||||
/>
|
|
||||||
<h2>
|
|
||||||
<b>Device Type Report</b>
|
|
||||||
</h2>
|
|
||||||
<p>Report for all device types</p>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</Link>
|
|
||||||
</Col>
|
|
||||||
|
|
||||||
<Col span={8}>
|
|
||||||
<Link
|
|
||||||
to={{
|
|
||||||
// Path to respective report page
|
|
||||||
pathname: '/entgra/reports/app-not-installed',
|
|
||||||
data: {
|
|
||||||
name: 'app_not_installed_devices_report',
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Card
|
|
||||||
bordered={true}
|
|
||||||
hoverable={true}
|
|
||||||
style={{ borderRadius: 10, marginBottom: 16 }}
|
|
||||||
>
|
|
||||||
<div align="center">
|
|
||||||
<Icon
|
|
||||||
type="desktop"
|
|
||||||
style={{ fontSize: '25px', color: '#08c' }}
|
|
||||||
/>
|
|
||||||
<h2>
|
|
||||||
<b>App NOT Installed Devices Report</b>
|
|
||||||
</h2>
|
|
||||||
<p>Report for all device types</p>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</Link>
|
|
||||||
</Col>
|
|
||||||
</Row>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Reports;
|
|
@ -1,100 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { message, notification, Select } from 'antd';
|
|
||||||
import axios from 'axios';
|
|
||||||
import { withConfigContext } from '../../../../../../../../components/ConfigContext';
|
|
||||||
|
|
||||||
const { Option } = Select;
|
|
||||||
|
|
||||||
class AppListDropDown extends React.Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.state = {
|
|
||||||
selectItem: [],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchFullAppList();
|
|
||||||
}
|
|
||||||
|
|
||||||
fetchFullAppList = () => {
|
|
||||||
const config = this.props.context;
|
|
||||||
axios
|
|
||||||
.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/devices/android/applications?offset=0&limit=-1',
|
|
||||||
)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
let selectItem;
|
|
||||||
selectItem = res.data.data.applicationList.map(data => (
|
|
||||||
<Option value={data.id} key={data.applicationIdentifier}>
|
|
||||||
{data.name.replace('%', ' ')}
|
|
||||||
</Option>
|
|
||||||
));
|
|
||||||
this.setState({ selectItem });
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
if (error.hasOwnProperty('response') && error.response.status === 401) {
|
|
||||||
// todo display a popop with error
|
|
||||||
message.error('You are not logged in');
|
|
||||||
window.location.href = window.location.origin + '/entgra/login';
|
|
||||||
} else {
|
|
||||||
notification.error({
|
|
||||||
message: 'There was a problem',
|
|
||||||
duration: 0,
|
|
||||||
description:
|
|
||||||
'Error occurred while trying to load application list.',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
onChange = (value, data) => {
|
|
||||||
this.props.getAppList(data.key);
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { selectItem } = this.state;
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<Select
|
|
||||||
showSearch
|
|
||||||
style={{ width: 200 }}
|
|
||||||
placeholder="Select an app"
|
|
||||||
optionFilterProp="children"
|
|
||||||
onChange={this.onChange}
|
|
||||||
filterOption={(input, option) =>
|
|
||||||
option.props.children.toLowerCase().indexOf(input.toLowerCase()) >=
|
|
||||||
0
|
|
||||||
}
|
|
||||||
>
|
|
||||||
{selectItem}
|
|
||||||
</Select>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(AppListDropDown);
|
|
@ -1,118 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { message, notification, Select } from 'antd';
|
|
||||||
import axios from 'axios';
|
|
||||||
import { withConfigContext } from '../../../../../../../../components/ConfigContext';
|
|
||||||
|
|
||||||
const { Option } = Select;
|
|
||||||
|
|
||||||
class AppVersionDropDown extends React.Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.state = {
|
|
||||||
selectItem: [],
|
|
||||||
loading: false,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
if (this.props.packageName) {
|
|
||||||
this.fetchVersionList();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Rerender component when parameters change
|
|
||||||
componentDidUpdate(prevProps, prevState, snapshot) {
|
|
||||||
if (prevProps.packageName !== this.props.packageName) {
|
|
||||||
this.fetchVersionList();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fetchVersionList = () => {
|
|
||||||
const config = this.props.context;
|
|
||||||
this.setState({ loading: true });
|
|
||||||
axios
|
|
||||||
.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/devices/application/' +
|
|
||||||
this.props.packageName +
|
|
||||||
'/versions',
|
|
||||||
)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
let selectItem;
|
|
||||||
selectItem = JSON.parse(res.data.data).map(data => (
|
|
||||||
<Option value={data} key={data}>
|
|
||||||
{data}
|
|
||||||
</Option>
|
|
||||||
));
|
|
||||||
this.setState({ selectItem, loading: false });
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
if (error.hasOwnProperty('response') && error.response.status === 401) {
|
|
||||||
// todo display a popop with error
|
|
||||||
message.error('You are not logged in');
|
|
||||||
window.location.href = window.location.origin + '/entgra/login';
|
|
||||||
} else {
|
|
||||||
notification.error({
|
|
||||||
message: 'There was a problem',
|
|
||||||
duration: 0,
|
|
||||||
description:
|
|
||||||
'Error occurred while trying to load application list.',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
onChange = value => {
|
|
||||||
this.props.getVersion(value);
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { selectItem, loading } = this.state;
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<Select
|
|
||||||
defaultValue={'all'}
|
|
||||||
showSearch
|
|
||||||
style={{ width: 200 }}
|
|
||||||
placeholder="Select app version"
|
|
||||||
optionFilterProp="children"
|
|
||||||
onChange={this.onChange}
|
|
||||||
loading={loading}
|
|
||||||
filterOption={(input, option) =>
|
|
||||||
option.props.children.toLowerCase().indexOf(input.toLowerCase()) >=
|
|
||||||
0
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Option value={'all'} key={'all'}>
|
|
||||||
All
|
|
||||||
</Option>
|
|
||||||
{selectItem}
|
|
||||||
</Select>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(AppVersionDropDown);
|
|
@ -1,136 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { PageHeader, Breadcrumb, Icon, Button } from 'antd';
|
|
||||||
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
import { withConfigContext } from '../../../../../../components/ConfigContext';
|
|
||||||
|
|
||||||
import AppListDropDown from './components/AppListDropDown';
|
|
||||||
import DevicesTable from './../../components/DevicesTable';
|
|
||||||
import AppVersionDropDown from './components/AppVersionDropDown';
|
|
||||||
|
|
||||||
// eslint-disable-next-line no-unused-vars
|
|
||||||
let config = null;
|
|
||||||
let url;
|
|
||||||
let packageName;
|
|
||||||
let version;
|
|
||||||
|
|
||||||
class AppNotInstalledDevicesReport extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
config = this.props.context;
|
|
||||||
this.state = {
|
|
||||||
apiUrl: null,
|
|
||||||
visible: false,
|
|
||||||
packageName: null,
|
|
||||||
version: 'all',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
getAppList = appPackageName => {
|
|
||||||
packageName = appPackageName;
|
|
||||||
this.setState({ packageName });
|
|
||||||
};
|
|
||||||
|
|
||||||
getVersion = appVersion => {
|
|
||||||
version = appVersion;
|
|
||||||
this.setState({ version });
|
|
||||||
};
|
|
||||||
|
|
||||||
onClickGenerateButton = () => {
|
|
||||||
const { packageName, version } = this.state;
|
|
||||||
if (version === 'all') {
|
|
||||||
url =
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/devices/android/' +
|
|
||||||
packageName +
|
|
||||||
'/not-installed?';
|
|
||||||
} else {
|
|
||||||
url =
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/devices/android/' +
|
|
||||||
packageName +
|
|
||||||
'/not-installed?app-version=' +
|
|
||||||
version +
|
|
||||||
'&';
|
|
||||||
}
|
|
||||||
this.setState({ apiUrl: url });
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { apiUrl, packageName } = this.state;
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/reports">Reports</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>App NOT Installed Devices Report</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap" style={{ marginBottom: '10px' }}>
|
|
||||||
<h3>Policy Report</h3>
|
|
||||||
|
|
||||||
<div style={{ display: 'flex', marginBottom: '10px' }}>
|
|
||||||
<div>
|
|
||||||
<AppListDropDown getAppList={this.getAppList} />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style={{ marginLeft: '10px' }}>
|
|
||||||
<AppVersionDropDown
|
|
||||||
getVersion={this.getVersion}
|
|
||||||
packageName={packageName}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type="primary"
|
|
||||||
onClick={this.onClickGenerateButton}
|
|
||||||
style={{ marginLeft: '10px' }}
|
|
||||||
>
|
|
||||||
Generate Report
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
<div style={{ backgroundColor: '#ffffff', borderRadius: 5 }}>
|
|
||||||
<DevicesTable apiUrl={apiUrl} />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(AppNotInstalledDevicesReport);
|
|
@ -1,264 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { PageHeader, Breadcrumb, Icon, Radio, Popover, Button } from 'antd';
|
|
||||||
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
import { withConfigContext } from '../../../../../../components/ConfigContext';
|
|
||||||
import axios from 'axios';
|
|
||||||
import DateRangePicker from '../../components/DateRangePicker';
|
|
||||||
import moment from 'moment';
|
|
||||||
import { Chart, Geom, Axis, Tooltip, Legend } from 'bizcharts';
|
|
||||||
import DataSet from '@antv/data-set';
|
|
||||||
import { handleApiError } from '../../../../../../services/utils/errorHandler';
|
|
||||||
|
|
||||||
class DeviceStatusReport extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
this.state = {
|
|
||||||
paramsObject: {
|
|
||||||
from: moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
to: moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
},
|
|
||||||
data: [],
|
|
||||||
fields: [],
|
|
||||||
durationMode: 'weekly',
|
|
||||||
visible: false,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDurationModeChange = e => {
|
|
||||||
const durationMode = e.target.value;
|
|
||||||
switch (durationMode) {
|
|
||||||
case 'daily':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment().format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'weekly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'monthly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(29, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.setState({ durationMode });
|
|
||||||
};
|
|
||||||
|
|
||||||
handlePopoverVisibleChange = visible => {
|
|
||||||
this.setState({ visible });
|
|
||||||
};
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchData();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get modified value from datepicker and set it to paramsObject
|
|
||||||
updateDurationValue = (modifiedFromDate, modifiedToDate) => {
|
|
||||||
let tempParamObj = this.state.paramsObject;
|
|
||||||
tempParamObj.from = modifiedFromDate;
|
|
||||||
tempParamObj.to = modifiedToDate;
|
|
||||||
this.setState({ paramsObject: tempParamObj });
|
|
||||||
this.fetchData();
|
|
||||||
};
|
|
||||||
|
|
||||||
// Call count APIs and get count for given parameters, then create data object to build pie chart
|
|
||||||
fetchData = () => {
|
|
||||||
this.setState({ loading: true });
|
|
||||||
|
|
||||||
const { paramsObject } = this.state;
|
|
||||||
const config = this.props.context;
|
|
||||||
|
|
||||||
const encodedExtraParams = Object.keys(paramsObject)
|
|
||||||
.map(key => key + '=' + paramsObject[key])
|
|
||||||
.join('&');
|
|
||||||
|
|
||||||
axios
|
|
||||||
.all([
|
|
||||||
axios.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/count?status=ACTIVE&' +
|
|
||||||
encodedExtraParams,
|
|
||||||
'Active',
|
|
||||||
),
|
|
||||||
axios.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/count?status=INACTIVE&' +
|
|
||||||
encodedExtraParams,
|
|
||||||
'Inactive',
|
|
||||||
),
|
|
||||||
axios.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/count?status=REMOVED&' +
|
|
||||||
encodedExtraParams,
|
|
||||||
'Removed',
|
|
||||||
),
|
|
||||||
])
|
|
||||||
.then(res => {
|
|
||||||
let keys = Object.keys(res[0].data.data);
|
|
||||||
let active = res[0].data.data;
|
|
||||||
let inactive = res[1].data.data;
|
|
||||||
let removed = res[2].data.data;
|
|
||||||
|
|
||||||
if (Object.keys(active).length != 0) {
|
|
||||||
active.name = 'Active';
|
|
||||||
inactive.name = 'Inactive';
|
|
||||||
removed.name = 'Removed';
|
|
||||||
}
|
|
||||||
|
|
||||||
const finalData = [active, inactive, removed];
|
|
||||||
|
|
||||||
this.setState({
|
|
||||||
data: finalData,
|
|
||||||
fields: keys,
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
handleApiError(
|
|
||||||
error,
|
|
||||||
'Error occurred while trying to get device count.',
|
|
||||||
);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { durationMode } = this.state;
|
|
||||||
|
|
||||||
const ds = new DataSet();
|
|
||||||
const dv = ds.createView().source(this.state.data);
|
|
||||||
dv.transform({
|
|
||||||
type: 'fold',
|
|
||||||
fields: this.state.fields,
|
|
||||||
key: 'Time',
|
|
||||||
value: 'Number of Devices',
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/reports">Reports</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>Device Status Report</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap" style={{ marginBottom: '10px' }}>
|
|
||||||
<h3>Device Status Report</h3>
|
|
||||||
|
|
||||||
<Radio.Group
|
|
||||||
onChange={this.handleDurationModeChange}
|
|
||||||
defaultValue={'weekly'}
|
|
||||||
value={durationMode}
|
|
||||||
style={{ marginBottom: 8, marginRight: 5 }}
|
|
||||||
>
|
|
||||||
<Radio.Button value={'daily'}>Today</Radio.Button>
|
|
||||||
<Radio.Button value={'weekly'}>Last Week</Radio.Button>
|
|
||||||
<Radio.Button value={'monthly'}>Last Month</Radio.Button>
|
|
||||||
</Radio.Group>
|
|
||||||
|
|
||||||
<Popover
|
|
||||||
trigger="hover"
|
|
||||||
content={
|
|
||||||
<div>
|
|
||||||
<DateRangePicker
|
|
||||||
updateDurationValue={this.updateDurationValue}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
visible={this.state.visible}
|
|
||||||
onVisibleChange={this.handlePopoverVisibleChange}
|
|
||||||
>
|
|
||||||
<Button style={{ marginRight: 10 }}>Custom Date</Button>
|
|
||||||
</Popover>
|
|
||||||
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: '#ffffff',
|
|
||||||
borderRadius: 5,
|
|
||||||
marginTop: 10,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Chart height={400} data={dv} forceFit>
|
|
||||||
<Axis name="Time" />
|
|
||||||
<Axis name="Number of Devices" />
|
|
||||||
<Legend />
|
|
||||||
<Tooltip
|
|
||||||
crosshairs={{
|
|
||||||
type: 'y',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Geom
|
|
||||||
type="interval"
|
|
||||||
position="Time*Number of Devices"
|
|
||||||
color={'name'}
|
|
||||||
adjust={[
|
|
||||||
{
|
|
||||||
type: 'dodge',
|
|
||||||
marginRatio: 1 / 32,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</Chart>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(DeviceStatusReport);
|
|
@ -1,258 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import axios from 'axios';
|
|
||||||
import { Icon, message, notification, Radio, Table, Tag, Tooltip } from 'antd';
|
|
||||||
import TimeAgo from 'javascript-time-ago';
|
|
||||||
// Load locale-specific relative date/time formatting rules.
|
|
||||||
import en from 'javascript-time-ago/locale/en';
|
|
||||||
import { withConfigContext } from '../../../../../../../../components/ConfigContext';
|
|
||||||
|
|
||||||
let config = null;
|
|
||||||
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
title: 'Device',
|
|
||||||
dataIndex: 'name',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Type',
|
|
||||||
dataIndex: 'type',
|
|
||||||
key: 'type',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: type => {
|
|
||||||
const defaultPlatformIcons = config.defaultPlatformIcons;
|
|
||||||
let icon = defaultPlatformIcons.default.icon;
|
|
||||||
let color = defaultPlatformIcons.default.color;
|
|
||||||
let theme = defaultPlatformIcons.default.theme;
|
|
||||||
|
|
||||||
if (defaultPlatformIcons.hasOwnProperty(type)) {
|
|
||||||
icon = defaultPlatformIcons[type].icon;
|
|
||||||
color = defaultPlatformIcons[type].color;
|
|
||||||
theme = defaultPlatformIcons[type].theme;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<span style={{ fontSize: 20, color: color, textAlign: 'center' }}>
|
|
||||||
<Icon type={icon} theme={theme} />
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Owner',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'owner',
|
|
||||||
render: enrolmentInfo => enrolmentInfo.owner,
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Ownership',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'ownership',
|
|
||||||
render: enrolmentInfo => enrolmentInfo.ownership,
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Status',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'status',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: enrolmentInfo => {
|
|
||||||
const status = enrolmentInfo.status.toLowerCase();
|
|
||||||
let color = '#f9ca24';
|
|
||||||
switch (status) {
|
|
||||||
case 'active':
|
|
||||||
color = '#badc58';
|
|
||||||
break;
|
|
||||||
case 'created':
|
|
||||||
color = '#6ab04c';
|
|
||||||
break;
|
|
||||||
case 'removed':
|
|
||||||
color = '#ff7979';
|
|
||||||
break;
|
|
||||||
case 'inactive':
|
|
||||||
color = '#f9ca24';
|
|
||||||
break;
|
|
||||||
case 'blocked':
|
|
||||||
color = '#636e72';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return <Tag color={color}>{status}</Tag>;
|
|
||||||
},
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Last Updated',
|
|
||||||
dataIndex: 'enrolmentInfo',
|
|
||||||
key: 'dateOfLastUpdate',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: data => {
|
|
||||||
const { dateOfLastUpdate } = data;
|
|
||||||
const timeAgoString = getTimeAgo(dateOfLastUpdate);
|
|
||||||
return (
|
|
||||||
<Tooltip title={new Date(dateOfLastUpdate).toString()}>
|
|
||||||
{timeAgoString}
|
|
||||||
</Tooltip>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
// todo add filtering options
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const getTimeAgo = time => {
|
|
||||||
const timeAgo = new TimeAgo('en-US');
|
|
||||||
return timeAgo.format(time);
|
|
||||||
};
|
|
||||||
|
|
||||||
class EncryptedDeviceTable extends React.Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
config = this.props.context;
|
|
||||||
TimeAgo.addLocale(en);
|
|
||||||
this.state = {
|
|
||||||
data: [],
|
|
||||||
pagination: {},
|
|
||||||
loading: false,
|
|
||||||
isEncrypted: true,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetch();
|
|
||||||
}
|
|
||||||
|
|
||||||
// fetch data from api
|
|
||||||
fetch = (params = {}) => {
|
|
||||||
const config = this.props.context;
|
|
||||||
this.setState({ loading: true });
|
|
||||||
// get current page
|
|
||||||
const currentPage = params.hasOwnProperty('page') ? params.page : 1;
|
|
||||||
|
|
||||||
const extraParams = {
|
|
||||||
offset: 10 * (currentPage - 1), // calculate the offset
|
|
||||||
limit: 10,
|
|
||||||
requireDeviceInfo: true,
|
|
||||||
isEncrypted: this.state.isEncrypted,
|
|
||||||
};
|
|
||||||
|
|
||||||
const encodedExtraParams = Object.keys(extraParams)
|
|
||||||
.map(key => key + '=' + extraParams[key])
|
|
||||||
.join('&');
|
|
||||||
|
|
||||||
// send request to the invoker
|
|
||||||
axios
|
|
||||||
.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/encryption-status?' +
|
|
||||||
encodedExtraParams,
|
|
||||||
)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
const pagination = { ...this.state.pagination };
|
|
||||||
this.setState({
|
|
||||||
loading: false,
|
|
||||||
data: res.data.data.devices,
|
|
||||||
pagination,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
if (error.hasOwnProperty('response') && error.response.status === 401) {
|
|
||||||
// todo display a popop with error
|
|
||||||
message.error('You are not logged in');
|
|
||||||
window.location.href = window.location.origin + '/entgra/login';
|
|
||||||
} else {
|
|
||||||
notification.error({
|
|
||||||
message: 'There was a problem',
|
|
||||||
duration: 0,
|
|
||||||
description: 'Error occurred while trying to load devices.',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
this.setState({ loading: false });
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
handleTableChange = (pagination, filters, sorter) => {
|
|
||||||
const pager = { ...this.state.pagination };
|
|
||||||
pager.current = pagination.current;
|
|
||||||
this.setState({
|
|
||||||
pagination: pager,
|
|
||||||
});
|
|
||||||
this.fetch({
|
|
||||||
results: pagination.pageSize,
|
|
||||||
page: pagination.current,
|
|
||||||
sortField: sorter.field,
|
|
||||||
sortOrder: sorter.order,
|
|
||||||
...filters,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
handleModeChange = value => {
|
|
||||||
this.setState(
|
|
||||||
{
|
|
||||||
isEncrypted: value.target.value,
|
|
||||||
},
|
|
||||||
this.fetch,
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { data, pagination, loading } = this.state;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<Radio.Group
|
|
||||||
onChange={this.handleModeChange}
|
|
||||||
defaultValue={'true'}
|
|
||||||
style={{ marginBottom: 8, marginRight: 5 }}
|
|
||||||
>
|
|
||||||
<Radio.Button value={'true'}>Enabled Devices</Radio.Button>
|
|
||||||
<Radio.Button value={'false'}>Disabled Devices</Radio.Button>
|
|
||||||
</Radio.Group>
|
|
||||||
<div style={{ backgroundColor: '#ffffff', borderRadius: 5 }}>
|
|
||||||
<Table
|
|
||||||
columns={columns}
|
|
||||||
rowKey={record =>
|
|
||||||
record.deviceIdentifier +
|
|
||||||
record.enrolmentInfo.owner +
|
|
||||||
record.enrolmentInfo.ownership
|
|
||||||
}
|
|
||||||
dataSource={data}
|
|
||||||
pagination={{
|
|
||||||
...pagination,
|
|
||||||
size: 'small',
|
|
||||||
// position: "top",
|
|
||||||
showTotal: (total, range) =>
|
|
||||||
`showing ${range[0]}-${range[1]} of ${total} devices`,
|
|
||||||
// showQuickJumper: true
|
|
||||||
}}
|
|
||||||
loading={loading}
|
|
||||||
onChange={this.handleTableChange}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(EncryptedDeviceTable);
|
|
@ -1,59 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { PageHeader, Breadcrumb, Icon } from 'antd';
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
import EncryptedDeviceTable from './components/EncryptedDeviceTable/EncryptedDevicesTable';
|
|
||||||
|
|
||||||
class EncryptionStatus extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
}
|
|
||||||
render() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/devices">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/reports">Reports</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>Encryption Status</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap">
|
|
||||||
<h3>Encryption Status Report</h3>
|
|
||||||
</div>
|
|
||||||
<EncryptedDeviceTable />
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default EncryptionStatus;
|
|
@ -1,252 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { PageHeader, Breadcrumb, Icon, Radio, Popover, Button } from 'antd';
|
|
||||||
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
import { withConfigContext } from '../../../../../../components/ConfigContext';
|
|
||||||
import axios from 'axios';
|
|
||||||
import DateRangePicker from '../../components/DateRangePicker';
|
|
||||||
import moment from 'moment';
|
|
||||||
import { Chart, Geom, Axis, Tooltip, Legend } from 'bizcharts';
|
|
||||||
import DataSet from '@antv/data-set';
|
|
||||||
import { handleApiError } from '../../../../../../services/utils/errorHandler';
|
|
||||||
|
|
||||||
class EnrollmentTypeReport extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
this.state = {
|
|
||||||
paramsObject: {
|
|
||||||
from: moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
to: moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
},
|
|
||||||
data: [],
|
|
||||||
fields: [],
|
|
||||||
durationMode: 'weekly',
|
|
||||||
visible: false,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchData();
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDurationModeChange = e => {
|
|
||||||
const durationMode = e.target.value;
|
|
||||||
switch (durationMode) {
|
|
||||||
case 'daily':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment().format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'weekly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'monthly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(29, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.setState({ durationMode });
|
|
||||||
};
|
|
||||||
|
|
||||||
handlePopoverVisibleChange = visible => {
|
|
||||||
this.setState({ visible });
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get modified value from datepicker and set it to paramsObject
|
|
||||||
updateDurationValue = (modifiedFromDate, modifiedToDate) => {
|
|
||||||
let tempParamObj = this.state.paramsObject;
|
|
||||||
tempParamObj.from = modifiedFromDate;
|
|
||||||
tempParamObj.to = modifiedToDate;
|
|
||||||
this.setState({ paramsObject: tempParamObj });
|
|
||||||
this.fetchData();
|
|
||||||
};
|
|
||||||
|
|
||||||
// Call count APIs and get count for given parameters, then create data object to build pie chart
|
|
||||||
fetchData = () => {
|
|
||||||
this.setState({ loading: true });
|
|
||||||
|
|
||||||
const { paramsObject } = this.state;
|
|
||||||
const config = this.props.context;
|
|
||||||
|
|
||||||
const encodedExtraParams = Object.keys(paramsObject)
|
|
||||||
.map(key => key + '=' + paramsObject[key])
|
|
||||||
.join('&');
|
|
||||||
|
|
||||||
axios
|
|
||||||
.all([
|
|
||||||
axios.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/count?ownership=BYOD&' +
|
|
||||||
encodedExtraParams,
|
|
||||||
'BYOD',
|
|
||||||
),
|
|
||||||
axios.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/count?ownership=COPE&' +
|
|
||||||
encodedExtraParams,
|
|
||||||
'COPE',
|
|
||||||
),
|
|
||||||
])
|
|
||||||
.then(res => {
|
|
||||||
let keys = Object.keys(res[0].data.data);
|
|
||||||
let byod = res[0].data.data;
|
|
||||||
let cope = res[1].data.data;
|
|
||||||
if (Object.keys(byod).length != 0) {
|
|
||||||
byod.name = 'BYOD';
|
|
||||||
cope.name = 'COPE';
|
|
||||||
}
|
|
||||||
|
|
||||||
const finalData = [byod, cope];
|
|
||||||
|
|
||||||
this.setState({
|
|
||||||
data: finalData,
|
|
||||||
fields: keys,
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
handleApiError(
|
|
||||||
error,
|
|
||||||
'Error occurred while trying to get device count.',
|
|
||||||
);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { durationMode } = this.state;
|
|
||||||
|
|
||||||
const ds = new DataSet();
|
|
||||||
const dv = ds.createView().source(this.state.data);
|
|
||||||
dv.transform({
|
|
||||||
type: 'fold',
|
|
||||||
fields: this.state.fields,
|
|
||||||
key: 'Time',
|
|
||||||
value: 'Number of Devices',
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/reports">Reports</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>Device Enrollment Type Report</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap" style={{ marginBottom: '10px' }}>
|
|
||||||
<h3>Device Enrollment Type Report</h3>
|
|
||||||
<Radio.Group
|
|
||||||
onChange={this.handleDurationModeChange}
|
|
||||||
defaultValue={'weekly'}
|
|
||||||
value={durationMode}
|
|
||||||
style={{ marginBottom: 8, marginRight: 5 }}
|
|
||||||
>
|
|
||||||
<Radio.Button value={'daily'}>Today</Radio.Button>
|
|
||||||
<Radio.Button value={'weekly'}>Last Week</Radio.Button>
|
|
||||||
<Radio.Button value={'monthly'}>Last Month</Radio.Button>
|
|
||||||
</Radio.Group>
|
|
||||||
|
|
||||||
<Popover
|
|
||||||
trigger="hover"
|
|
||||||
content={
|
|
||||||
<div>
|
|
||||||
<DateRangePicker
|
|
||||||
updateDurationValue={this.updateDurationValue}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
visible={this.state.visible}
|
|
||||||
onVisibleChange={this.handlePopoverVisibleChange}
|
|
||||||
>
|
|
||||||
<Button style={{ marginRight: 10 }}>Custom Date</Button>
|
|
||||||
</Popover>
|
|
||||||
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: '#ffffff',
|
|
||||||
borderRadius: 5,
|
|
||||||
marginTop: 10,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Chart height={400} data={dv} forceFit>
|
|
||||||
<Axis name="Time" />
|
|
||||||
<Axis name="Number of Devices" />
|
|
||||||
<Legend />
|
|
||||||
<Tooltip
|
|
||||||
crosshairs={{
|
|
||||||
type: 'y',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Geom
|
|
||||||
type="interval"
|
|
||||||
position="Time*Number of Devices"
|
|
||||||
color={'name'}
|
|
||||||
adjust={[
|
|
||||||
{
|
|
||||||
type: 'dodge',
|
|
||||||
marginRatio: 1 / 32,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</Chart>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(EnrollmentTypeReport);
|
|
@ -1,255 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { PageHeader, Breadcrumb, Icon, Radio, Popover, Button } from 'antd';
|
|
||||||
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
import { withConfigContext } from '../../../../../../components/ConfigContext';
|
|
||||||
import axios from 'axios';
|
|
||||||
import DateRangePicker from '../../components/DateRangePicker';
|
|
||||||
import moment from 'moment';
|
|
||||||
import { Chart, Geom, Axis, Tooltip, Legend } from 'bizcharts';
|
|
||||||
import DataSet from '@antv/data-set';
|
|
||||||
import { handleApiError } from '../../../../../../services/utils/errorHandler';
|
|
||||||
|
|
||||||
class EnrollmentsVsUnenrollmentsReport extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
this.state = {
|
|
||||||
paramsObject: {
|
|
||||||
from: moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
to: moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
},
|
|
||||||
data: [],
|
|
||||||
fields: [],
|
|
||||||
durationMode: 'weekly',
|
|
||||||
visible: false,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchData();
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDurationModeChange = e => {
|
|
||||||
const durationMode = e.target.value;
|
|
||||||
switch (durationMode) {
|
|
||||||
case 'daily':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment().format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'weekly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'monthly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(29, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.setState({ durationMode });
|
|
||||||
};
|
|
||||||
|
|
||||||
handlePopoverVisibleChange = visible => {
|
|
||||||
this.setState({ visible });
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get modified value from datepicker and set it to paramsObject
|
|
||||||
updateDurationValue = (modifiedFromDate, modifiedToDate) => {
|
|
||||||
let tempParamObj = this.state.paramsObject;
|
|
||||||
tempParamObj.from = modifiedFromDate;
|
|
||||||
tempParamObj.to = modifiedToDate;
|
|
||||||
this.setState({ paramsObject: tempParamObj });
|
|
||||||
this.fetchData();
|
|
||||||
};
|
|
||||||
|
|
||||||
// Call count APIs and get count for given parameters, then create data object to build pie chart
|
|
||||||
fetchData = () => {
|
|
||||||
this.setState({ loading: true });
|
|
||||||
|
|
||||||
const { paramsObject } = this.state;
|
|
||||||
const config = this.props.context;
|
|
||||||
|
|
||||||
const encodedExtraParams = Object.keys(paramsObject)
|
|
||||||
.map(key => key + '=' + paramsObject[key])
|
|
||||||
.join('&');
|
|
||||||
|
|
||||||
axios
|
|
||||||
.all([
|
|
||||||
axios.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/count?status=ACTIVE&status=INACTIVE&' +
|
|
||||||
encodedExtraParams,
|
|
||||||
'Enrollments',
|
|
||||||
),
|
|
||||||
axios.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/reports/count?status=REMOVED&' +
|
|
||||||
encodedExtraParams,
|
|
||||||
'Unenrollments',
|
|
||||||
),
|
|
||||||
])
|
|
||||||
.then(res => {
|
|
||||||
let keys = Object.keys(res[0].data.data);
|
|
||||||
let enrollments = res[0].data.data;
|
|
||||||
let unenrollments = res[1].data.data;
|
|
||||||
if (Object.keys(enrollments).length != 0) {
|
|
||||||
enrollments.name = 'Enrollments';
|
|
||||||
unenrollments.name = 'Unenrollments';
|
|
||||||
}
|
|
||||||
|
|
||||||
const finalData = [enrollments, unenrollments];
|
|
||||||
|
|
||||||
this.setState({
|
|
||||||
data: finalData,
|
|
||||||
fields: keys,
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
handleApiError(
|
|
||||||
error,
|
|
||||||
'Error occurred while trying to get device count.',
|
|
||||||
);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { durationMode } = this.state;
|
|
||||||
|
|
||||||
const ds = new DataSet();
|
|
||||||
const dv = ds.createView().source(this.state.data);
|
|
||||||
dv.transform({
|
|
||||||
type: 'fold',
|
|
||||||
fields: this.state.fields,
|
|
||||||
key: 'Time',
|
|
||||||
value: 'Number of Devices',
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/reports">Reports</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
Enrollments vs Unenrollments Report
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap" style={{ marginBottom: '10px' }}>
|
|
||||||
<h3>Enrollments vs Unenrollments Report</h3>
|
|
||||||
|
|
||||||
<Radio.Group
|
|
||||||
onChange={this.handleDurationModeChange}
|
|
||||||
defaultValue={'weekly'}
|
|
||||||
value={durationMode}
|
|
||||||
style={{ marginBottom: 8, marginRight: 5 }}
|
|
||||||
>
|
|
||||||
<Radio.Button value={'daily'}>Today</Radio.Button>
|
|
||||||
<Radio.Button value={'weekly'}>Last Week</Radio.Button>
|
|
||||||
<Radio.Button value={'monthly'}>Last Month</Radio.Button>
|
|
||||||
</Radio.Group>
|
|
||||||
|
|
||||||
<Popover
|
|
||||||
trigger="hover"
|
|
||||||
content={
|
|
||||||
<div>
|
|
||||||
<DateRangePicker
|
|
||||||
updateDurationValue={this.updateDurationValue}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
visible={this.state.visible}
|
|
||||||
onVisibleChange={this.handlePopoverVisibleChange}
|
|
||||||
>
|
|
||||||
<Button style={{ marginRight: 10 }}>Custom Date</Button>
|
|
||||||
</Popover>
|
|
||||||
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: '#ffffff',
|
|
||||||
borderRadius: 5,
|
|
||||||
marginTop: 10,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Chart height={400} data={dv} forceFit>
|
|
||||||
<Axis name="Time" />
|
|
||||||
<Axis name="Number of Devices" />
|
|
||||||
<Legend />
|
|
||||||
<Tooltip
|
|
||||||
crosshairs={{
|
|
||||||
type: 'y',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Geom
|
|
||||||
type="interval"
|
|
||||||
position="Time*Number of Devices"
|
|
||||||
color={'name'}
|
|
||||||
adjust={[
|
|
||||||
{
|
|
||||||
type: 'dodge',
|
|
||||||
marginRatio: 1 / 32,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</Chart>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(EnrollmentsVsUnenrollmentsReport);
|
|
@ -1,183 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import axios from 'axios';
|
|
||||||
import {
|
|
||||||
PageHeader,
|
|
||||||
Breadcrumb,
|
|
||||||
Icon,
|
|
||||||
Button,
|
|
||||||
Select,
|
|
||||||
message,
|
|
||||||
notification,
|
|
||||||
} from 'antd';
|
|
||||||
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
import { withConfigContext } from '../../../../../../components/ConfigContext';
|
|
||||||
import DeviceTable from '../../components/DevicesTable';
|
|
||||||
|
|
||||||
let config = null;
|
|
||||||
const { Option } = Select;
|
|
||||||
let { typeSelected, versionSelected } = false;
|
|
||||||
|
|
||||||
class OutdatedOSversionReport extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
config = this.props.context;
|
|
||||||
|
|
||||||
this.state = {
|
|
||||||
deviceType: null,
|
|
||||||
osVersion: null,
|
|
||||||
apiURL: null,
|
|
||||||
visible: false,
|
|
||||||
supportedOsVersions: [],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
onDeviceTypeChange = value => {
|
|
||||||
typeSelected = true;
|
|
||||||
this.setState({ deviceType: value });
|
|
||||||
this.getSupportedOsVersions(value);
|
|
||||||
};
|
|
||||||
|
|
||||||
onOSVersionChange = value => {
|
|
||||||
versionSelected = true;
|
|
||||||
this.setState({ osVersion: value });
|
|
||||||
};
|
|
||||||
|
|
||||||
onClickGenerateButton = () => {
|
|
||||||
const { osVersion, deviceType } = this.state;
|
|
||||||
if (osVersion && deviceType != null) {
|
|
||||||
let apiURL =
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
`/reports/expired-devices/${deviceType}?osVersion=${osVersion}&`;
|
|
||||||
this.setState({ apiURL });
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
getSupportedOsVersions = deviceType => {
|
|
||||||
const config = this.props.context;
|
|
||||||
axios
|
|
||||||
.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
`/admin/device-types/${deviceType}/versions`,
|
|
||||||
)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
let supportedOsVersions = JSON.parse(res.data.data);
|
|
||||||
this.setState({
|
|
||||||
supportedOsVersions,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
if (error.hasOwnProperty('response') && error.response.status === 401) {
|
|
||||||
message.error('You are not logged in');
|
|
||||||
window.location.href = window.location.origin + '/entgra/login';
|
|
||||||
} else {
|
|
||||||
notification.error({
|
|
||||||
message: 'There was a problem',
|
|
||||||
duration: 0,
|
|
||||||
description: 'Error occurred while trying to load OS Versions.',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { apiURL, supportedOsVersions } = this.state;
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/reports">Reports</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>Outdated OS Version</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap" style={{ marginBottom: '10px' }}>
|
|
||||||
<h3>Outdated OS Version Report</h3>
|
|
||||||
<p>
|
|
||||||
This report displays devices with an OS Version below the
|
|
||||||
specified version.
|
|
||||||
</p>
|
|
||||||
<div className="wrap" style={{ marginBottom: '10px' }}>
|
|
||||||
<Select
|
|
||||||
showSearch
|
|
||||||
style={{ width: 200, marginLeft: '10px' }}
|
|
||||||
placeholder="Select a Device type"
|
|
||||||
onChange={this.onDeviceTypeChange}
|
|
||||||
>
|
|
||||||
{config.supportedOStypes.map(data => (
|
|
||||||
<Option value={data.name} key={data.id}>
|
|
||||||
{data.name}
|
|
||||||
</Option>
|
|
||||||
))}
|
|
||||||
</Select>
|
|
||||||
<Select
|
|
||||||
style={{ width: 200, marginLeft: '10px' }}
|
|
||||||
placeholder="
|
|
||||||
Select an OS Version"
|
|
||||||
onChange={this.onOSVersionChange}
|
|
||||||
>
|
|
||||||
{supportedOsVersions.map(data => {
|
|
||||||
return (
|
|
||||||
<Option key={data.versionName}>{data.versionName}</Option>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</Select>
|
|
||||||
{typeSelected && versionSelected ? (
|
|
||||||
<Button
|
|
||||||
type="primary"
|
|
||||||
onClick={this.onClickGenerateButton}
|
|
||||||
style={{ marginLeft: '10px' }}
|
|
||||||
>
|
|
||||||
Generate Report
|
|
||||||
</Button>
|
|
||||||
) : null}
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
id="table"
|
|
||||||
style={{ backgroundColor: '#ffffff', borderRadius: 5 }}
|
|
||||||
>
|
|
||||||
<DeviceTable apiUrl={apiURL} />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(OutdatedOSversionReport);
|
|
@ -1,128 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { Button, message, Modal, notification, List, Typography } from 'antd';
|
|
||||||
import axios from 'axios';
|
|
||||||
import { withConfigContext } from '../../../../../../../../../../components/ConfigContext';
|
|
||||||
|
|
||||||
class FeatureListModal extends React.Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.state = {
|
|
||||||
modalVisible: false,
|
|
||||||
name: '',
|
|
||||||
description: '',
|
|
||||||
features: [],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
fetchViolatedFeatures = id => {
|
|
||||||
const config = this.props.context;
|
|
||||||
|
|
||||||
axios
|
|
||||||
.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/devices/' +
|
|
||||||
id +
|
|
||||||
'/features',
|
|
||||||
)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
this.setState({
|
|
||||||
features: JSON.parse(res.data.data),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
if (error.hasOwnProperty('response') && error.response.status === 401) {
|
|
||||||
// todo display a popop with error
|
|
||||||
message.error('You are not logged in');
|
|
||||||
window.location.href = window.location.origin + '/entgra/login';
|
|
||||||
} else {
|
|
||||||
notification.error({
|
|
||||||
message: 'There was a problem',
|
|
||||||
duration: 0,
|
|
||||||
description:
|
|
||||||
'Error occurred while trying to load non compliance feature list.',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
openModal = () => {
|
|
||||||
this.fetchViolatedFeatures(this.props.id);
|
|
||||||
this.setState({
|
|
||||||
modalVisible: true,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
handleOk = e => {
|
|
||||||
this.setState({
|
|
||||||
modalVisible: false,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { features, modalVisible } = this.state;
|
|
||||||
|
|
||||||
let featureList = features.map(data => (
|
|
||||||
<List.Item key={data.featureCodes}>
|
|
||||||
<Typography.Text key={data.featureCodes} mark>
|
|
||||||
{data.featureCode}
|
|
||||||
</Typography.Text>
|
|
||||||
</List.Item>
|
|
||||||
));
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<div>
|
|
||||||
<Button
|
|
||||||
type="primary"
|
|
||||||
size={'small'}
|
|
||||||
icon="book"
|
|
||||||
onClick={this.openModal}
|
|
||||||
>
|
|
||||||
Violated Features
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<Modal
|
|
||||||
title="VIOLATED FEATURES"
|
|
||||||
width="40%"
|
|
||||||
visible={modalVisible}
|
|
||||||
onOk={this.handleOk}
|
|
||||||
footer={[
|
|
||||||
<Button key="submit" type="primary" onClick={this.handleOk}>
|
|
||||||
OK
|
|
||||||
</Button>,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<List size="large" bordered>
|
|
||||||
{featureList}
|
|
||||||
</List>
|
|
||||||
</Modal>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(FeatureListModal);
|
|
@ -1,352 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import axios from 'axios';
|
|
||||||
import { Button, Icon, Table, Tooltip } from 'antd';
|
|
||||||
import TimeAgo from 'javascript-time-ago';
|
|
||||||
import moment from 'moment';
|
|
||||||
// Load locale-specific relative date/time formatting rules.
|
|
||||||
import en from 'javascript-time-ago/locale/en';
|
|
||||||
import { withConfigContext } from '../../../../../../../../components/ConfigContext';
|
|
||||||
import FeatureListModal from './components/FeatureListModal';
|
|
||||||
import { handleApiError } from '../../../../../../../../services/utils/errorHandler';
|
|
||||||
|
|
||||||
let config = null;
|
|
||||||
|
|
||||||
// Table columns for non compliant devices
|
|
||||||
const columnsNonCompliant = [
|
|
||||||
{
|
|
||||||
title: 'Device',
|
|
||||||
dataIndex: 'deviceName',
|
|
||||||
width: 100,
|
|
||||||
sorter: (a, b) => a.deviceName.localeCompare(b.deviceName),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Type',
|
|
||||||
dataIndex: 'deviceType',
|
|
||||||
key: 'type',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: type => {
|
|
||||||
const defaultPlatformIcons = config.defaultPlatformIcons;
|
|
||||||
let icon = defaultPlatformIcons.default.icon;
|
|
||||||
let color = defaultPlatformIcons.default.color;
|
|
||||||
let theme = defaultPlatformIcons.default.theme;
|
|
||||||
|
|
||||||
if (defaultPlatformIcons.hasOwnProperty(type)) {
|
|
||||||
icon = defaultPlatformIcons[type].icon;
|
|
||||||
color = defaultPlatformIcons[type].color;
|
|
||||||
theme = defaultPlatformIcons[type].theme;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<span style={{ fontSize: 20, color: color, textAlign: 'center' }}>
|
|
||||||
<Icon type={icon} theme={theme} />
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Owner',
|
|
||||||
dataIndex: 'owner',
|
|
||||||
key: 'owner',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Policy',
|
|
||||||
dataIndex: 'policyName',
|
|
||||||
key: 'policy',
|
|
||||||
sorter: (a, b) => a.policyName.localeCompare(b.policyName),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Last Failed Time',
|
|
||||||
dataIndex: 'lastFailedTime',
|
|
||||||
key: 'lastFailedTime',
|
|
||||||
render: data => {
|
|
||||||
if (data) {
|
|
||||||
return (
|
|
||||||
<Tooltip title={new Date(data).toString()}>
|
|
||||||
{moment(data).fromNow()}
|
|
||||||
</Tooltip>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return 'Not available';
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Last Success Time',
|
|
||||||
dataIndex: 'lastSucceededTime',
|
|
||||||
key: 'lastSucceededTime',
|
|
||||||
render: data => {
|
|
||||||
if (data) {
|
|
||||||
return (
|
|
||||||
<Tooltip title={new Date(data).toString()}>
|
|
||||||
{moment(data).fromNow()}
|
|
||||||
</Tooltip>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return 'Not available';
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Attempts',
|
|
||||||
dataIndex: 'attempts',
|
|
||||||
key: 'attempts',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Violated Features',
|
|
||||||
dataIndex: 'id',
|
|
||||||
key: 'violated_features',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: id => <FeatureListModal id={id} />,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Device Details',
|
|
||||||
dataIndex: 'id',
|
|
||||||
key: 'device_details',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: id => (
|
|
||||||
<Button type="primary" size={'small'} icon="book">
|
|
||||||
Device Details
|
|
||||||
</Button>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// Table columns for compliant devices
|
|
||||||
const columnsCompliant = [
|
|
||||||
{
|
|
||||||
title: 'Device',
|
|
||||||
dataIndex: 'deviceName',
|
|
||||||
width: 100,
|
|
||||||
sorter: (a, b) => a.deviceName.localeCompare(b.deviceName),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Type',
|
|
||||||
dataIndex: 'deviceType',
|
|
||||||
key: 'type',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: type => {
|
|
||||||
const defaultPlatformIcons = config.defaultPlatformIcons;
|
|
||||||
let icon = defaultPlatformIcons.default.icon;
|
|
||||||
let color = defaultPlatformIcons.default.color;
|
|
||||||
let theme = defaultPlatformIcons.default.theme;
|
|
||||||
|
|
||||||
if (defaultPlatformIcons.hasOwnProperty(type)) {
|
|
||||||
icon = defaultPlatformIcons[type].icon;
|
|
||||||
color = defaultPlatformIcons[type].color;
|
|
||||||
theme = defaultPlatformIcons[type].theme;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<span style={{ fontSize: 20, color: color, textAlign: 'center' }}>
|
|
||||||
<Icon type={icon} theme={theme} />
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Owner',
|
|
||||||
dataIndex: 'owner',
|
|
||||||
key: 'owner',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Policy',
|
|
||||||
dataIndex: 'policyName',
|
|
||||||
key: 'policy',
|
|
||||||
sorter: (a, b) => a.policyName.localeCompare(b.policyName),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Last Success Time',
|
|
||||||
dataIndex: 'lastSucceededTime',
|
|
||||||
key: 'lastSucceededTime',
|
|
||||||
render: data => {
|
|
||||||
if (data) {
|
|
||||||
return (
|
|
||||||
<Tooltip title={new Date(data).toString()}>
|
|
||||||
{moment(data).fromNow()}
|
|
||||||
</Tooltip>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return 'Not available';
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Attempts',
|
|
||||||
dataIndex: 'attempts',
|
|
||||||
key: 'attempts',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Device Details',
|
|
||||||
dataIndex: 'id',
|
|
||||||
key: 'device_details',
|
|
||||||
// eslint-disable-next-line react/display-name
|
|
||||||
render: id => (
|
|
||||||
<Button type="primary" size={'small'} icon="book">
|
|
||||||
Device Details
|
|
||||||
</Button>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
class PolicyDevicesTable extends React.Component {
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
config = this.props.context;
|
|
||||||
TimeAgo.addLocale(en);
|
|
||||||
this.state = {
|
|
||||||
data: [],
|
|
||||||
pagination: {},
|
|
||||||
loading: false,
|
|
||||||
selectedRows: [],
|
|
||||||
paramsObj: {},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
rowSelection = {
|
|
||||||
onChange: (selectedRowKeys, selectedRows) => {
|
|
||||||
this.setState({
|
|
||||||
selectedRows: selectedRows,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchData();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Rerender component when parameters change
|
|
||||||
componentDidUpdate(prevProps, prevState, snapshot) {
|
|
||||||
if (
|
|
||||||
prevProps.isCompliant !== this.props.isCompliant ||
|
|
||||||
prevProps.policyReportData !== this.props.policyReportData
|
|
||||||
) {
|
|
||||||
this.fetchData();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// fetch data from api
|
|
||||||
fetchData = (params = {}) => {
|
|
||||||
// const policyReportData = this.props;
|
|
||||||
this.setState({ loading: true });
|
|
||||||
// get current page
|
|
||||||
const currentPage = params.hasOwnProperty('page') ? params.page : 1;
|
|
||||||
|
|
||||||
let extraParams;
|
|
||||||
|
|
||||||
if (this.props.policyReportData.policy) {
|
|
||||||
extraParams = {
|
|
||||||
policy: this.props.policyReportData.policy,
|
|
||||||
from: this.props.policyReportData.from,
|
|
||||||
to: this.props.policyReportData.to,
|
|
||||||
offset: 10 * (currentPage - 1), // calculate the offset
|
|
||||||
limit: 10,
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
extraParams = {
|
|
||||||
from: this.props.policyReportData.from,
|
|
||||||
to: this.props.policyReportData.to,
|
|
||||||
offset: 10 * (currentPage - 1), // calculate the offset
|
|
||||||
limit: 10,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const encodedExtraParams = Object.keys(extraParams)
|
|
||||||
.map(key => key + '=' + extraParams[key])
|
|
||||||
.join('&');
|
|
||||||
|
|
||||||
let apiUrl;
|
|
||||||
|
|
||||||
if (this.props.isCompliant) {
|
|
||||||
apiUrl =
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/devices/compliance/true?' +
|
|
||||||
encodedExtraParams;
|
|
||||||
} else {
|
|
||||||
apiUrl =
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/devices/compliance/false?' +
|
|
||||||
encodedExtraParams;
|
|
||||||
}
|
|
||||||
|
|
||||||
// send request to the invoker
|
|
||||||
axios
|
|
||||||
.get(apiUrl)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
const pagination = { ...this.state.pagination };
|
|
||||||
this.setState({
|
|
||||||
loading: false,
|
|
||||||
data: res.data.data,
|
|
||||||
pagination,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
handleApiError(error, 'Error occurred while trying to load devices.');
|
|
||||||
this.setState({ loading: false });
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
handleTableChange = (pagination, filters, sorter) => {
|
|
||||||
const pager = { ...this.state.pagination };
|
|
||||||
pager.current = pagination.current;
|
|
||||||
this.setState({
|
|
||||||
pagination: pager,
|
|
||||||
});
|
|
||||||
this.fetchData({
|
|
||||||
results: pagination.pageSize,
|
|
||||||
page: pagination.current,
|
|
||||||
sortField: sorter.field,
|
|
||||||
sortOrder: sorter.order,
|
|
||||||
...filters,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
let { data, pagination, loading } = this.state;
|
|
||||||
const { isCompliant } = this.props;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<Table
|
|
||||||
columns={isCompliant ? columnsCompliant : columnsNonCompliant}
|
|
||||||
rowKey={record => record.id}
|
|
||||||
dataSource={data.complianceData}
|
|
||||||
pagination={{
|
|
||||||
...pagination,
|
|
||||||
size: 'small',
|
|
||||||
// position: "top",
|
|
||||||
total: data.count,
|
|
||||||
showTotal: (total, range) =>
|
|
||||||
`showing ${range[0]}-${range[1]} of ${total} devices`,
|
|
||||||
// showQuickJumper: true
|
|
||||||
}}
|
|
||||||
loading={loading}
|
|
||||||
onChange={this.handleTableChange}
|
|
||||||
rowSelection={this.rowSelection}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(PolicyDevicesTable);
|
|
@ -1,111 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { Select, message, notification } from 'antd';
|
|
||||||
|
|
||||||
import { withConfigContext } from '../../../../../../../../components/ConfigContext';
|
|
||||||
import axios from 'axios';
|
|
||||||
|
|
||||||
const { Option } = Select;
|
|
||||||
|
|
||||||
class SelectPolicyDropDown extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
this.state = {
|
|
||||||
isOpen: false,
|
|
||||||
currentPage: 1,
|
|
||||||
data: [],
|
|
||||||
pagination: {},
|
|
||||||
loading: false,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.fetchPolicies();
|
|
||||||
}
|
|
||||||
|
|
||||||
// fetch data from api
|
|
||||||
fetchPolicies = (params = {}) => {
|
|
||||||
const config = this.props.context;
|
|
||||||
this.setState({ loading: true });
|
|
||||||
|
|
||||||
// send request to the invokerss
|
|
||||||
axios
|
|
||||||
.get(
|
|
||||||
window.location.origin +
|
|
||||||
config.serverConfig.invoker.uri +
|
|
||||||
config.serverConfig.invoker.deviceMgt +
|
|
||||||
'/policies',
|
|
||||||
)
|
|
||||||
.then(res => {
|
|
||||||
if (res.status === 200) {
|
|
||||||
this.setState({
|
|
||||||
loading: false,
|
|
||||||
data: res.data.data.policies,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
if (error.hasOwnProperty('response') && error.response.status === 401) {
|
|
||||||
// todo display a popop with error
|
|
||||||
message.error('You are not logged in');
|
|
||||||
window.location.href = window.location.origin + '/entgra/login';
|
|
||||||
} else {
|
|
||||||
notification.error({
|
|
||||||
message: 'There was a problem',
|
|
||||||
duration: 0,
|
|
||||||
description: 'Error occurred while trying to load policies.',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setState({ loading: false });
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
handleChange = value => {
|
|
||||||
this.props.getPolicyId(value);
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
let item;
|
|
||||||
if (this.state.data) {
|
|
||||||
item = this.state.data.map(data => (
|
|
||||||
<Select.Option value={data.id} key={data.id}>
|
|
||||||
{data.profile.profileName}
|
|
||||||
</Select.Option>
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Select
|
|
||||||
defaultValue="all"
|
|
||||||
style={{ width: 200 }}
|
|
||||||
onChange={this.handleChange}
|
|
||||||
>
|
|
||||||
<Option value="all">All</Option>
|
|
||||||
{item}
|
|
||||||
</Select>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(SelectPolicyDropDown);
|
|
@ -1,198 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (pvt) Ltd. licenses this file to you under the Apache License,
|
|
||||||
* Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import { PageHeader, Breadcrumb, Icon, Radio, Popover, Button } from 'antd';
|
|
||||||
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
import { withConfigContext } from '../../../../../../components/ConfigContext';
|
|
||||||
import PolicyDevicesTable from './components/PolicyDevicesTable';
|
|
||||||
import moment from 'moment';
|
|
||||||
import DateRangePicker from '../../components/DateRangePicker';
|
|
||||||
import SelectPolicyDropDown from './components/SelectPolicyDropDown';
|
|
||||||
|
|
||||||
// eslint-disable-next-line no-unused-vars
|
|
||||||
let config = null;
|
|
||||||
|
|
||||||
class PolicyReport extends React.Component {
|
|
||||||
routes;
|
|
||||||
|
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.routes = props.routes;
|
|
||||||
config = this.props.context;
|
|
||||||
this.state = {
|
|
||||||
durationMode: 'weekly',
|
|
||||||
isCompliant: true,
|
|
||||||
// This object contains parameters which pass into API endpoint
|
|
||||||
policyReportData: {
|
|
||||||
from: moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
to: moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
},
|
|
||||||
visible: false,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
handleModeChange = e => {
|
|
||||||
const isCompliant = e.target.value;
|
|
||||||
this.setState({ isCompliant });
|
|
||||||
};
|
|
||||||
|
|
||||||
handleDurationModeChange = e => {
|
|
||||||
const durationMode = e.target.value;
|
|
||||||
switch (durationMode) {
|
|
||||||
case 'daily':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment().format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'weekly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(6, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'monthly':
|
|
||||||
this.updateDurationValue(
|
|
||||||
moment()
|
|
||||||
.subtract(29, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
moment()
|
|
||||||
.add(1, 'days')
|
|
||||||
.format('YYYY-MM-DD'),
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.setState({ durationMode });
|
|
||||||
};
|
|
||||||
|
|
||||||
hidePopover = () => {
|
|
||||||
this.setState({
|
|
||||||
visible: false,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
handlePopoverVisibleChange = visible => {
|
|
||||||
this.setState({ visible });
|
|
||||||
};
|
|
||||||
|
|
||||||
getPolicyId = policyId => {
|
|
||||||
let tempParamObj = this.state.policyReportData;
|
|
||||||
if (policyId === 'all') {
|
|
||||||
delete tempParamObj.policy;
|
|
||||||
} else {
|
|
||||||
tempParamObj.policy = policyId;
|
|
||||||
}
|
|
||||||
this.setState({ policyReportData: tempParamObj });
|
|
||||||
};
|
|
||||||
|
|
||||||
// Get modified value from datepicker and set it to paramsObject
|
|
||||||
updateDurationValue = (modifiedFromDate, modifiedToDate) => {
|
|
||||||
let tempParamObj = this.state.policyReportData;
|
|
||||||
tempParamObj.from = modifiedFromDate;
|
|
||||||
tempParamObj.to = modifiedToDate;
|
|
||||||
this.setState({ policyReportData: tempParamObj });
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { isCompliant, durationMode } = this.state;
|
|
||||||
const policyData = { ...this.state.policyReportData };
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<PageHeader style={{ paddingTop: 0 }}>
|
|
||||||
<Breadcrumb style={{ paddingBottom: 16 }}>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra">
|
|
||||||
<Icon type="home" /> Home
|
|
||||||
</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>
|
|
||||||
<Link to="/entgra/reports">Reports</Link>
|
|
||||||
</Breadcrumb.Item>
|
|
||||||
<Breadcrumb.Item>Policy Compliance Report</Breadcrumb.Item>
|
|
||||||
</Breadcrumb>
|
|
||||||
<div className="wrap" style={{ marginBottom: '10px' }}>
|
|
||||||
<h3>Policy Report</h3>
|
|
||||||
|
|
||||||
<Radio.Group
|
|
||||||
onChange={this.handleModeChange}
|
|
||||||
defaultValue={true}
|
|
||||||
value={isCompliant}
|
|
||||||
style={{ marginBottom: 8, marginRight: 10 }}
|
|
||||||
>
|
|
||||||
<Radio.Button value={true}>Policy Compliant Devices</Radio.Button>
|
|
||||||
<Radio.Button value={false}>
|
|
||||||
Policy Non-Compliant Devices
|
|
||||||
</Radio.Button>
|
|
||||||
</Radio.Group>
|
|
||||||
|
|
||||||
<Radio.Group
|
|
||||||
onChange={this.handleDurationModeChange}
|
|
||||||
defaultValue={'weekly'}
|
|
||||||
value={durationMode}
|
|
||||||
style={{ marginBottom: 8, marginRight: 5 }}
|
|
||||||
>
|
|
||||||
<Radio.Button value={'daily'}>Today</Radio.Button>
|
|
||||||
<Radio.Button value={'weekly'}>Last Week</Radio.Button>
|
|
||||||
<Radio.Button value={'monthly'}>Last Month</Radio.Button>
|
|
||||||
</Radio.Group>
|
|
||||||
<Popover
|
|
||||||
trigger="hover"
|
|
||||||
content={
|
|
||||||
<div>
|
|
||||||
<DateRangePicker
|
|
||||||
updateDurationValue={this.updateDurationValue}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
visible={this.state.visible}
|
|
||||||
onVisibleChange={this.handlePopoverVisibleChange}
|
|
||||||
>
|
|
||||||
<Button style={{ marginRight: 10 }}>Custom Date</Button>
|
|
||||||
</Popover>
|
|
||||||
|
|
||||||
<SelectPolicyDropDown getPolicyId={this.getPolicyId} />
|
|
||||||
|
|
||||||
<div style={{ backgroundColor: '#ffffff', borderRadius: 5 }}>
|
|
||||||
<PolicyDevicesTable
|
|
||||||
policyReportData={policyData}
|
|
||||||
isCompliant={isCompliant}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</PageHeader>
|
|
||||||
<div
|
|
||||||
style={{ background: '#f0f2f5', padding: 24, minHeight: 720 }}
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default withConfigContext(PolicyReport);
|
|
Loading…
Reference in new issue