|
|
|
@ -6,6 +6,7 @@ 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 "../../../../context/ConfigContext";
|
|
|
|
|
|
|
|
|
|
const {Text} = Typography;
|
|
|
|
|
const columns = [
|
|
|
|
|
{
|
|
|
|
@ -131,9 +132,8 @@ class DeviceInstall extends React.Component {
|
|
|
|
|
|
|
|
|
|
//send request to the invoker
|
|
|
|
|
axios.get(
|
|
|
|
|
window.location.origin+
|
|
|
|
|
+ config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/devices?" + encodedExtraParams,
|
|
|
|
|
|
|
|
|
|
window.location.origin + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt +
|
|
|
|
|
"/devices?" + encodedExtraParams,
|
|
|
|
|
).then(res => {
|
|
|
|
|
if (res.status === 200) {
|
|
|
|
|
const pagination = {...this.state.pagination};
|
|
|
|
@ -145,7 +145,8 @@ class DeviceInstall extends React.Component {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}).catch((error) => { console.log(error);
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
console.log(error);
|
|
|
|
|
if (error.hasOwnProperty("status") && error.response.status === 401) {
|
|
|
|
|
//todo display a popop with error
|
|
|
|
|
message.error('You are not logged in');
|
|
|
|
@ -216,7 +217,8 @@ class DeviceInstall extends React.Component {
|
|
|
|
|
scroll={{x: 1000}}
|
|
|
|
|
/>
|
|
|
|
|
<div style={{paddingTop: 10, textAlign: "right"}}>
|
|
|
|
|
<Button disabled={selectedRows.length===0} htmlType="button" type="primary" onClick={this.install}>
|
|
|
|
|
<Button disabled={selectedRows.length === 0} htmlType="button" type="primary"
|
|
|
|
|
onClick={this.install}>
|
|
|
|
|
Install
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|