casdoor/web/src/RoleListPage.js

222 lines
6.6 KiB
JavaScript
Raw Normal View History

2022-02-13 23:39:27 +08:00
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
2022-01-01 15:11:16 +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.
import React from "react";
import {Link} from "react-router-dom";
import {Button, Popconfirm, Switch, Table} from "antd";
2022-01-01 15:11:16 +08:00
import moment from "moment";
import * as Setting from "./Setting";
import * as RoleBackend from "./backend/RoleBackend";
import i18next from "i18next";
import BaseListPage from "./BaseListPage";
class RoleListPage extends BaseListPage {
newRole() {
const randomName = Setting.getRandomName();
return {
owner: "built-in",
name: `role_${randomName}`,
createdTime: moment().format(),
displayName: `New Role - ${randomName}`,
users: [],
roles: [],
isEnabled: true,
};
2022-01-01 15:11:16 +08:00
}
addRole() {
const newRole = this.newRole();
RoleBackend.addRole(newRole)
.then((res) => {
this.props.history.push({pathname: `/roles/${newRole.owner}/${newRole.name}`, mode: "add"});
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
)
.catch(error => {
Setting.showMessage("error", `Role failed to add: ${error}`);
});
}
deleteRole(i) {
RoleBackend.deleteRole(this.state.data[i])
.then((res) => {
Setting.showMessage("success", "Role deleted successfully");
this.setState({
data: Setting.deleteRow(this.state.data, i),
pagination: {total: this.state.pagination.total - 1},
});
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
)
.catch(error => {
Setting.showMessage("error", `Role failed to delete: ${error}`);
});
}
renderTable(roles) {
const columns = [
{
title: i18next.t("general:Organization"),
dataIndex: "owner",
key: "owner",
width: "120px",
2022-01-01 15:11:16 +08:00
sorter: true,
...this.getColumnSearchProps("owner"),
2022-01-01 15:11:16 +08:00
render: (text, record, index) => {
return (
<Link to={`/organizations/${text}`}>
{text}
</Link>
);
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
},
{
title: i18next.t("general:Name"),
dataIndex: "name",
key: "name",
width: "150px",
fixed: "left",
2022-01-01 15:11:16 +08:00
sorter: true,
...this.getColumnSearchProps("name"),
2022-01-01 15:11:16 +08:00
render: (text, record, index) => {
return (
<Link to={`/roles/${text}`}>
{text}
</Link>
);
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
},
{
title: i18next.t("general:Created time"),
dataIndex: "createdTime",
key: "createdTime",
width: "160px",
2022-01-01 15:11:16 +08:00
sorter: true,
render: (text, record, index) => {
return Setting.getFormattedDate(text);
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
},
{
title: i18next.t("general:Display name"),
dataIndex: "displayName",
key: "displayName",
width: "200px",
2022-01-01 15:11:16 +08:00
sorter: true,
...this.getColumnSearchProps("displayName"),
2022-01-01 15:11:16 +08:00
},
{
title: i18next.t("role:Sub users"),
dataIndex: "users",
key: "users",
2022-01-01 15:11:16 +08:00
// width: '100px',
sorter: true,
...this.getColumnSearchProps("users"),
2022-01-01 15:11:16 +08:00
render: (text, record, index) => {
return Setting.getTags(text);
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
},
{
title: i18next.t("role:Sub roles"),
dataIndex: "roles",
key: "roles",
2022-01-01 15:11:16 +08:00
// width: '100px',
sorter: true,
...this.getColumnSearchProps("roles"),
2022-01-01 15:11:16 +08:00
render: (text, record, index) => {
return Setting.getTags(text);
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
},
{
title: i18next.t("general:Is enabled"),
dataIndex: "isEnabled",
key: "isEnabled",
width: "120px",
2022-01-01 15:11:16 +08:00
sorter: true,
render: (text, record, index) => {
return (
<Switch disabled checkedChildren="ON" unCheckedChildren="OFF" checked={text} />
);
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +08:00
},
{
title: i18next.t("general:Action"),
dataIndex: "",
key: "op",
width: "170px",
2022-01-01 15:11:16 +08:00
fixed: (Setting.isMobile()) ? "false" : "right",
render: (text, record, index) => {
return (
<div>
<Button style={{marginTop: "10px", marginBottom: "10px", marginRight: "10px"}} type="primary" onClick={() => this.props.history.push(`/roles/${record.owner}/${record.name}`)}>{i18next.t("general:Edit")}</Button>
2022-01-01 15:11:16 +08:00
<Popconfirm
title={`Sure to delete role: ${record.name} ?`}
onConfirm={() => this.deleteRole(index)}
>
<Button style={{marginBottom: "10px"}} type="danger">{i18next.t("general:Delete")}</Button>
2022-01-01 15:11:16 +08:00
</Popconfirm>
</div>
);
2022-08-06 23:54:56 +08:00
},
2022-01-01 15:11:16 +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),
};
return (
<div>
<Table scroll={{x: "max-content"}} columns={columns} dataSource={roles} rowKey="name" size="middle" bordered pagination={paginationProps}
title={() => (
<div>
{i18next.t("general:Roles")}&nbsp;&nbsp;&nbsp;&nbsp;
<Button type="primary" size="small" onClick={this.addRole.bind(this)}>{i18next.t("general:Add")}</Button>
</div>
)}
loading={this.state.loading}
onChange={this.handleTableChange}
2022-01-01 15:11:16 +08:00
/>
</div>
);
}
fetch = (params = {}) => {
let field = params.searchedColumn, value = params.searchText;
let sortField = params.sortField, sortOrder = params.sortOrder;
if (params.type !== undefined && params.type !== null) {
field = "type";
value = params.type;
}
this.setState({loading: true});
2022-01-01 15:11:16 +08:00
RoleBackend.getRoles("", params.pagination.current, params.pagination.pageSize, field, value, sortField, sortOrder)
.then((res) => {
if (res.status === "ok") {
this.setState({
loading: false,
data: res.data,
pagination: {
...params.pagination,
total: res.data2,
},
searchText: params.searchText,
searchedColumn: params.searchedColumn,
});
}
});
};
}
export default RoleListPage;