diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher/src/components/Application/ApplicationListing.jsx b/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher/src/components/Application/ApplicationListing.jsx index 3d05b1b889..c89ad7b10b 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher/src/components/Application/ApplicationListing.jsx +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher/src/components/Application/ApplicationListing.jsx @@ -18,7 +18,7 @@ import React, {Component} from 'react'; import {withRouter} from 'react-router-dom'; -import {Button, Col, Row, Table} from 'reactstrap'; +import {Button, Col, Row} from 'reactstrap'; import Drawer from '../UIComponents/Drawer/Drawer'; import ApplicationView from './View/ApplicationView'; import {FormattedMessage} from 'react-intl'; @@ -96,6 +96,7 @@ class ApplicationListing extends Component { data_id: "applicationName", data_type: "string", sortable: true, + locale: "Application.name", label: "Application Name", sort: this.sortData }, @@ -103,18 +104,21 @@ class ApplicationListing extends Component { data_id: "platform", data_type: "image_array", sortable: false, + locale: "Platform", label: "Platform" }, { data_id: "category", data_type: "string", sortable: false, + locale: "Category", label: "Category" }, { data_id: "status", data_type: "string", sortable: false, + locale: "Status", label: "Status" }, { @@ -125,14 +129,12 @@ class ApplicationListing extends Component { } ]; - componentWillMount() { let getApps = ApplicationMgtApi.getApplications(); getApps.then(response => { - console.log(response.data.applications); + console.log(response); this.setState({searchedApplications: response.data.applications}); - // console.log(this.setState({data: response.data}), console.log(this.state)); }).catch(err => { AuthHandler.unauthorizedErrorHandler(err); }); @@ -214,66 +216,46 @@ class ApplicationListing extends Component { } render() { + //TODO: Move this to a data table component. return ( -
- {/* TODO: Remove console.log and add sort method. */} - | {
- console.log("sort")
- }}>
- |
- - | |||
---|---|---|---|---|---|
- {/* TODO: Move this styles to css. */} - - | -{application.name} | -{application.category.name} | -{application.platform.name} | -{application.currentLifecycle.lifecycleState.name} | -- - | -