mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-18 07:23:49 +08:00
fix(web): fix the bug of infinity loop animate when unauthorized (#891)
* fix(web): fix the bug of infinity loop when unauthorized * fix * fix * fix * Update BaseListPage.js * Update OrganizationListPage.js * Update OrganizationListPage.js Co-authored-by: Yang Luo <hsluoyz@qq.com>
This commit is contained in:
@ -30,6 +30,7 @@ class BaseListPage extends React.Component {
|
|||||||
loading: false,
|
loading: false,
|
||||||
searchText: "",
|
searchText: "",
|
||||||
searchedColumn: "",
|
searchedColumn: "",
|
||||||
|
isAuthorized: true,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import {Link} from "react-router-dom";
|
import {Link} from "react-router-dom";
|
||||||
import {Button, Popconfirm, Switch, Table} from "antd";
|
import {Button, Popconfirm, Result, Switch, Table} from "antd";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import * as Setting from "./Setting";
|
import * as Setting from "./Setting";
|
||||||
import * as OrganizationBackend from "./backend/OrganizationBackend";
|
import * as OrganizationBackend from "./backend/OrganizationBackend";
|
||||||
@ -235,6 +235,17 @@ class OrganizationListPage extends BaseListPage {
|
|||||||
showTotal: () => i18next.t("general:{total} in total").replace("{total}", this.state.pagination.total),
|
showTotal: () => i18next.t("general:{total} in total").replace("{total}", this.state.pagination.total),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (!this.state.isAuthorized) {
|
||||||
|
return (
|
||||||
|
<Result
|
||||||
|
status="403"
|
||||||
|
title="403 Unauthorized"
|
||||||
|
subTitle={i18next.t("general:Sorry, you do not have permission to access this page.")}
|
||||||
|
extra={<a href="/"><Button type="primary">{i18next.t("general:Back Home")}</Button></a>}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Table scroll={{x: "max-content"}} columns={columns} dataSource={organizations} rowKey="name" size="middle" bordered pagination={paginationProps}
|
<Table scroll={{x: "max-content"}} columns={columns} dataSource={organizations} rowKey="name" size="middle" bordered pagination={paginationProps}
|
||||||
@ -272,6 +283,13 @@ class OrganizationListPage extends BaseListPage {
|
|||||||
searchText: params.searchText,
|
searchText: params.searchText,
|
||||||
searchedColumn: params.searchedColumn,
|
searchedColumn: params.searchedColumn,
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
if (res.msg.includes("Unauthorized")) {
|
||||||
|
this.setState({
|
||||||
|
loading: false,
|
||||||
|
isAuthorized: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -188,6 +188,7 @@
|
|||||||
"Signup application - Tooltip": "Signup application - Tooltip",
|
"Signup application - Tooltip": "Signup application - Tooltip",
|
||||||
"Sorry, the page you visited does not exist.": "Die von Ihnen besuchte Seite existiert leider nicht.",
|
"Sorry, the page you visited does not exist.": "Die von Ihnen besuchte Seite existiert leider nicht.",
|
||||||
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
||||||
|
"Sorry, you do not have permission to access this page.": "Sorry, you do not have permission to access this page.",
|
||||||
"State": "State",
|
"State": "State",
|
||||||
"State - Tooltip": "State - Tooltip",
|
"State - Tooltip": "State - Tooltip",
|
||||||
"Swagger": "Swagger",
|
"Swagger": "Swagger",
|
||||||
|
@ -188,6 +188,7 @@
|
|||||||
"Signup application - Tooltip": "Signup application - Tooltip",
|
"Signup application - Tooltip": "Signup application - Tooltip",
|
||||||
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
|
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
|
||||||
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
||||||
|
"Sorry, you do not have permission to access this page.": "Sorry, you do not have permission to access this page.",
|
||||||
"State": "State",
|
"State": "State",
|
||||||
"State - Tooltip": "State - Tooltip",
|
"State - Tooltip": "State - Tooltip",
|
||||||
"Swagger": "Swagger",
|
"Swagger": "Swagger",
|
||||||
|
@ -188,6 +188,7 @@
|
|||||||
"Signup application - Tooltip": "Signup application - Tooltip",
|
"Signup application - Tooltip": "Signup application - Tooltip",
|
||||||
"Sorry, the page you visited does not exist.": "Désolé, la page que vous avez visitée n'existe pas.",
|
"Sorry, the page you visited does not exist.": "Désolé, la page que vous avez visitée n'existe pas.",
|
||||||
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
||||||
|
"Sorry, you do not have permission to access this page.": "Désolé, vous n'avez pas la permission d'accéder à cette page.",
|
||||||
"State": "State",
|
"State": "State",
|
||||||
"State - Tooltip": "State - Tooltip",
|
"State - Tooltip": "State - Tooltip",
|
||||||
"Swagger": "Swagger",
|
"Swagger": "Swagger",
|
||||||
|
@ -188,6 +188,7 @@
|
|||||||
"Signup application - Tooltip": "Signup application - Tooltip",
|
"Signup application - Tooltip": "Signup application - Tooltip",
|
||||||
"Sorry, the page you visited does not exist.": "申し訳ありませんが、訪問したページは存在しません。",
|
"Sorry, the page you visited does not exist.": "申し訳ありませんが、訪問したページは存在しません。",
|
||||||
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
||||||
|
"Sorry, you do not have permission to access this page.": "申し訳ありませんが、このページにアクセスする権限がありません。",
|
||||||
"State": "State",
|
"State": "State",
|
||||||
"State - Tooltip": "State - Tooltip",
|
"State - Tooltip": "State - Tooltip",
|
||||||
"Swagger": "Swagger",
|
"Swagger": "Swagger",
|
||||||
|
@ -188,6 +188,7 @@
|
|||||||
"Signup application - Tooltip": "Signup application - Tooltip",
|
"Signup application - Tooltip": "Signup application - Tooltip",
|
||||||
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
|
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
|
||||||
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
||||||
|
"Sorry, you do not have permission to access this page.": "Sorry, you do not have permission to access this page.",
|
||||||
"State": "State",
|
"State": "State",
|
||||||
"State - Tooltip": "State - Tooltip",
|
"State - Tooltip": "State - Tooltip",
|
||||||
"Swagger": "Swagger",
|
"Swagger": "Swagger",
|
||||||
|
@ -188,6 +188,7 @@
|
|||||||
"Signup application - Tooltip": "Signup application - Tooltip",
|
"Signup application - Tooltip": "Signup application - Tooltip",
|
||||||
"Sorry, the page you visited does not exist.": "Извините, посещенная вами страница не существует.",
|
"Sorry, the page you visited does not exist.": "Извините, посещенная вами страница не существует.",
|
||||||
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
|
||||||
|
"Sorry, you do not have permission to access this page.": "Извините, вы не имеете права доступа к этой странице.",
|
||||||
"State": "State",
|
"State": "State",
|
||||||
"State - Tooltip": "State - Tooltip",
|
"State - Tooltip": "State - Tooltip",
|
||||||
"Swagger": "Swagger",
|
"Swagger": "Swagger",
|
||||||
|
@ -188,6 +188,7 @@
|
|||||||
"Signup application - Tooltip": "表示用户注册时通过哪个应用注册的",
|
"Signup application - Tooltip": "表示用户注册时通过哪个应用注册的",
|
||||||
"Sorry, the page you visited does not exist.": "抱歉,您访问的页面不存在",
|
"Sorry, the page you visited does not exist.": "抱歉,您访问的页面不存在",
|
||||||
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "抱歉,您访问的用户不存在或您无权访问该用户",
|
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "抱歉,您访问的用户不存在或您无权访问该用户",
|
||||||
|
"Sorry, you do not have permission to access this page.": "抱歉,您无权访问该页面",
|
||||||
"State": "状态",
|
"State": "状态",
|
||||||
"State - Tooltip": "状态",
|
"State - Tooltip": "状态",
|
||||||
"Swagger": "API文档",
|
"Swagger": "API文档",
|
||||||
|
Reference in New Issue
Block a user