casdoor/web/src/ApplicationListPage.js

239 lines
7.1 KiB
JavaScript
Raw Normal View History

2021-02-13 13:30:51 +08:00
// Copyright 2021 The casbin Authors. All Rights Reserved.
//
// 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";
2021-03-26 23:25:09 +08:00
import {Button, Col, List, Popconfirm, Row, Table, Tooltip} from 'antd';
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";
2021-02-13 12:15:19 +08:00
class ApplicationListPage extends React.Component {
constructor(props) {
super(props);
this.state = {
classes: props,
applications: null,
};
}
2021-03-27 11:38:15 +08:00
UNSAFE_componentWillMount() {
2021-02-13 12:15:19 +08:00
this.getApplications();
}
getApplications() {
ApplicationBackend.getApplications("admin")
.then((res) => {
this.setState({
applications: res,
});
});
}
newApplication() {
return {
owner: "admin", // this.props.account.applicationname,
name: `application_${this.state.applications.length}`,
createdTime: moment().format(),
displayName: `New Application - ${this.state.applications.length}`,
2021-03-21 15:31:31 +08:00
logo: "https://cdn.casbin.com/logo/logo_1024x256.png",
2021-03-26 21:55:39 +08:00
enablePassword: true,
enableSignUp: true,
2021-02-13 12:15:19 +08:00
providers: [],
2021-03-28 19:15:10 +08:00
redirectUris: ["http://localhost:9000/callback"],
2021-03-14 22:48:09 +08:00
expireInHours: 24 * 7,
2021-02-13 12:15:19 +08:00
}
}
addApplication() {
const newApplication = this.newApplication();
ApplicationBackend.addApplication(newApplication)
.then((res) => {
Setting.showMessage("success", `Application added successfully`);
this.setState({
applications: Setting.prependRow(this.state.applications, newApplication),
});
}
)
.catch(error => {
Setting.showMessage("error", `Application failed to add: ${error}`);
});
}
deleteApplication(i) {
ApplicationBackend.deleteApplication(this.state.applications[i])
.then((res) => {
Setting.showMessage("success", `Application deleted successfully`);
this.setState({
applications: Setting.deleteRow(this.state.applications, i),
});
}
)
.catch(error => {
Setting.showMessage("error", `Application failed to delete: ${error}`);
});
}
renderTable(applications) {
const columns = [
{
title: i18next.t("general:Name"),
2021-02-13 12:15:19 +08:00
dataIndex: 'name',
key: 'name',
width: '150px',
sorter: (a, b) => a.name.localeCompare(b.name),
render: (text, record, index) => {
return (
<Link to={`/applications/${text}`}>
{text}
</Link>
)
}
},
{
2021-04-28 00:13:50 +08:00
title: i18next.t("general:Created time"),
2021-02-13 12:15:19 +08:00
dataIndex: 'createdTime',
key: 'createdTime',
width: '160px',
sorter: (a, b) => a.createdTime.localeCompare(b.createdTime),
render: (text, record, index) => {
return Setting.getFormattedDate(text);
}
},
{
2021-04-28 00:13:50 +08:00
title: i18next.t("general:Display name"),
2021-02-13 12:15:19 +08:00
dataIndex: 'displayName',
key: 'displayName',
// width: '100px',
sorter: (a, b) => a.displayName.localeCompare(b.displayName),
},
{
title: 'Logo',
dataIndex: 'logo',
key: 'logo',
2021-05-14 15:55:50 +08:00
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>
)
}
},
{
title: i18next.t("general:Organization"),
2021-02-13 12:15:19 +08:00
dataIndex: 'organization',
key: 'organization',
2021-03-26 23:25:09 +08:00
width: '150px',
2021-02-13 12:15:19 +08:00
sorter: (a, b) => a.organization.localeCompare(b.organization),
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>
2021-02-13 12:15:19 +08:00
)
}
},
{
title: i18next.t("general:Providers"),
2021-02-13 12:15:19 +08:00
dataIndex: 'providers',
key: 'providers',
2021-05-14 15:55:50 +08:00
width: '300px',
2021-02-13 12:15:19 +08:00
render: (text, record, index) => {
2021-03-26 23:25:09 +08:00
const providers = text;
if (providers.length === 0) {
return "(empty)";
}
2021-02-13 12:15:19 +08:00
return (
2021-03-26 23:25:09 +08:00
<List
size="small"
dataSource={providers}
renderItem={(row, 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/${row}`)} />
</Tooltip>
<Link to={`/providers/${row}`}>
{row}
</Link>
</div>
</List.Item>
)
}}
/>
2021-02-13 12:15:19 +08:00
)
2021-03-26 23:25:09 +08:00
},
2021-02-13 12:15:19 +08:00
},
{
title: i18next.t("general:Action"),
2021-02-13 12:15:19 +08:00
dataIndex: '',
key: 'op',
width: '170px',
render: (text, record, index) => {
return (
<div>
<Button style={{marginTop: '10px', marginBottom: '10px', marginRight: '10px'}} type="primary" onClick={() => this.props.history.push(`/applications/${record.name}`)}>{i18next.t("general:Edit")}</Button>
2021-02-13 12:15:19 +08:00
<Popconfirm
title={`Sure to delete application: ${record.name} ?`}
onConfirm={() => this.deleteApplication(index)}
>
<Button style={{marginBottom: '10px'}} type="danger">{i18next.t("general:Delete")}</Button>
2021-02-13 12:15:19 +08:00
</Popconfirm>
</div>
)
}
},
];
return (
<div>
<Table columns={columns} dataSource={applications} rowKey="name" size="middle" bordered pagination={{pageSize: 100}}
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>
2021-02-13 12:15:19 +08:00
</div>
)}
loading={applications === null}
/>
</div>
);
}
render() {
return (
<div>
<Row style={{width: "100%"}}>
<Col span={1}>
</Col>
<Col span={22}>
{
this.renderTable(this.state.applications)
}
</Col>
<Col span={1}>
</Col>
</Row>
</div>
);
}
}
export default ApplicationListPage;