|
|
@ -113,7 +113,7 @@ class DeviceInstall extends React.Component {
|
|
|
|
//fetch data from api
|
|
|
|
//fetch data from api
|
|
|
|
fetch = (params = {}) => {
|
|
|
|
fetch = (params = {}) => {
|
|
|
|
this.setState({loading: true});
|
|
|
|
this.setState({loading: true});
|
|
|
|
|
|
|
|
const {deviceType} = this.props;
|
|
|
|
// get current page
|
|
|
|
// get current page
|
|
|
|
const currentPage = (params.hasOwnProperty("page")) ? params.page : 1;
|
|
|
|
const currentPage = (params.hasOwnProperty("page")) ? params.page : 1;
|
|
|
|
|
|
|
|
|
|
|
@ -121,25 +121,16 @@ class DeviceInstall extends React.Component {
|
|
|
|
offset: 10 * (currentPage - 1), //calculate the offset
|
|
|
|
offset: 10 * (currentPage - 1), //calculate the offset
|
|
|
|
limit: 10,
|
|
|
|
limit: 10,
|
|
|
|
status: "ACTIVE",
|
|
|
|
status: "ACTIVE",
|
|
|
|
requireDeviceInfo: true
|
|
|
|
requireDeviceInfo: true,
|
|
|
|
|
|
|
|
type: deviceType
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// note: encode with '%26' not '&'
|
|
|
|
// note: encode with '%26' not '&'
|
|
|
|
const encodedExtraParams = Object.keys(extraParams).map(key => key + '=' + extraParams[key]).join('%26');
|
|
|
|
const encodedExtraParams = Object.keys(extraParams).map(key => key + '=' + extraParams[key]).join('&');
|
|
|
|
|
|
|
|
|
|
|
|
const parameters = {
|
|
|
|
|
|
|
|
method: "get",
|
|
|
|
|
|
|
|
'content-type': "application/json",
|
|
|
|
|
|
|
|
payload: "{}",
|
|
|
|
|
|
|
|
'api-endpoint': "/device-mgt/v1.0/devices?" + encodedExtraParams
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//url-encode parameters
|
|
|
|
|
|
|
|
const request = Object.keys(parameters).map(key => key + '=' + parameters[key]).join('&');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//send request to the invoker
|
|
|
|
//send request to the invoker
|
|
|
|
axios.get(
|
|
|
|
axios.get(
|
|
|
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"devices?" + encodedExtraParams,
|
|
|
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.deviceMgt+"/devices?" + encodedExtraParams,
|
|
|
|
|
|
|
|
|
|
|
|
).then(res => {
|
|
|
|
).then(res => {
|
|
|
|
if (res.status === 200) {
|
|
|
|
if (res.status === 200) {
|
|
|
|