diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/react-app/src/components/apps/release/ReleaseView.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/react-app/src/components/apps/release/ReleaseView.js
index 7822559731..b7022888ec 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/react-app/src/components/apps/release/ReleaseView.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/react-app/src/components/apps/release/ReleaseView.js
@@ -1,5 +1,5 @@
import React from "react";
-import {Divider, Row, Col, Typography, Button, Drawer} from "antd";
+import {Divider, Row, Col, Typography, Button, Drawer, Icon} from "antd";
import StarRatings from "react-star-ratings";
import Reviews from "./review/Reviews";
import "../../../App.css";
@@ -16,6 +16,18 @@ class ReleaseView extends React.Component {
if (release == null) {
return null;
}
+
+ const platform = app.deviceType;
+ const defaultPlatformIcons = config.defaultPlatformIcons;
+ let icon = defaultPlatformIcons.default.icon;
+ let color = defaultPlatformIcons.default.color;
+ let theme = defaultPlatformIcons.default.theme;
+ if (defaultPlatformIcons.hasOwnProperty(platform)) {
+ icon = defaultPlatformIcons[platform].icon;
+ color = defaultPlatformIcons[platform].color;
+ theme = defaultPlatformIcons[platform].theme;
+ }
+
return (
@@ -25,7 +37,6 @@ class ReleaseView extends React.Component {
{app.name}
-
Version : {release.version}
+
+
Platform :
+
+
+
+
+
Version : {release.version}
+
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/App.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/App.js
index 2b6921e095..55814d28b3 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/App.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/App.js
@@ -3,30 +3,89 @@ import "antd/dist/antd.less";
import RouteWithSubRoutes from "./components/RouteWithSubRoutes";
import {
BrowserRouter as Router,
- Link, Redirect, Switch,
+ Redirect, Switch,
} from 'react-router-dom';
+import axios from "axios";
+import {Layout, Spin, Result} from "antd";
+import ConfigContext from "./context/ConfigContext";
+
+const {Content} = Layout;
+const loadingView = (
+
+
+
+
+
+);
+
+const errorView = (
+
+);
class App extends React.Component {
- routes;
constructor(props) {
super(props);
- this.routes = props.routes;
+ this.state = {
+ loading: true,
+ error: false,
+ config: {}
+ }
+ }
+
+ componentDidMount() {
+ axios.get(
+ window.location.origin + "/store/public/conf/config.json",
+ ).then(res => {
+ console.log(res);
+ this.setState({
+ loading: false,
+ config: res.data
+ })
+ }).catch((error) => {
+ this.setState({
+ loading: false,
+ error: true
+ })
+ });
}
render() {
- return (
+ const {loading, error} = this.state;
+
+ const applicationView = (
-
-
-
- {this.routes.map((route) => (
-
- ))}
-
-
+
+
+
+
+ {this.props.routes.map((route) => (
+
+ ))}
+
+
+
+ );
+ return (
+
+ {loading && loadingView}
+ {!loading && !error && applicationView}
+ {error && errorView}
+
);
}
}
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/AppList.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/AppList.js
index 0eb6502e74..02b41ade68 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/AppList.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/AppList.js
@@ -2,7 +2,7 @@ import React from "react";
import AppCard from "./AppCard";
import {Col, message, notification, Row, Result, Skeleton} from "antd";
import axios from "axios";
-import config from "../../../public/conf/config.json";
+import {withConfigContext} from "../../context/ConfigContext";
class AppList extends React.Component {
constructor(props) {
@@ -29,7 +29,7 @@ class AppList extends React.Component {
}
fetchData = (deviceType) => {
-
+ const config = this.props.context;
const payload = {};
if (deviceType === "web-clip") {
payload.appType = "WEB_CLIP";
@@ -99,4 +99,4 @@ class AppList extends React.Component {
}
}
-export default AppList;
\ No newline at end of file
+export default withConfigContext(AppList);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/DetailedRating.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/DetailedRating.js
index 90fc93b5cf..f06b8b4793 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/DetailedRating.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/DetailedRating.js
@@ -2,8 +2,8 @@ import React from "react";
import {Row, Typography, Icon} from "antd";
import StarRatings from "react-star-ratings";
import "./DetailedRating.css";
-import config from "../../../../public/conf/config.json";
import axios from "axios";
+import {withConfigContext} from "../../../context/ConfigContext";
const { Text } = Typography;
@@ -30,6 +30,7 @@ class DetailedRating extends React.Component{
}
getData = (type, uuid)=>{
+ const config = this.props.context;
return axios.get(
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+uuid+"/"+type+"-rating",
@@ -117,4 +118,4 @@ class DetailedRating extends React.Component{
}
-export default DetailedRating;
\ No newline at end of file
+export default withConfigContext(DetailedRating);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/ReleaseView.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/ReleaseView.js
index 80098733eb..8ae2867966 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/ReleaseView.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/ReleaseView.js
@@ -5,11 +5,10 @@ import ImgViewer from "../../apps/release/images/ImgViewer";
import StarRatings from "react-star-ratings";
import DetailedRating from "./DetailedRating";
import Reviews from "./review/Reviews";
-import AddReview from "./review/AddReview";
import axios from "axios";
-import config from "../../../../public/conf/config.json";
import AppInstallModal from "./install/AppInstallModal";
import CurrentUsersReview from "./review/CurrentUsersReview";
+import {withConfigContext} from "../../../context/ConfigContext";
const {Title, Text, Paragraph} = Typography;
@@ -23,6 +22,7 @@ class ReleaseView extends React.Component {
}
installApp = (type, payload) => {
+ const config = this.props.context;
const release = this.props.app.applicationReleases[0];
const {uuid} = release;
@@ -150,4 +150,4 @@ class ReleaseView extends React.Component {
}
}
-export default ReleaseView;
\ No newline at end of file
+export default withConfigContext(ReleaseView);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/DeviceInstall.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/DeviceInstall.js
index 9ddd088697..7a804b6171 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/DeviceInstall.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/DeviceInstall.js
@@ -1,11 +1,11 @@
import React from "react";
import axios from "axios";
-import config from "../../../../../public/conf/config.json";
import {Button, message, notification, Table, Typography} 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 "../../../../context/ConfigContext";
const {Text} = Typography;
const columns = [
{
@@ -112,6 +112,7 @@ class DeviceInstall extends React.Component {
//fetch data from api
fetch = (params = {}) => {
+ const config = this.props.context;
this.setState({loading: true});
const {deviceType} = this.props;
// get current page
@@ -219,4 +220,4 @@ class DeviceInstall extends React.Component {
}
}
-export default DeviceInstall;
\ No newline at end of file
+export default withConfigContext(DeviceInstall);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/GroupInstall.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/GroupInstall.js
index b2a2c68505..83ea7f7cba 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/GroupInstall.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/GroupInstall.js
@@ -2,7 +2,7 @@ import React from "react";
import {Typography, Select, Spin, message, notification, Button} from "antd";
import debounce from 'lodash.debounce';
import axios from "axios";
-import config from "../../../../../public/conf/config.json";
+import {withConfigContext} from "../../../../context/ConfigContext";
const {Text} = Typography;
const {Option} = Select;
@@ -25,6 +25,7 @@ class GroupInstall extends React.Component {
fetchUser = value => {
this.lastFetchId += 1;
const fetchId = this.lastFetchId;
+ const config = this.props.context;
this.setState({data: [], fetching: true});
axios.post(
@@ -111,4 +112,4 @@ class GroupInstall extends React.Component {
}
}
-export default GroupInstall;
\ No newline at end of file
+export default withConfigContext(GroupInstall);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/RoleInstall.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/RoleInstall.js
index 27ffc3eb1b..617634b868 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/RoleInstall.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/RoleInstall.js
@@ -2,7 +2,7 @@ import React from "react";
import {Typography, Select, Spin, message, notification, Button} from "antd";
import debounce from 'lodash.debounce';
import axios from "axios";
-import config from "../../../../../public/conf/config.json";
+import {withConfigContext} from "../../../../context/ConfigContext";
const {Text} = Typography;
const {Option} = Select;
@@ -23,6 +23,7 @@ class RoleInstall extends React.Component {
};
fetchUser = value => {
+ const config = this.props.context;
this.lastFetchId += 1;
const fetchId = this.lastFetchId;
this.setState({data: [], fetching: true});
@@ -111,4 +112,4 @@ class RoleInstall extends React.Component {
}
}
-export default RoleInstall;
\ No newline at end of file
+export default withConfigContext(RoleInstall);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/UserInstall.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/UserInstall.js
index 31c9a6eb6d..ec139d9071 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/UserInstall.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/install/UserInstall.js
@@ -2,7 +2,7 @@ import React from "react";
import {Typography, Select, Spin, message, notification, Button} from "antd";
import debounce from 'lodash.debounce';
import axios from "axios";
-import config from "../../../../../public/conf/config.json";
+import {withConfigContext} from "../../../../context/ConfigContext";
const {Text} = Typography;
const {Option} = Select;
@@ -23,6 +23,7 @@ class UserInstall extends React.Component {
};
fetchUser = value => {
+ const config = this.props.context;
this.lastFetchId += 1;
const fetchId = this.lastFetchId;
this.setState({data: [], fetching: true});
@@ -111,4 +112,4 @@ class UserInstall extends React.Component {
}
}
-export default UserInstall;
\ No newline at end of file
+export default withConfigContext(UserInstall);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/AddReview.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/AddReview.js
index 55f14fbefa..f6939dfab9 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/AddReview.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/AddReview.js
@@ -2,7 +2,7 @@ import React from "react";
import {Drawer, Button, Icon, Row, Col, Typography, Divider, Input, Spin, notification} from 'antd';
import StarRatings from "react-star-ratings";
import axios from "axios";
-import config from "../../../../../public/conf/config.json";
+import {withConfigContext} from "../../../../context/ConfigContext";
const {Title} = Typography;
const {TextArea} = Input;
@@ -41,6 +41,7 @@ class AddReview extends React.Component {
};
onSubmit = () => {
+ const config = this.props.context;
const {content, rating} = this.state;
const {uuid} = this.props;
this.setState({
@@ -159,4 +160,4 @@ class AddReview extends React.Component {
}
}
-export default AddReview;
\ No newline at end of file
+export default withConfigContext(AddReview);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/CurrentUsersReview.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/CurrentUsersReview.js
index 810f7b7fb8..14ef0409a6 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/CurrentUsersReview.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/CurrentUsersReview.js
@@ -2,8 +2,8 @@ import React from "react";
import {List, message, Typography, Empty, Button, Row, Col, notification} from "antd";
import SingleReview from "./singleReview/SingleReview";
import axios from "axios";
-import config from "../../../../../public/conf/config.json";
import AddReview from "./AddReview";
+import {withConfigContext} from "../../../../context/ConfigContext";
const {Text, Paragraph} = Typography;
@@ -23,6 +23,7 @@ class CurrentUsersReview extends React.Component {
fetchData = () => {
const {uuid} = this.props;
+ const config = this.props.context;
axios.get(
config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store + "/reviews/app/user/" + uuid,
@@ -106,4 +107,4 @@ class CurrentUsersReview extends React.Component {
}
-export default CurrentUsersReview;
\ No newline at end of file
+export default withConfigContext(CurrentUsersReview);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/Reviews.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/Reviews.js
index 835702bd05..3d00216e15 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/Reviews.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/Reviews.js
@@ -5,7 +5,7 @@ import "./Reviews.css";
import InfiniteScroll from 'react-infinite-scroller';
import SingleReview from "./singleReview/SingleReview";
import axios from "axios";
-import config from "../../../../../public/conf/config.json";
+import {withConfigContext} from "../../../../context/ConfigContext";
const limit = 5;
@@ -29,6 +29,7 @@ class Reviews extends React.Component {
fetchData = (offset, limit, callback) => {
const {uuid, type} = this.props;
+ const config = this.props.context;
axios.get(
config.serverConfig.protocol + "://"+config.serverConfig.hostname + ':' + config.serverConfig.httpsPort + config.serverConfig.invoker.uri +config.serverConfig.invoker.store+"/reviews/"+type+"/"+uuid,
@@ -133,4 +134,4 @@ class Reviews extends React.Component {
}
}
-export default Reviews;
\ No newline at end of file
+export default withConfigContext(Reviews);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/SingleReview.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/SingleReview.js
index a5241f1c16..0d9622817e 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/SingleReview.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/SingleReview.js
@@ -6,7 +6,7 @@ import Twemoji from "react-twemoji";
import "./SingleReview.css";
import EditReview from "./editReview/EditReview";
import axios from "axios";
-import config from "../../../../../../public/conf/config.json";
+import {withConfigContext} from "../../../../../context/ConfigContext";
const {Text, Paragraph} = Typography;
const colorList = ['#f0932b', '#badc58', '#6ab04c', '#eb4d4b', '#0abde3', '#9b59b6', '#3498db', '#22a6b3', '#e84393', '#f9ca24'];
@@ -38,6 +38,7 @@ class SingleReview extends React.Component {
deleteReview = () => {
const {uuid} = this.props;
const {id} = this.state.review;
+ const config = this.props.context;
let url = config.serverConfig.protocol + "://" + config.serverConfig.hostname + ':' +
config.serverConfig.httpsPort + config.serverConfig.invoker.uri + config.serverConfig.invoker.store;
@@ -131,4 +132,4 @@ class SingleReview extends React.Component {
}
}
-export default SingleReview;
\ No newline at end of file
+export default withConfigContext(SingleReview);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/editReview/EditReview.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/editReview/EditReview.js
index 1ec2f613bb..b382d3e8ec 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/editReview/EditReview.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/components/apps/release/review/singleReview/editReview/EditReview.js
@@ -2,8 +2,8 @@ import React from "react";
import {Drawer, Button, Icon, Row, Col, Typography, Divider, Input, Spin, notification} from 'antd';
import StarRatings from "react-star-ratings";
import axios from "axios";
-import config from "../../../../../../../public/conf/config.json";
import "./EditReview.css";
+import {withConfigContext} from "../../../../../../context/ConfigContext";
const {Title} = Typography;
const {TextArea} = Input;
@@ -54,6 +54,7 @@ class EditReview extends React.Component {
};
onSubmit = () => {
+ const config = this.props.context;
const {content, rating} = this.state;
const {id} = this.props.review;
const {uuid} = this.props;
@@ -169,4 +170,4 @@ class EditReview extends React.Component {
}
}
-export default EditReview;
\ No newline at end of file
+export default withConfigContext(EditReview);
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/context/ConfigContext.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/context/ConfigContext.js
new file mode 100644
index 0000000000..3dfb011d50
--- /dev/null
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/context/ConfigContext.js
@@ -0,0 +1,16 @@
+import React from "react";
+
+const ConfigContext = React.createContext();
+
+export const withConfigContext = Component => {
+ return props => (
+
+ {context => {
+ return ;
+ }}
+
+ );
+};
+
+export default ConfigContext;
+
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/index.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/index.js
index 3e415a3cee..a6ac65a389 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/index.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/index.js
@@ -38,7 +38,7 @@ ReactDOM.render(
,
document.getElementById('root'));
-// If you want your app to work offline and load faster, you can change
+// If you want your app e and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/js/utils/dagre-utils.ts b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/js/utils/dagre-utils.ts
deleted file mode 100644
index 58a006f9a9..0000000000
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/js/utils/dagre-utils.ts
+++ /dev/null
@@ -1,56 +0,0 @@
-import * as dagre from "dagre";
-import * as _ from "lodash";
-
-const size = {
- width: 60,
- height: 60
-};
-
-export function distributeElements(model) {
- let clonedModel = _.cloneDeep(model);
- let nodes = distributeGraph(clonedModel);
- nodes.forEach(node => {
- let modelNode = clonedModel.nodes.find(item => item.id === node.id);
- modelNode.x = node.x - node.width / 2;
- modelNode.y = node.y - node.height / 2;
- });
- return clonedModel;
-}
-
-function distributeGraph(model) {
- let nodes = mapElements(model);
- let edges = mapEdges(model);
- let graph = new dagre.graphlib.Graph();
- graph.setGraph({});
- graph.setDefaultEdgeLabel(() => ({}));
- //add elements to dagre graph
- nodes.forEach(node => {
- graph.setNode(node.id, node.metadata);
- });
- edges.forEach(edge => {
- if (edge.from && edge.to) {
- graph.setEdge(edge.from, edge.to);
- }
- });
- //auto-distribute
- dagre.layout(graph);
- return graph.nodes().map(node => graph.node(node));
-}
-
-function mapElements(model) {
- // dagre compatible format
- return model.nodes.map(node => ({ id: node.id, metadata: { ...size, id: node.id } }));
-}
-
-function mapEdges(model) {
- // returns links which connects nodes
- // we check are there both from and to nodes in the model. Sometimes links can be detached
- return model.links
- .map(link => ({
- from: link.source,
- to: link.target
- }))
- .filter(
- item => model.nodes.find(node => node.id === item.from) && model.nodes.find(node => node.id === item.to)
- );
-}
\ No newline at end of file
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/Login.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/Login.js
index b480b5e584..8cd95b5249 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/Login.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/Login.js
@@ -2,7 +2,7 @@ import React from "react";
import {Typography, Row, Col, Form, Icon, Input, Button, Checkbox} from 'antd';
import './Login.css';
import axios from 'axios';
-import config from "../../public/conf/config.json";
+import {withConfigContext} from "../context/ConfigContext";
const {Title} = Typography;
const {Text} = Typography;
@@ -59,6 +59,8 @@ class NormalLoginForm extends React.Component {
handleSubmit = (e) => {
const thisForm = this;
+ const config = this.props.context;
+
e.preventDefault();
this.props.form.validateFields((err, values) => {
thisForm.setState({
@@ -146,4 +148,4 @@ class NormalLoginForm extends React.Component {
const WrappedNormalLoginForm = Form.create({name: 'normal_login'})(NormalLoginForm);
-export default Login;
+export default withConfigContext(Login);
diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/dashboard/Dashboard.js b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/dashboard/Dashboard.js
index 9c2682904b..d83e3ba32c 100644
--- a/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/dashboard/Dashboard.js
+++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.store.ui/react-app/src/pages/dashboard/Dashboard.js
@@ -5,16 +5,16 @@ import {Link} from "react-router-dom";
import RouteWithSubRoutes from "../../components/RouteWithSubRoutes"
import {Switch} from 'react-router'
import "../../App.css";
-import config from "../../../public/conf/config.json";
+import {withConfigContext} from "../../context/ConfigContext";
class Dashboard extends React.Component {
constructor(props) {
super(props);
this.state = {
routes: props.routes,
- selectedKeys : []
+ selectedKeys: []
};
- this.Logo = config.theme.logo;
+ this.logo = this.props.context.theme.logo;
}
changeSelectedMenuItem = (key) =>{
@@ -30,7 +30,7 @@ class Dashboard extends React.Component {
-
+