// Copyright 2023 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 {CopyOutlined} from "@ant-design/icons"; import copy from "copy-to-clipboard"; import React from "react"; import {Button, Card, Col, Input, InputNumber, Row, Select, Switch} from "antd"; import * as ApplicationBackend from "./backend/ApplicationBackend"; import * as OrganizationBackend from "./backend/OrganizationBackend"; import * as PricingBackend from "./backend/PricingBackend"; import * as PlanBackend from "./backend/PlanBackend"; import PricingPage from "./pricing/PricingPage"; import * as Setting from "./Setting"; import i18next from "i18next"; class PricingEditPage extends React.Component { constructor(props) { super(props); this.state = { classes: props, organizationName: props.organizationName !== undefined ? props.organizationName : props.match.params.organizationName, pricingName: props.match.params.pricingName, organizations: [], application: null, applications: [], pricing: null, plans: [], mode: props.location.mode !== undefined ? props.location.mode : "edit", }; } UNSAFE_componentWillMount() { this.getPricing(); this.getOrganizations(); this.getApplicationsByOrganization(this.state.organizationName); this.getUserApplication(); } getPricing() { PricingBackend.getPricing(this.state.organizationName, this.state.pricingName) .then((pricing) => { this.setState({ pricing: pricing, }); this.getPlans(pricing.owner); }); } getPlans(organizationName) { PlanBackend.getPlans(organizationName) .then((res) => { this.setState({ plans: res, }); }); } getOrganizations() { OrganizationBackend.getOrganizations("admin") .then((res) => { this.setState({ organizations: (res.msg === undefined) ? res : [], }); }); } parsePricingField(key, value) { if ([""].includes(key)) { value = Setting.myParseInt(value); } return value; } updatePricingField(key, value) { value = this.parsePricingField(key, value); const pricing = this.state.pricing; pricing[key] = value; this.setState({ pricing: pricing, }); } getApplicationsByOrganization(organizationName) { ApplicationBackend.getApplicationsByOrganization("admin", organizationName) .then((res) => { this.setState({ applications: (res.msg === undefined) ? res : [], }); }); } getUserApplication() { ApplicationBackend.getUserApplication(this.state.organizationName, this.state.userName) .then((application) => { this.setState({ application: application, }); }); } renderPricing() { return ( {this.state.mode === "add" ? i18next.t("pricing:New Pricing") : i18next.t("pricing:Edit Pricing")}     {this.state.mode === "add" ? : null} } style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner"> {Setting.getLabel(i18next.t("general:Organization"), i18next.t("general:Organization - Tooltip"))} : { this.updatePricingField("name", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Display name"), i18next.t("general:Display name - Tooltip"))} : { this.updatePricingField("displayName", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Description"), i18next.t("general:Description - Tooltip"))} : { this.updatePricingField("description", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Application"), i18next.t("general:Application - Tooltip"))} : { this.updatePricingField("plans", value); })} options={this.state.plans.map((plan) => Setting.getOption(`${plan.owner}/${plan.name}`, `${plan.owner}/${plan.name}`))} /> {Setting.getLabel(i18next.t("pricing:Has trial"), i18next.t("pricing:Has trial - Tooltip"))} : { this.updatePricingField("hasTrial", checked); }} /> {Setting.getLabel(i18next.t("pricing:Trial duration"), i18next.t("pricing:Trial duration - Tooltip"))} : { this.updatePricingField("trialDuration", value); }} /> {Setting.getLabel(i18next.t("general:Is enabled"), i18next.t("general:Is enabled - Tooltip"))} : { this.updatePricingField("isEnabled", checked); }} /> {Setting.getLabel(i18next.t("general:Preview"), i18next.t("general:Preview - Tooltip"))} : { this.renderPreview() } ); } submitPricingEdit(willExist) { const pricing = Setting.deepCopy(this.state.pricing); PricingBackend.updatePricing(this.state.organizationName, this.state.pricingName, pricing) .then((res) => { if (res.status === "ok") { Setting.showMessage("success", i18next.t("general:Successfully saved")); this.setState({ pricingName: this.state.pricing.name, }); if (willExist) { this.props.history.push("/pricings"); } else { this.props.history.push(`/pricings/${this.state.pricing.owner}/${this.state.pricing.name}`); } } else { Setting.showMessage("error", `${i18next.t("general:Failed to save")}: ${res.msg}`); this.updatePricingField("name", this.state.pricingName); } }) .catch(error => { Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`); }); } deletePricing() { PricingBackend.deletePricing(this.state.pricing) .then((res) => { if (res.status === "ok") { this.props.history.push("/pricings"); } else { Setting.showMessage("error", `${i18next.t("general:Failed to delete")}: ${res.msg}`); } }) .catch(error => { Setting.showMessage("error", `${i18next.t("general:Failed to connect to server")}: ${error}`); }); } render() { return (
{ this.state.pricing !== null ? this.renderPricing() : null }
{this.state.mode === "add" ? : null}
); } renderPreview() { const pricingUrl = `/select-plan/${this.state.pricing.owner}/${this.state.pricing.name}`; return ( ); } } export default PricingEditPage;