|
|
|
@ -18,7 +18,7 @@
|
|
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
import AppCard from "./AppCard";
|
|
|
|
|
import {Col, Row, Result, Pagination} from "antd";
|
|
|
|
|
import {Col, Row, Result} from "antd";
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import {withConfigContext} from "../../context/ConfigContext";
|
|
|
|
|
import {handleApiError} from "../../js/Utils";
|
|
|
|
@ -89,7 +89,6 @@ class AppList extends React.Component {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
console.log(error);
|
|
|
|
|
handleApiError(error, "Error occurred while trying to load apps.", true);
|
|
|
|
|
if (error.hasOwnProperty("response") && error.response.status === 403) {
|
|
|
|
|
const {forbiddenErrors} = this.state;
|
|
|
|
@ -106,10 +105,6 @@ class AppList extends React.Component {
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlePaginationChange = (page, pageSize) => {
|
|
|
|
|
this.fetchData(page, pageSize);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handleInfiniteOnLoad = (count) => {
|
|
|
|
|
const offset = count * limit;
|
|
|
|
|
let apps = this.state.apps;
|
|
|
|
@ -134,7 +129,7 @@ class AppList extends React.Component {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
const {apps, loading, forbiddenErrors, totalAppCount, hasMore} = this.state;
|
|
|
|
|
const {apps, loading, forbiddenErrors, hasMore} = this.state;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
@ -150,15 +145,13 @@ class AppList extends React.Component {
|
|
|
|
|
status="403"
|
|
|
|
|
title="403"
|
|
|
|
|
subTitle="You don't have permission to view apps."
|
|
|
|
|
// extra={<Button type="primary">Back Home</Button>}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
{!((forbiddenErrors.apps)) && apps.length === 0 && (
|
|
|
|
|
{!(forbiddenErrors.apps) && apps.length === 0 && (
|
|
|
|
|
<Result
|
|
|
|
|
status="404"
|
|
|
|
|
title="No apps, yet."
|
|
|
|
|
subTitle="No apps available, yet! When the administration uploads, apps will show up here."
|
|
|
|
|
// extra={<Button type="primary">Back Home</Button>}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
{apps.map(app => (
|
|
|
|
|