// Copyright 2021 The Casdoor 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 {DeleteOutlined, DownOutlined, UpOutlined} from "@ant-design/icons"; import {Button, Col, Row, Select, Switch, Table, Tooltip} from "antd"; import * as Setting from "./Setting"; import i18next from "i18next"; const {Option} = Select; class SignupTable extends React.Component { constructor(props) { super(props); this.state = { classes: props, }; } updateTable(table) { this.props.onUpdateTable(table); } updateField(table, index, key, value) { table[index][key] = value; this.updateTable(table); } addRow(table) { const row = {name: Setting.getNewRowNameForTable(table, "Please select a signup item"), visible: true, required: true, rule: "None"}; if (table === undefined) { table = []; } table = Setting.addRow(table, row); this.updateTable(table); } deleteRow(table, i) { table = Setting.deleteRow(table, i); this.updateTable(table); } upRow(table, i) { table = Setting.swapRow(table, i - 1, i); this.updateTable(table); } downRow(table, i) { table = Setting.swapRow(table, i, i + 1); this.updateTable(table); } renderTable(table) { const columns = [ { title: i18next.t("provider:Name"), dataIndex: "name", key: "name", render: (text, record, index) => { const items = [ {name: "Username", displayName: i18next.t("signup:Username")}, {name: "ID", displayName: i18next.t("general:ID")}, {name: "Display name", displayName: i18next.t("general:Display name")}, {name: "Affiliation", displayName: i18next.t("user:Affiliation")}, {name: "Country/Region", displayName: i18next.t("user:Country/Region")}, {name: "ID card", displayName: i18next.t("user:ID card")}, {name: "Email", displayName: i18next.t("general:Email")}, {name: "Password", displayName: i18next.t("forget:Password")}, {name: "Confirm password", displayName: i18next.t("forget:Confirm")}, {name: "Phone", displayName: i18next.t("general:Phone")}, {name: "Agreement", displayName: i18next.t("signup:Agreement")}, ]; const getItemDisplayName = (text) => { const item = items.filter(item => item.name === text); if (item.length === 0) { return ""; } return item[0].displayName; }; return ( ); }, }, { title: i18next.t("provider:visible"), dataIndex: "visible", key: "visible", width: "120px", render: (text, record, index) => { if (record.name === "ID") { return null; } return ( { this.updateField(table, index, "visible", checked); if (!checked) { this.updateField(table, index, "required", false); } else { this.updateField(table, index, "required", true); } }} /> ); }, }, { title: i18next.t("provider:required"), dataIndex: "required", key: "required", width: "120px", render: (text, record, index) => { if (!record.visible) { return null; } return ( { this.updateField(table, index, "required", checked); }} /> ); }, }, { title: i18next.t("provider:prompted"), dataIndex: "prompted", key: "prompted", width: "120px", render: (text, record, index) => { if (record.name === "ID") { return null; } if (record.visible && record.name !== "Country/Region") { return null; } return ( { this.updateField(table, index, "prompted", checked); }} /> ); }, }, { title: i18next.t("application:rule"), dataIndex: "rule", key: "rule", width: "155px", render: (text, record, index) => { let options = []; if (record.name === "ID") { options = [ {id: "Random", name: "Random"}, {id: "Incremental", name: "Incremental"}, ]; } else if (record.name === "Display name") { options = [ {id: "None", name: "None"}, {id: "Real name", name: "Real name"}, {id: "First, last", name: "First, last"}, ]; } else if (record.name === "Email") { options = [ {id: "Normal", name: "Normal"}, {id: "No verification", name: "No verification"}, ]; } if (options.length === 0) { return null; } return ( ); }, }, { title: i18next.t("general:Action"), key: "action", width: "100px", render: (text, record, index) => { return (
); }, }, ]; return ( (
{this.props.title}    
)} /> ); } render() { return (
{ this.renderTable(this.props.table) } ); } } export default SignupTable;