|
|
@ -118,9 +118,9 @@ const columns = [
|
|
|
|
key: 'action',
|
|
|
|
key: 'action',
|
|
|
|
render: () => (
|
|
|
|
render: () => (
|
|
|
|
<span>
|
|
|
|
<span>
|
|
|
|
<a><Icon type="edit" /></a>
|
|
|
|
<a><Icon type="edit"/></a>
|
|
|
|
<Divider type="vertical" />
|
|
|
|
<Divider type="vertical"/>
|
|
|
|
<a><Text type="danger"><Icon type="delete" /></Text></a>
|
|
|
|
<a><Text type="danger"><Icon type="delete"/></Text></a>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -135,7 +135,7 @@ const getTimeAgo = (time) => {
|
|
|
|
class DeviceTable extends React.Component {
|
|
|
|
class DeviceTable extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
super(props);
|
|
|
|
config = this.props.context;
|
|
|
|
config = this.props.context;
|
|
|
|
TimeAgo.addLocale(en);
|
|
|
|
TimeAgo.addLocale(en);
|
|
|
|
this.state = {
|
|
|
|
this.state = {
|
|
|
|
data: [],
|
|
|
|
data: [],
|
|
|
@ -173,7 +173,7 @@ class DeviceTable extends React.Component {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const encodedExtraParams = Object.keys(extraParams)
|
|
|
|
const encodedExtraParams = Object.keys(extraParams)
|
|
|
|
.map(key => key + '=' + extraParams[key]).join('&');
|
|
|
|
.map(key => key + '=' + extraParams[key]).join('&');
|
|
|
|
|
|
|
|
|
|
|
|
//send request to the invoker
|
|
|
|
//send request to the invoker
|
|
|
|
axios.get(
|
|
|
|
axios.get(
|
|
|
@ -216,21 +216,14 @@ class DeviceTable extends React.Component {
|
|
|
|
|
|
|
|
|
|
|
|
//send request to the invoker
|
|
|
|
//send request to the invoker
|
|
|
|
axios.put(
|
|
|
|
axios.put(
|
|
|
|
window.location.origin + config.serverConfig.invoker.uri +
|
|
|
|
window.location.origin + config.serverConfig.invoker.uri +
|
|
|
|
config.serverConfig.invoker.deviceMgt +
|
|
|
|
config.serverConfig.invoker.deviceMgt +
|
|
|
|
"/admin/devices/permanent-delete",
|
|
|
|
"/admin/devices/permanent-delete",
|
|
|
|
deviceData,
|
|
|
|
deviceData,
|
|
|
|
{ headers : {'Content-Type': 'application/json'}}
|
|
|
|
{headers: {'Content-Type': 'application/json'}}
|
|
|
|
|
|
|
|
|
|
|
|
).then(res => {
|
|
|
|
).then(res => {
|
|
|
|
if (res.status === 200) {
|
|
|
|
if (res.status === 200) {
|
|
|
|
this.fetch();
|
|
|
|
this.fetch();
|
|
|
|
const pagination = {...this.state.pagination};
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
|
|
|
|
loading: false,
|
|
|
|
|
|
|
|
data: res.data.data.devices,
|
|
|
|
|
|
|
|
pagination,
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).catch((error) => {
|
|
|
|
}).catch((error) => {
|
|
|
|
if (error.hasOwnProperty("response") && error.response.status === 401) {
|
|
|
|
if (error.hasOwnProperty("response") && error.response.status === 401) {
|
|
|
@ -239,16 +232,16 @@ class DeviceTable extends React.Component {
|
|
|
|
window.location.href = window.location.origin + '/entgra/login';
|
|
|
|
window.location.href = window.location.origin + '/entgra/login';
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
notification["error"]({
|
|
|
|
notification["error"]({
|
|
|
|
message: "There was a problem",
|
|
|
|
message: "There was a problem",
|
|
|
|
duration: 0,
|
|
|
|
duration: 0,
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
"Error occurred while trying to delete devices.",
|
|
|
|
"Error occurred while trying to delete devices.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.setState({loading: false});
|
|
|
|
this.setState({loading: false});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
handleTableChange = (pagination, filters, sorter) => {
|
|
|
|
handleTableChange = (pagination, filters, sorter) => {
|
|
|
|
const pager = {...this.state.pagination};
|
|
|
|
const pager = {...this.state.pagination};
|
|
|
@ -270,24 +263,26 @@ class DeviceTable extends React.Component {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<BulkActionBar
|
|
|
|
<BulkActionBar
|
|
|
|
deleteDevice={this.deleteDevice}
|
|
|
|
deleteDevice={this.deleteDevice}
|
|
|
|
selectedRows={this.state.selectedRows}/>
|
|
|
|
selectedRows={this.state.selectedRows}/>
|
|
|
|
<Table
|
|
|
|
<div>
|
|
|
|
columns={columns}
|
|
|
|
<Table
|
|
|
|
rowKey={record => (record.deviceIdentifier + record.enrolmentInfo.owner + record.enrolmentInfo.ownership)}
|
|
|
|
columns={columns}
|
|
|
|
dataSource={data}
|
|
|
|
rowKey={record => (record.deviceIdentifier + record.enrolmentInfo.owner + record.enrolmentInfo.ownership)}
|
|
|
|
pagination={{
|
|
|
|
dataSource={data}
|
|
|
|
...pagination,
|
|
|
|
pagination={{
|
|
|
|
size: "small",
|
|
|
|
...pagination,
|
|
|
|
// position: "top",
|
|
|
|
size: "small",
|
|
|
|
showTotal: (total, range) => `showing ${range[0]}-${range[1]} of ${total} devices`
|
|
|
|
// position: "top",
|
|
|
|
// showQuickJumper: true
|
|
|
|
showTotal: (total, range) => `showing ${range[0]}-${range[1]} of ${total} devices`
|
|
|
|
}}
|
|
|
|
// showQuickJumper: true
|
|
|
|
loading={loading}
|
|
|
|
}}
|
|
|
|
onChange={this.handleTableChange}
|
|
|
|
loading={loading}
|
|
|
|
rowSelection={this.rowSelection}
|
|
|
|
onChange={this.handleTableChange}
|
|
|
|
scroll={{x: 1000}}
|
|
|
|
rowSelection={this.rowSelection}
|
|
|
|
/>
|
|
|
|
scroll={{x: 1000}}
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|