mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix remaining api calls in APPM UI
This commit is contained in:
parent
ac817c61f7
commit
ef224a75dc
@ -15,7 +15,6 @@ class App extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
console.log(this.routes);
|
|
||||||
return (
|
return (
|
||||||
<Router>
|
<Router>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@ -30,6 +30,7 @@ class DetailedRating extends React.Component{
|
|||||||
}
|
}
|
||||||
|
|
||||||
getData = (type, uuid)=>{
|
getData = (type, uuid)=>{
|
||||||
|
console.log();
|
||||||
|
|
||||||
return axios.get(
|
return axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid+"/"+type+"-rating",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid+"/"+type+"-rating",
|
||||||
@ -38,7 +39,6 @@ class DetailedRating extends React.Component{
|
|||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let detailedRating = res.data.data;
|
let detailedRating = res.data.data;
|
||||||
console.log(type,uuid);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
detailedRating
|
detailedRating
|
||||||
})
|
})
|
||||||
@ -48,15 +48,12 @@ class DetailedRating extends React.Component{
|
|||||||
if (error.response.status === 401) {
|
if (error.response.status === 401) {
|
||||||
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort+'/publisher/login';
|
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort+'/publisher/login';
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(error);
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const detailedRating = this.state.detailedRating;
|
const detailedRating = this.state.detailedRating;
|
||||||
|
|
||||||
console.log(detailedRating);
|
|
||||||
|
|
||||||
if(detailedRating ==null){
|
if(detailedRating ==null){
|
||||||
return null;
|
return null;
|
||||||
@ -81,7 +78,6 @@ class DetailedRating extends React.Component{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(ratingBarPercentages);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Row className="d-rating">
|
<Row className="d-rating">
|
||||||
|
|||||||
@ -12,7 +12,6 @@ class AppDetailsDrawer extends React.Component {
|
|||||||
if (app == null) {
|
if (app == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
console.log(app);
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
|
|||||||
@ -113,8 +113,7 @@ class AppsTable extends React.Component {
|
|||||||
const data = {
|
const data = {
|
||||||
};
|
};
|
||||||
|
|
||||||
console.log(config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications?"+encodedExtraParams);
|
axios.post(
|
||||||
axios.post(
|
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications?"+encodedExtraParams,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.publisher+"/applications?"+encodedExtraParams,
|
||||||
data,
|
data,
|
||||||
{
|
{
|
||||||
@ -152,7 +151,6 @@ class AppsTable extends React.Component {
|
|||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
console.log("rendered");
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
<Table
|
<Table
|
||||||
|
|||||||
@ -26,7 +26,6 @@ class ConnectedListApps extends React.Component {
|
|||||||
|
|
||||||
//handler to show app drawer
|
//handler to show app drawer
|
||||||
showDrawer = (app) => {
|
showDrawer = (app) => {
|
||||||
console.log(app);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
isDrawerVisible: true,
|
isDrawerVisible: true,
|
||||||
selectedApp: app
|
selectedApp: app
|
||||||
@ -56,7 +55,7 @@ class ConnectedListApps extends React.Component {
|
|||||||
<Col span={18} style={{textAlign: "right"}}>
|
<Col span={18} style={{textAlign: "right"}}>
|
||||||
<Search
|
<Search
|
||||||
placeholder="input search text"
|
placeholder="input search text"
|
||||||
onSearch={value => console.log(value)}
|
// onSearch={value => console.log(value)}
|
||||||
style={{width: 200}}
|
style={{width: 200}}
|
||||||
/>
|
/>
|
||||||
</Col>
|
</Col>
|
||||||
|
|||||||
@ -62,8 +62,6 @@ class ConnectedLifecycleModal extends React.Component {
|
|||||||
handleSubmit = event => {
|
handleSubmit = event => {
|
||||||
this.setState({ loading: true });
|
this.setState({ loading: true });
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
console.log(this.reason);
|
|
||||||
console.log("uuid", this.props.uuid);
|
|
||||||
this.props.updateLifecycleState(this.props.uuid, this.props.nextState, this.reason.state.value)
|
this.props.updateLifecycleState(this.props.uuid, this.props.nextState, this.reason.state.value)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -72,7 +72,7 @@ class ReleaseView extends React.Component {
|
|||||||
<DetailedRating type="release" uuid={release.uuid}/>
|
<DetailedRating type="release" uuid={release.uuid}/>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
<Reviews uuid={release.uuid}/>
|
<Reviews type="release" uuid={release.uuid}/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -28,10 +28,10 @@ class Reviews extends React.Component {
|
|||||||
|
|
||||||
fetchData = (offset, limit, callback) => {
|
fetchData = (offset, limit, callback) => {
|
||||||
|
|
||||||
const {uuid} = this.props;
|
const {uuid, type} = this.props;
|
||||||
|
|
||||||
axios.get(
|
axios.get(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/app/"+uuid,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+type+"/"+uuid,
|
||||||
{
|
{
|
||||||
headers: {'X-Platform': config.serverConfig.platform}
|
headers: {'X-Platform': config.serverConfig.platform}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|||||||
@ -92,7 +92,7 @@ function connectNodes(nodeFrom, nodeTo) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function f() {
|
function f() {
|
||||||
console.log(1);
|
// console.log(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default LifeCycleGraph;
|
export default LifeCycleGraph;
|
||||||
@ -241,7 +241,6 @@ class ManageCategories extends React.Component {
|
|||||||
saveInputRef = input => (this.input = input);
|
saveInputRef = input => (this.input = input);
|
||||||
|
|
||||||
closeEditModal = e => {
|
closeEditModal = e => {
|
||||||
console.log(e);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
isEditModalVisible: false,
|
isEditModalVisible: false,
|
||||||
currentlyEditingId: null
|
currentlyEditingId: null
|
||||||
|
|||||||
@ -240,7 +240,6 @@ class ManageTags extends React.Component {
|
|||||||
saveInputRef = input => (this.input = input);
|
saveInputRef = input => (this.input = input);
|
||||||
|
|
||||||
closeEditModal = e => {
|
closeEditModal = e => {
|
||||||
console.log(e);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
isEditModalVisible: false,
|
isEditModalVisible: false,
|
||||||
currentlyEditingId: null
|
currentlyEditingId: null
|
||||||
|
|||||||
@ -98,7 +98,6 @@ class EditableTagGroup extends React.Component {
|
|||||||
|
|
||||||
handleClose = (removedTag) => {
|
handleClose = (removedTag) => {
|
||||||
const tags = this.state.tags.filter(tag => tag !== removedTag);
|
const tags = this.state.tags.filter(tag => tag !== removedTag);
|
||||||
console.log(tags);
|
|
||||||
this.setState({tags});
|
this.setState({tags});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,6 @@ import React from "react"
|
|||||||
|
|
||||||
class Step3 extends React.Component {
|
class Step3 extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
console.log("hhhoohh");
|
|
||||||
return (
|
return (
|
||||||
<p>tttoooeeee</p>
|
<p>tttoooeeee</p>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -41,7 +41,7 @@ class Apps extends React.Component {
|
|||||||
<Col span={6} offset={18}>
|
<Col span={6} offset={18}>
|
||||||
<Search
|
<Search
|
||||||
placeholder="search"
|
placeholder="search"
|
||||||
onSearch={value => console.log(value)}
|
// onSearch={value => console.log(value)}
|
||||||
style={{ width: 200}}
|
style={{ width: 200}}
|
||||||
/>
|
/>
|
||||||
<Button style={{margin:5}}>Advanced Search</Button>
|
<Button style={{margin:5}}>Advanced Search</Button>
|
||||||
|
|||||||
@ -53,14 +53,13 @@ class Release extends React.Component {
|
|||||||
|
|
||||||
//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.store + "/applications/" + uuid,
|
config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.publisher + "/applications/release/"+ uuid,
|
||||||
{
|
{
|
||||||
headers: {'X-Platform': config.serverConfig.platform}
|
headers: {'X-Platform': config.serverConfig.platform}
|
||||||
}
|
}
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let app = res.data.data;
|
let app = res.data.data;
|
||||||
console.log(app);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
app: app,
|
app: app,
|
||||||
loading: false,
|
loading: false,
|
||||||
|
|||||||
@ -8,6 +8,12 @@
|
|||||||
"hostname": "localhost",
|
"hostname": "localhost",
|
||||||
"httpsPort": "9443",
|
"httpsPort": "9443",
|
||||||
"invokerUri": "/ui-request-handler/invoke/application-mgt-store/v1.0",
|
"invokerUri": "/ui-request-handler/invoke/application-mgt-store/v1.0",
|
||||||
|
"invoker": {
|
||||||
|
"uri": "/ui-request-handler/invoke",
|
||||||
|
"publisher": "/application-mgt-publisher/v1.0",
|
||||||
|
"store": "/application-mgt-store/v1.0",
|
||||||
|
"admin" : ""
|
||||||
|
},
|
||||||
"loginUri": "/ui-request-handler/login",
|
"loginUri": "/ui-request-handler/login",
|
||||||
"platform": "store"
|
"platform": "store"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -37,9 +37,11 @@ class AppList extends React.Component {
|
|||||||
payload.deviceType= deviceType;
|
payload.deviceType= deviceType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log("b",config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/applications/");
|
||||||
|
|
||||||
//send request to the invoker
|
//send request to the invoker
|
||||||
axios.post(
|
axios.post(
|
||||||
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri+"/applications/",
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/applications/",
|
||||||
payload,
|
payload,
|
||||||
{
|
{
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
headers: { 'X-Platform': config.serverConfig.platform }
|
||||||
@ -54,7 +56,7 @@ class AppList extends React.Component {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
}).catch((error) => {
|
}).catch((error) => { console.log(error.response);
|
||||||
if (error.hasOwnProperty("response") && error.response.status === 401) {
|
if (error.hasOwnProperty("response") && error.response.status === 401) {
|
||||||
//todo display a popup with error
|
//todo display a popup with error
|
||||||
message.error('You are not logged in');
|
message.error('You are not logged in');
|
||||||
|
|||||||
@ -1,12 +1,13 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import {Row, Typography, Icon} from "antd";
|
import {Row, Typography, Icon} from "antd";
|
||||||
import StarRatings from "react-star-ratings";
|
import StarRatings from "react-star-ratings";
|
||||||
import axios from "axios";
|
|
||||||
import "./DetailedRating.css";
|
import "./DetailedRating.css";
|
||||||
import config from "../../../../public/conf/config.json";
|
import config from "../../../../public/conf/config.json";
|
||||||
|
import axios from "axios";
|
||||||
|
|
||||||
const { Text } = Typography;
|
const { Text } = Typography;
|
||||||
|
|
||||||
|
|
||||||
class DetailedRating extends React.Component{
|
class DetailedRating extends React.Component{
|
||||||
|
|
||||||
constructor(props){
|
constructor(props){
|
||||||
@ -17,20 +18,24 @@ class DetailedRating extends React.Component{
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.getData(this.props.uuid);
|
const {type,uuid} = this.props;
|
||||||
|
this.getData(type,uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate(prevProps, prevState) {
|
componentDidUpdate(prevProps, prevState) {
|
||||||
if (prevProps.uuid !== this.props.uuid) {
|
if (prevProps.uuid !== this.props.uuid) {
|
||||||
this.getData(this.props.uuid);
|
const {type,uuid} = this.props;
|
||||||
|
this.getData(type,uuid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getData = (uuid)=>{
|
getData = (type, uuid)=>{
|
||||||
const request = "method=get&content-type=application/json&payload={}&api-endpoint=/application-mgt-store/v1.0/reviews/"+uuid+"/rating";
|
|
||||||
|
|
||||||
return axios.post(config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri, request
|
return axios.get(
|
||||||
).then(res => {
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid+"/"+type+"-rating",
|
||||||
|
{
|
||||||
|
headers: { 'X-Platform': config.serverConfig.platform }
|
||||||
|
}).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let detailedRating = res.data.data;
|
let detailedRating = res.data.data;
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -48,8 +53,6 @@ class DetailedRating extends React.Component{
|
|||||||
render() {
|
render() {
|
||||||
const detailedRating = this.state.detailedRating;
|
const detailedRating = this.state.detailedRating;
|
||||||
|
|
||||||
console.log(detailedRating);
|
|
||||||
|
|
||||||
if(detailedRating ==null){
|
if(detailedRating ==null){
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -73,8 +76,6 @@ class DetailedRating extends React.Component{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(ratingBarPercentages);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Row className="d-rating">
|
<Row className="d-rating">
|
||||||
<div className="numeric-data">
|
<div className="numeric-data">
|
||||||
|
|||||||
@ -21,14 +21,14 @@ class ReleaseView extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
installApp = (type,payload) => {
|
installApp = (type, payload) => {
|
||||||
const {uuid} = this.props.release;
|
const {uuid} = this.props.release;
|
||||||
|
|
||||||
const parameters = {
|
const parameters = {
|
||||||
method: "post",
|
method: "post",
|
||||||
'content-type': "application/json",
|
'content-type': "application/json",
|
||||||
payload: JSON.stringify(payload),
|
payload: JSON.stringify(payload),
|
||||||
'api-endpoint': "/application-mgt-store/v1.0/subscription/install/" + uuid + "/"+type+"/install"
|
'api-endpoint': "/application-mgt-store/v1.0/subscription/install/" + uuid + "/" + type + "/install"
|
||||||
};
|
};
|
||||||
|
|
||||||
const request = Object.keys(parameters).map(key => key + '=' + parameters[key]).join('&');
|
const request = Object.keys(parameters).map(key => key + '=' + parameters[key]).join('&');
|
||||||
@ -36,7 +36,7 @@ class ReleaseView extends React.Component {
|
|||||||
loading: true,
|
loading: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri, request
|
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store, request
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 201) {
|
if (res.status === 201) {
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -60,8 +60,9 @@ class ReleaseView extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}).catch((error) => {
|
}).catch((error) => {
|
||||||
|
console.log(error);
|
||||||
if (error.response.status === 401) {
|
if (error.response.status === 401) {
|
||||||
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort+'/store/login';
|
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + '/store/login';
|
||||||
} else {
|
} else {
|
||||||
this.setState({
|
this.setState({
|
||||||
loading: false,
|
loading: false,
|
||||||
@ -133,13 +134,13 @@ class ReleaseView extends React.Component {
|
|||||||
<Text>REVIEWS</Text>
|
<Text>REVIEWS</Text>
|
||||||
<Row>
|
<Row>
|
||||||
<Col lg={18}>
|
<Col lg={18}>
|
||||||
<DetailedRating uuid={release.uuid}/>
|
<DetailedRating type="app" uuid={release.uuid}/>
|
||||||
</Col>
|
</Col>
|
||||||
<Col lg={6}>
|
<Col lg={6}>
|
||||||
<AddReview uuid={release.uuid}/>
|
<AddReview uuid={release.uuid}/>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
<Reviews uuid={release.uuid}/>
|
<Reviews type="app" uuid={release.uuid}/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -21,7 +21,7 @@ class AppInstallModal extends React.Component{
|
|||||||
onCancel={this.props.onClose}
|
onCancel={this.props.onClose}
|
||||||
footer={null}
|
footer={null}
|
||||||
>
|
>
|
||||||
<Tabs defaultActiveKey="1" onChange={()=>{console.log("changed");}}>
|
<Tabs defaultActiveKey="1">
|
||||||
<TabPane tab="User" key="1">
|
<TabPane tab="User" key="1">
|
||||||
<UserInstall onInstall={this.props.onInstall}/>
|
<UserInstall onInstall={this.props.onInstall}/>
|
||||||
</TabPane>
|
</TabPane>
|
||||||
|
|||||||
@ -95,7 +95,7 @@ class DeviceInstall extends React.Component {
|
|||||||
|
|
||||||
rowSelection = {
|
rowSelection = {
|
||||||
onChange: (selectedRowKeys, selectedRows) => {
|
onChange: (selectedRowKeys, selectedRows) => {
|
||||||
console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
// console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
||||||
this.setState({
|
this.setState({
|
||||||
selectedRows: selectedRows
|
selectedRows: selectedRows
|
||||||
})
|
})
|
||||||
@ -138,11 +138,10 @@ class DeviceInstall extends React.Component {
|
|||||||
const request = Object.keys(parameters).map(key => key + '=' + parameters[key]).join('&');
|
const request = Object.keys(parameters).map(key => key + '=' + parameters[key]).join('&');
|
||||||
|
|
||||||
//send request to the invoker
|
//send request to the invoker
|
||||||
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri, request
|
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store, request
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
const pagination = {...this.state.pagination};
|
const pagination = {...this.state.pagination};
|
||||||
console.log(res.data.data.devices);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
loading: false,
|
loading: false,
|
||||||
data: res.data.data.devices,
|
data: res.data.data.devices,
|
||||||
@ -151,7 +150,7 @@ class DeviceInstall extends React.Component {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}).catch((error) => {
|
}).catch((error) => { console.log(error);
|
||||||
if (error.hasOwnProperty("status") && error.response.status === 401) {
|
if (error.hasOwnProperty("status") && error.response.status === 401) {
|
||||||
//todo display a popop with error
|
//todo display a popop with error
|
||||||
message.error('You are not logged in');
|
message.error('You are not logged in');
|
||||||
|
|||||||
@ -35,9 +35,7 @@ class GroupInstall extends React.Component {
|
|||||||
'api-endpoint': "/device-mgt/v1.0/admin/groups?name=" + value
|
'api-endpoint': "/device-mgt/v1.0/admin/groups?name=" + value
|
||||||
};
|
};
|
||||||
|
|
||||||
const request = Object.keys(parameters).map(key => key + '=' + parameters[key]).join('&');
|
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store, request
|
||||||
console.log(request);
|
|
||||||
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri, request
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
if (fetchId !== this.lastFetchId) {
|
if (fetchId !== this.lastFetchId) {
|
||||||
@ -45,8 +43,6 @@ class GroupInstall extends React.Component {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(res.data.data);
|
|
||||||
|
|
||||||
const data = res.data.data.deviceGroups.map(group => ({
|
const data = res.data.data.deviceGroups.map(group => ({
|
||||||
text: group.name,
|
text: group.name,
|
||||||
value: group.name,
|
value: group.name,
|
||||||
@ -55,7 +51,7 @@ class GroupInstall extends React.Component {
|
|||||||
this.setState({data, fetching: false});
|
this.setState({data, fetching: false});
|
||||||
}
|
}
|
||||||
|
|
||||||
}).catch((error) => {
|
}).catch((error) => { console.log(error);
|
||||||
if (error.hasOwnProperty("status") && error.response.status === 401) {
|
if (error.hasOwnProperty("status") && error.response.status === 401) {
|
||||||
message.error('You are not logged in');
|
message.error('You are not logged in');
|
||||||
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort+'/store/login';
|
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort+'/store/login';
|
||||||
|
|||||||
@ -35,9 +35,7 @@ class RoleInstall extends React.Component {
|
|||||||
'api-endpoint': "/device-mgt/v1.0/roles?filter=" + value
|
'api-endpoint': "/device-mgt/v1.0/roles?filter=" + value
|
||||||
};
|
};
|
||||||
|
|
||||||
const request = Object.keys(parameters).map(key => key + '=' + parameters[key]).join('&');
|
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store, request
|
||||||
console.log(request);
|
|
||||||
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri, request
|
|
||||||
).then(res => {
|
).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
if (fetchId !== this.lastFetchId) {
|
if (fetchId !== this.lastFetchId) {
|
||||||
@ -45,8 +43,6 @@ class RoleInstall extends React.Component {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(res.data.data);
|
|
||||||
|
|
||||||
const data = res.data.data.roles.map(role => ({
|
const data = res.data.data.roles.map(role => ({
|
||||||
text: role,
|
text: role,
|
||||||
value: role,
|
value: role,
|
||||||
@ -55,7 +51,7 @@ class RoleInstall extends React.Component {
|
|||||||
this.setState({data, fetching: false});
|
this.setState({data, fetching: false});
|
||||||
}
|
}
|
||||||
|
|
||||||
}).catch((error) => {
|
}).catch((error) => { console.log(error);
|
||||||
if (error.hasOwnProperty("status") && error.response.status === 401) {
|
if (error.hasOwnProperty("status") && error.response.status === 401) {
|
||||||
message.error('You are not logged in');
|
message.error('You are not logged in');
|
||||||
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort+'/store/login';
|
window.location.href = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort+'/store/login';
|
||||||
|
|||||||
@ -23,7 +23,6 @@ class UserInstall extends React.Component {
|
|||||||
};
|
};
|
||||||
|
|
||||||
fetchUser = value => {
|
fetchUser = value => {
|
||||||
console.log('fetching user', value);
|
|
||||||
this.lastFetchId += 1;
|
this.lastFetchId += 1;
|
||||||
const fetchId = this.lastFetchId;
|
const fetchId = this.lastFetchId;
|
||||||
this.setState({data: [], fetching: true});
|
this.setState({data: [], fetching: true});
|
||||||
@ -31,7 +30,7 @@ class UserInstall extends React.Component {
|
|||||||
|
|
||||||
//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.invokerUri+"/device-mgt/v1.0/users/search?username=" + value,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/device-mgt/v1.0/users/search?username=" + value,
|
||||||
{
|
{
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
headers: { 'X-Platform': config.serverConfig.platform }
|
||||||
}
|
}
|
||||||
@ -42,8 +41,6 @@ class UserInstall extends React.Component {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(res.data.data);
|
|
||||||
|
|
||||||
const data = res.data.data.users.map(user => ({
|
const data = res.data.data.users.map(user => ({
|
||||||
text: user.username,
|
text: user.username,
|
||||||
value: user.username,
|
value: user.username,
|
||||||
|
|||||||
@ -54,8 +54,12 @@ class AddReview extends React.Component {
|
|||||||
|
|
||||||
const request = "method=post&content-type=application/json&payload="+JSON.stringify(payload)+"&api-endpoint=/application-mgt-store/v1.0/reviews/"+uuid;
|
const request = "method=post&content-type=application/json&payload="+JSON.stringify(payload)+"&api-endpoint=/application-mgt-store/v1.0/reviews/"+uuid;
|
||||||
|
|
||||||
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri, request
|
axios.post(
|
||||||
).then(res => {
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid,
|
||||||
|
payload,
|
||||||
|
{
|
||||||
|
headers: { 'X-Platform': config.serverConfig.platform }
|
||||||
|
}).then(res => {
|
||||||
if (res.status === 201) {
|
if (res.status === 201) {
|
||||||
this.setState({
|
this.setState({
|
||||||
loading: false,
|
loading: false,
|
||||||
|
|||||||
@ -27,9 +27,14 @@ class Reviews extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fetchData = (offset, limit, callback) => {
|
fetchData = (offset, limit, callback) => {
|
||||||
const request = "method=get&content-type=application/json&payload={}&api-endpoint=/application-mgt-store/v1.0/reviews/" + this.props.uuid + "?offset=" + offset + "%26limit=" + limit;
|
|
||||||
axios.post(config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invokerUri, request
|
const {uuid, type} = this.props;
|
||||||
).then(res => {
|
|
||||||
|
axios.get(
|
||||||
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+type+"/"+uuid,
|
||||||
|
{
|
||||||
|
headers: {'X-Platform': config.serverConfig.platform}
|
||||||
|
}).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let reviews = res.data.data.data;
|
let reviews = res.data.data.data;
|
||||||
callback(reviews);
|
callback(reviews);
|
||||||
|
|||||||
@ -19,7 +19,6 @@ class Dashboard extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
changeSelectedMenuItem = (key) =>{
|
changeSelectedMenuItem = (key) =>{
|
||||||
console.log("called", key);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
selectedKeys: [key]
|
selectedKeys: [key]
|
||||||
})
|
})
|
||||||
@ -27,7 +26,6 @@ class Dashboard extends React.Component {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {selectedKeys} = this.state;
|
const {selectedKeys} = this.state;
|
||||||
console.log(selectedKeys);
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Layout className="layout">
|
<Layout className="layout">
|
||||||
|
|||||||
@ -28,7 +28,6 @@ class Release extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate(prevProps, prevState, snapshot) {
|
componentDidUpdate(prevProps, prevState, snapshot) {
|
||||||
console.log(prevState);
|
|
||||||
if (prevState.uuid !== this.state.uuid) {
|
if (prevState.uuid !== this.state.uuid) {
|
||||||
const {uuid,deviceType} = this.props.match.params;
|
const {uuid,deviceType} = this.props.match.params;
|
||||||
this.fetchData(uuid);
|
this.fetchData(uuid);
|
||||||
@ -39,7 +38,7 @@ class Release extends React.Component {
|
|||||||
fetchData = (uuid)=>{
|
fetchData = (uuid)=>{
|
||||||
//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.invokerUri+"/applications/"+uuid,
|
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store+"/applications/"+uuid,
|
||||||
{
|
{
|
||||||
headers: { 'X-Platform': config.serverConfig.platform }
|
headers: { 'X-Platform': config.serverConfig.platform }
|
||||||
}
|
}
|
||||||
@ -47,8 +46,6 @@ class Release extends React.Component {
|
|||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
let app = res.data.data;
|
let app = res.data.data;
|
||||||
|
|
||||||
console.log(app);
|
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
app: app,
|
app: app,
|
||||||
loading: false,
|
loading: false,
|
||||||
@ -56,7 +53,7 @@ class Release extends React.Component {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
}).catch((error) => {
|
}).catch((error) => { console.log(error);
|
||||||
if (error.hasOwnProperty("response") && error.response.status === 401) {
|
if (error.hasOwnProperty("response") && error.response.status === 401) {
|
||||||
//todo display a popop with error
|
//todo display a popop with error
|
||||||
message.error('You are not logged in');
|
message.error('You are not logged in');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user