casdoor/web/src/ApplicationListPage.js

306 lines
11 KiB
JavaScript
Raw Normal View History

2022-02-13 23:39:27 +08:00
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
2021-02-13 13:30:51 +08:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2021-02-13 12:15:19 +08:00
import React from "react";
import {Link} from "react-router-dom";
import {Button, Col, List, Row, Table, Tooltip} from "antd";
2021-03-26 23:25:09 +08:00
import {EditOutlined} from "@ant-design/icons";
2021-02-13 12:15:19 +08:00
import moment from "moment";
import * as Setting from "./Setting";
import * as ApplicationBackend from "./backend/ApplicationBackend";
import i18next from "i18next";
import BaseListPage from "./BaseListPage";
import PopconfirmModal from "./common/modal/PopconfirmModal";
2021-02-13 12:15:19 +08:00
class ApplicationListPage extends BaseListPage {
constructor(props) {
super(props);
}
2021-02-13 12:15:19 +08:00
newApplication() {
2021-12-12 18:51:12 +08:00
const randomName = Setting.getRandomName();
const organizationName = Setting.getRequestOrganization(this.props.account);
2021-02-13 12:15:19 +08:00
return {
owner: "admin", // this.props.account.applicationName,
name: `application_${randomName}`,
organization: organizationName,
2021-02-13 12:15:19 +08:00
createdTime: moment().format(),
displayName: `New Application - ${randomName}`,
logo: `${Setting.StaticBaseUrl}/img/casdoor-logo_1185x256.png`,
2021-03-26 21:55:39 +08:00
enablePassword: true,
enableSignUp: true,
enableSigninSession: false,
2021-12-28 17:13:45 +08:00
enableCodeSignin: false,
enableSamlCompress: false,
2022-06-22 00:08:46 +08:00
providers: [
2023-10-20 23:10:43 +08:00
{name: "provider_captcha_default", canSignUp: false, canSignIn: false, canUnlink: false, prompted: false, signupGroup: "", rule: ""},
2022-06-22 00:08:46 +08:00
],
SigninMethods: [
{name: "Password", displayName: "Password", rule: "All"},
{name: "Verification code", displayName: "Verification code", rule: "All"},
{name: "WebAuthn", displayName: "WebAuthn", rule: "None"},
],
2021-06-16 15:25:54 +08:00
signupItems: [
{name: "ID", visible: false, required: true, rule: "Random"},
{name: "Username", visible: true, required: true, rule: "None"},
{name: "Display name", visible: true, required: true, rule: "None"},
{name: "Password", visible: true, required: true, rule: "None"},
{name: "Confirm password", visible: true, required: true, rule: "None"},
{name: "Email", visible: true, required: true, rule: "Normal"},
2021-06-16 15:25:54 +08:00
{name: "Phone", visible: true, required: true, rule: "None"},
{name: "Agreement", visible: true, required: true, rule: "None"},
],
2022-02-08 20:59:20 +08:00
cert: "cert-built-in",
2021-03-28 19:15:10 +08:00
redirectUris: ["http://localhost:9000/callback"],
2021-12-18 16:16:34 +08:00
tokenFormat: "JWT",
2021-03-14 22:48:09 +08:00
expireInHours: 24 * 7,
refreshExpireInHours: 24 * 7,
formOffset: 2,
};
2021-02-13 12:15:19 +08:00
}
addApplication() {
const newApplication = this.newApplication();
ApplicationBackend.addApplication(newApplication)
.then((res) => {
if (res.status === "ok") {
this.props.history.push({pathname: `/applications/${newApplication.organization}/${newApplication.name}`, mode: "add"});
Setting.showMessage("success", i18next.t("general:Successfully added"));
} else {
Setting.showMessage("error", `${i18next.t("general:Failed to add")}: ${res.msg}`);
}
})
2021-02-13 12:15:19 +08:00
.catch(error => {
Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`);
2021-02-13 12:15:19 +08:00
});
}
deleteApplication(i) {
ApplicationBackend.deleteApplication(this.state.data[i])
2021-02-13 12:15:19 +08:00
.then((res) => {
if (res.status === "ok") {
Setting.showMessage("success", i18next.t("general:Successfully deleted"));
this.setState({
data: Setting.deleteRow(this.state.data, i),
pagination: {total: this.state.pagination.total - 1},
});
} else {
Setting.showMessage("error", `${i18next.t("general:Failed to delete")}: ${res.msg}`);
}
})
2021-02-13 12:15:19 +08:00
.catch(error => {
Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`);
2021-02-13 12:15:19 +08:00
});
}
renderTable(applications) {
const columns = [
{
title: i18next.t("general:Name"),
dataIndex: "name",
key: "name",
width: "150px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("name"),
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return (
<Link to={`/applications/${record.organization}/${text}`}>
2021-02-13 12:15:19 +08:00
{text}
</Link>
);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
2021-04-28 00:13:50 +08:00
title: i18next.t("general:Created time"),
dataIndex: "createdTime",
key: "createdTime",
width: "160px",
sorter: true,
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return Setting.getFormattedDate(text);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
2021-04-28 00:13:50 +08:00
title: i18next.t("general:Display name"),
dataIndex: "displayName",
key: "displayName",
2021-02-13 12:15:19 +08:00
// width: '100px',
sorter: true,
...this.getColumnSearchProps("displayName"),
2021-02-13 12:15:19 +08:00
},
{
title: "Logo",
dataIndex: "logo",
key: "logo",
width: "200px",
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return (
2021-03-27 11:38:15 +08:00
<a target="_blank" rel="noreferrer" href={text}>
2021-02-13 12:15:19 +08:00
<img src={text} alt={text} width={150} />
</a>
);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("general:Organization"),
dataIndex: "organization",
key: "organization",
width: "150px",
sorter: true,
...this.getColumnSearchProps("organization"),
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return (
2021-03-26 21:58:10 +08:00
<Link to={`/organizations/${text}`}>
2021-02-13 12:15:19 +08:00
{text}
2021-03-26 21:58:10 +08:00
</Link>
);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("general:Providers"),
dataIndex: "providers",
key: "providers",
...this.getColumnSearchProps("providers"),
// width: '600px',
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
2021-03-26 23:25:09 +08:00
const providers = text;
2023-05-16 22:17:39 +08:00
if (providers === null || providers.length === 0) {
2023-03-19 20:13:07 +08:00
return `(${i18next.t("general:empty")})`;
2021-03-26 23:25:09 +08:00
}
const half = Math.floor((providers.length + 1) / 2);
const getList = (providers) => {
return (
<List
size="small"
locale={{emptyText: " "}}
dataSource={providers}
renderItem={(providerItem, i) => {
return (
<List.Item>
<div style={{display: "inline"}}>
<Tooltip placement="topLeft" title="Edit">
<Button style={{marginRight: "5px"}} icon={<EditOutlined />} size="small" onClick={() => Setting.goToLinkSoft(this, `/providers/${record.organization}/${providerItem.name}`)} />
</Tooltip>
<Link to={`/providers/${record.organization}/${providerItem.name}`}>
{providerItem.name}
</Link>
</div>
</List.Item>
);
}}
/>
);
};
2021-02-13 12:15:19 +08:00
return (
<div>
<Row>
<Col span={12}>
{
getList(providers.slice(0, half))
}
</Col>
<Col span={12}>
{
getList(providers.slice(half))
}
</Col>
</Row>
</div>
);
2021-03-26 23:25:09 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("general:Action"),
dataIndex: "",
key: "op",
width: "170px",
fixed: (Setting.isMobile()) ? "false" : "right",
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
return (
<div>
<Button style={{marginTop: "10px", marginBottom: "10px", marginRight: "10px"}} type="primary" onClick={() => this.props.history.push(`/applications/${record.organization}/${record.name}`)}>{i18next.t("general:Edit")}</Button>
<PopconfirmModal
title={i18next.t("general:Sure to delete") + `: ${record.name} ?`}
2021-02-13 12:15:19 +08:00
onConfirm={() => this.deleteApplication(index)}
disabled={record.name === "app-built-in"}
2021-02-13 12:15:19 +08:00
>
</PopconfirmModal>
2021-02-13 12:15:19 +08:00
</div>
);
2022-08-06 23:54:56 +08:00
},
2021-02-13 12:15:19 +08:00
},
];
const paginationProps = {
total: this.state.pagination.total,
showQuickJumper: true,
showSizeChanger: true,
showTotal: () => i18next.t("general:{total} in total").replace("{total}", this.state.pagination.total),
};
2021-02-13 12:15:19 +08:00
return (
<div>
<Table scroll={{x: "max-content"}} columns={columns} dataSource={applications} rowKey={(record) => `${record.owner}/${record.name}`} size="middle" bordered pagination={paginationProps}
title={() => (
<div>
{i18next.t("general:Applications")}&nbsp;&nbsp;&nbsp;&nbsp;
<Button type="primary" size="small" onClick={this.addApplication.bind(this)}>{i18next.t("general:Add")}</Button>
</div>
)}
loading={this.state.loading}
onChange={this.handleTableChange}
2021-02-13 12:15:19 +08:00
/>
</div>
);
}
fetch = (params = {}) => {
const field = params.searchedColumn, value = params.searchText;
const sortField = params.sortField, sortOrder = params.sortOrder;
this.setState({loading: true});
(Setting.isDefaultOrganizationSelected(this.props.account) ? ApplicationBackend.getApplications("admin", params.pagination.current, params.pagination.pageSize, field, value, sortField, sortOrder) :
ApplicationBackend.getApplicationsByOrganization("admin", Setting.getRequestOrganization(this.props.account), params.pagination.current, params.pagination.pageSize, field, value, sortField, sortOrder))
.then((res) => {
this.setState({
loading: false,
});
if (res.status === "ok") {
this.setState({
data: res.data,
pagination: {
...params.pagination,
total: res.data2,
},
searchText: params.searchText,
searchedColumn: params.searchedColumn,
});
} else {
2023-02-18 16:21:12 +08:00
if (Setting.isResponseDenied(res)) {
this.setState({
isAuthorized: false,
});
} else {
Setting.showMessage("error", res.msg);
}
}
});
};
2021-02-13 12:15:19 +08:00
}
export default ApplicationListPage;