// 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. import React from "react"; import {Link} from "react-router-dom"; import {Button, Col, List, Popconfirm, Row, Table, Tooltip} from 'antd'; import {EditOutlined} from "@ant-design/icons"; import moment from "moment"; import * as Setting from "./Setting"; import * as ApplicationBackend from "./backend/ApplicationBackend"; import i18next from "i18next"; class ApplicationListPage extends React.Component { constructor(props) { super(props); this.state = { classes: props, applications: null, }; } UNSAFE_componentWillMount() { 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}`, logo: "https://cdn.casbin.com/logo/logo_1024x256.png", enablePassword: true, enableSignUp: true, providers: [], redirectUris: ["http://localhost:9000/callback"], expireInHours: 24 * 7, } } 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"), dataIndex: 'name', key: 'name', width: '150px', sorter: (a, b) => a.name.localeCompare(b.name), render: (text, record, index) => { return ( {text} ) } }, { title: i18next.t("general:Created time"), dataIndex: 'createdTime', key: 'createdTime', width: '160px', sorter: (a, b) => a.createdTime.localeCompare(b.createdTime), render: (text, record, index) => { return Setting.getFormattedDate(text); } }, { title: i18next.t("general:Display name"), dataIndex: 'displayName', key: 'displayName', // width: '100px', sorter: (a, b) => a.displayName.localeCompare(b.displayName), }, { title: 'Logo', dataIndex: 'logo', key: 'logo', width: '250px', render: (text, record, index) => { return ( {text} ) } }, { title: i18next.t("general:Organization"), dataIndex: 'organization', key: 'organization', width: '150px', sorter: (a, b) => a.organization.localeCompare(b.organization), render: (text, record, index) => { return ( {text} ) } }, { title: i18next.t("general:Providers"), dataIndex: 'providers', key: 'providers', width: '250px', render: (text, record, index) => { const providers = text; if (providers.length === 0) { return "(empty)"; } return ( { return (
) }} /> ) }, }, { title: i18next.t("general:Action"), dataIndex: '', key: 'op', width: '170px', render: (text, record, index) => { return (
this.deleteApplication(index)} >
) } }, ]; return (
(
{i18next.t("general:Applications")}    
)} loading={applications === null} /> ); } render() { return (
{ this.renderTable(this.state.applications) } ); } } export default ApplicationListPage;