"use client";

import React, { useState, useRef, useMemo, Fragment } from "react";
import {
  Switch,
  Space,
  Checkbox,
  Button,
  Toast,
  TextArea,
  Form,
} from "antd-mobile";
import { useRouter, useSearchParams } from "next/navigation";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faAngleLeft } from "@fortawesome/free-solid-svg-icons";
import OwnInput from "@/components/OwnInput";
import requireAPI from "@/utils/requireAPI";

// getStreamerInfo

const superSingles = [
  { key: 0, text: "永久" },
  { key: 1, text: "按月生效" },
  { key: 2, text: "按季度生效" },
  { key: 3, text: "按半年生效" },
  { key: 4, text: "按年生效" },
];
// const superSingles = [
//   { key: 0, text: "永久" },
//   { key: 1, text: "按年生效" },
//   { key: 2, text: "按半年生效" },
//   { key: 3, text: "按季度生效" },
//   { key: 4, text: "按月生效" },
// ];
const ListItemWithCheckbox = ({
  superSingle,
  superSinglesContr,
  setSuperSinglesContr,
  superSingleCheckeds,
  index,
}) => {
  return (
    <li className="mt-4" onClick={() => {}}>
      <div onClick={(e) => e.stopPropagation()}>
        {/* <Radio
          value={superSingle.key}
          onChange={(value) => {
            const newFormData = { ...formData };
            newFormData.superSingle.forEach((el) => {
              el.enable = 0;
            });
            newFormData.superSingle[superSingle.key].enable = value;
            // newFormData.superSingle[superSingle.key].price = 0;
            // newFormData.superSingle[superSingle.key].wechatFree = false;
            setFormData(newFormData);
          }}
        >
          {superSingle.text}
        </Radio> */}
        <Checkbox
          value={index}
          onChange={(value) => {
            const newSuperSinglesContr = [...superSinglesContr];
            newSuperSinglesContr[index].enable = value;
            // newSuperSinglesContr[index].price = 0;
            // newSuperSinglesContr[index].wechatFree = false;
            setSuperSinglesContr(newSuperSinglesContr);
          }}
        >
          {superSingle.text}
        </Checkbox>
        <div
          // className={`mt-2 px-4 h-12 py-3 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center ${
          //   superSingleCheckeds != index
          //     ? "mt-0 px-0 py-0 hidden"
          //     : ""
          // }`}
          className={`mt-2 px-4 h-12 py-3 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center ${
            !superSingleCheckeds.includes(index) ? "mt-0 px-0 py-0 hidden" : ""
          }`}
        >
          <div className="flex items-center">
            <span className="mr-1 text-[#ffffffae] text-sm">¥</span>
            <OwnInput
              type="number"
              className="text-2xl"
              value={superSinglesContr[index].price}
              onChange={(value) => {
                const newSuperSinglesContr = [...superSinglesContr];
                newSuperSinglesContr[index].price = value;
                setSuperSinglesContr(newSuperSinglesContr);
              }}
            />
          </div>
          <div className="flex items-center">
            <span className="text-[#ffffff26] mr-2">|</span>
            <Checkbox
              block
              checked={superSinglesContr[index].wechatFree}
              onChange={(value) => {
                const newSuperSinglesContr = [...superSinglesContr];
                newSuperSinglesContr[index].wechatFree = value;
                setSuperSinglesContr(newSuperSinglesContr);
              }}
            >
              <p className="text-sm whitespace-nowrap">赠送微信</p>
            </Checkbox>
          </div>
        </div>
      </div>
    </li>
  );
};
export default function CreateProfile() {
  const router = useRouter();
  const [form] = Form.useForm();
  const [openSuper, setOpenSuper] = useState(false);
  const [isSubmitting, setIsSubmitting] = useState(false);
  const [superSingleCheckeds, setSuperSingleCheckeds] = useState([]);
  const [superSinglesContr, setSuperSinglesContr] = useState([
    { enable: false, price: 0, wechatFree: false, key: 0 },
    { enable: false, price: 0, wechatFree: false, key: 4 },
    { enable: false, price: 0, wechatFree: false, key: 3 },
    { enable: false, price: 0, wechatFree: false, key: 2 },
    { enable: false, price: 0, wechatFree: false, key: 1 },
  ]);
  // const [superSingleChecked, setSuperSingleChecked] = useState(0);
  const listItemWithCheckboxMemo = useMemo(() => {
    return superSingles.map((item, index) => (
      <Fragment key={item.key}>
        <ListItemWithCheckbox
          superSingle={item}
          superSinglesContr={superSinglesContr}
          setSuperSinglesContr={setSuperSinglesContr}
          // superSingleCheckeds={superSingleChecked}
          superSingleCheckeds={superSingleCheckeds}
          index={index}
        />
      </Fragment>
    ));
  }, [superSingleCheckeds, superSinglesContr]);

  const handleSubmit = async (newFormData) => {
    const { spaceIntro, spacePrice, ironFanPrice } = newFormData;
    const superSingle = [...superSinglesContr];
    const openSuperEveryFalse = Object.values(superSingle).every(
      (it) => !it.enable
    );
    if (openSuper && openSuperEveryFalse) {
      Toast.show({
        icon: "fail",
        content: "请完善内容后提交",
        position: "top",
      });
      return;
    }
    const _spacePrice = parseInt(spacePrice * 100, 10);
    const _ironFanPrice = parseInt(ironFanPrice * 100, 10);
    let isPrice = false;
    if (openSuper) {
      Object.values(superSingle).forEach((it) => {
        if (it.enable) {
          const superFanPrice = it.price;
          if (!superFanPrice) {
            Toast.show({
              icon: "fail",
              content: "请输入有效的超粉价格",
              position: "top",
            });
            isPrice = true;
            return;
          } else {
            const _superFanPrice = parseInt(superFanPrice * 100, 10);
            if (
              openSuper &&
              (isNaN(_superFanPrice) ||
                _superFanPrice < 100 ||
                _superFanPrice > 388800)
            ) {
              isPrice = true;
              Toast.show({
                icon: "fail",
                content: "请输入有效的超粉价格",
                position: "top",
              });
              return;
            }
            if (openSuper && _superFanPrice <= _ironFanPrice) {
              isPrice = true;
              Toast.show({
                icon: "fail",
                content: "请输入大于铁粉价格的超粉价格",
                position: "top",
              });
              return;
            }
          }
        }
      });
      // if (superSingleChecked == null) {
      //   Toast.show({
      //     icon: "fail",
      //     content: "请选择铁粉类型",
      //     position: "top",
      //   });
      // } else {
      //   const superChecked = superSingle.filter(
      //     (_, index) => index == superSingleChecked
      //   )[0];
      //   if (superChecked) {
      //     const superFanPrice = superChecked.price;
      //     if (!superFanPrice) {
      //       Toast.show({
      //         icon: "fail",
      //         content: "请填写超粉价格",
      //         position: "top",
      //       });
      //       isPrice = true;
      //       return;
      //     } else {
      //       const _superFanPrice = parseInt(superFanPrice * 100, 10);
      //       if (
      //         openSuper &&
      //         (isNaN(_superFanPrice) ||
      //           _superFanPrice < 100 ||
      //           _superFanPrice > 388800)
      //       ) {
      //         isPrice = true;
      //         Toast.show({
      //           icon: "fail",
      //           content: "请输入有效的超粉价格",
      //           position: "top",
      //         });
      //         return;
      //       }
      //       if (openSuper && _superFanPrice <= _ironFanPrice) {
      //         isPrice = true;
      //         Toast.show({
      //           icon: "fail",
      //           content: "请输入大于铁粉价格的超粉价格",
      //           position: "top",
      //         });
      //         return;
      //       }
      //     }
      //   }
      // }
    }
    if (isPrice) return;
    // 旧版本
    // const superfanList = superSingle.map((it, index) => ({
    //   period: index,
    //   enable: it.enable ? 1 : 0,
    //   price: parseInt(it.price * 100, 10),
    //   is_superfanship_give_wechat: it.wechatFree ? 1 : 0,
    // }));
    // const superfanObj = superfanList.filter((it) => it.enable)[0];
    // 新版本代码
    const superfan_price_list = superSinglesContr.map((it) => ({
      period: it.key,
      enable: it.enable ? 1 : 0,
      price: parseInt(it.price * 100, 10),
      is_superfanship_give_wechat: it.wechatFree ? 1 : 0,
    }));
    setIsSubmitting(true);
    try {
      const body = {
        profile: spaceIntro,
        admission_price: _spacePrice,
        ironfanship_price: _ironFanPrice,
        is_superfanship_enabled: openSuper ? 1 : 0,
        // 旧版本
        // superfanship_price: superfanObj.price,
        // superfanship_valid_period: superfanObj.period,
        // is_superfanship_give_wechat: superfanObj.is_superfanship_give_wechat,
        // 新版本
        superfan_price_list,
      };
      const _data = await requireAPI(
        "POST",
        "/api/zone/create",
        {
          body,
        },
        true
      );
      if (_data.ret === -1) {
        Toast.show({
          icon: "fail",
          content: _data.msg,
          position: "top",
        });
        return;
      }
      Toast.show({
        icon: "success",
        content: "开通空间成功!空间简介将在审核完成后生效。",
        position: "top",
      });
      router.back();
    } catch (error) {
      console.error(error);
    } finally {
      setIsSubmitting(false);
    }
  };
  const messageEle = (message) => <p className="text-right">{message}</p>;
  return (
    <div>
      {/* 头部标题 */}
      <div className="p-4 fixed top-0 z-10 w-full bg-black">
        <div className="w-9 h-9 flex items-center justify-center bg-[#FFFFFF1A] rounded-full absolute">
          <FontAwesomeIcon
            icon={faAngleLeft}
            style={{ maxWidth: "12px" }}
            size="xl"
            onClick={() => {
              router.back();
            }}
          />
        </div>
        <p className="text-base text-center leading-9 whitespace-nowrap">
          开通空间
        </p>
      </div>
      {/* 内容 */}
      <div className="pt-16 p-4">
        <Form
          requiredMarkStyle="none"
          form={form}
          initialValues={{
            spaceIntro: "",
            spacePrice: undefined,
            ironFanPrice: undefined,
          }}
          onFinishFailed={(error) => {
            Toast.show({
              icon: "fail",
              content: "请检查所填内容",
              position: "top",
            });
          }}
          onFinish={handleSubmit}
          onValuesChange={(values) => {
            // setFormData(values);
          }}
          // hasFeedback={false}
          validateMessages={{
            required: (name) => {
              return <p className="text-right">{`请输入${name}`}</p>;
            },
          }}
        >
          <div className="mt-4">
            <div className="flex justify-between items-center">
              <p className="text-sm">
                <span className="whitespace-nowrap">空间介绍</span>
                <span className="text-[#f00]">*</span>
              </p>
              <p className="text-[#ffffffae] text-xs"></p>
            </div>
            <Form.Item
              required
              name="spaceIntro"
              // childElementPosition="left"
              layout="vertical"
              rules={[
                {
                  required: true,
                  message: messageEle("请输入空间介绍"),
                  // 匹配两为小数
                  // pattern: /^[0-9]+(.[0-9]{1,2})?$/,
                  // validator: (rule, value) => {
                  //   const regex = /^[0-9]+(.[0-9]{1,2})?$/;
                  //   const result = regex.test(value);
                  //   if (value < 0 || value > 3888 || !result) {
                  //     return Promise.reject(
                  //       messageEle("请填写你的空间介绍")
                  //     );
                  //   }
                  //   return Promise.resolve();
                  // },
                },
              ]}
            >
              <div className="mt-2 px-4 py-3 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center">
                <TextArea
                  id="spaceIntro"
                  style={{ "--font-size": `16px` }}
                  placeholder="介绍下你的空间吧~"
                />
              </div>
            </Form.Item>
          </div>
          <div className="mt-3">
            <Form.Item
              required
              name="spacePrice"
              // childElementPosition="left"
              label={
                <div className="flex justify-between items-center">
                  <p className="text-sm whitespace-nowrap">
                    <span>解锁空间价格</span>
                    <span className="text-[#f00]">*</span>
                  </p>
                  <p className="text-[#ffffffae] text-xs">
                    (成为空间成员,可查看免费帖)
                  </p>
                </div>
              }
              layout="vertical"
              rules={[
                {
                  required: true,
                  // message: messageEle("请填写正确的解锁空间的价格"),
                  // 匹配两为小数
                  // pattern: /^[0-9]+(.[0-9]{1,2})?$/,
                  validator: (rule, value) => {
                    const regex = /^[0-9]+(.[0-9]{1,2})?$/;
                    const result = regex.test(value);
                    if (value < 0 || value > 3888 || !result) {
                      return Promise.reject(
                        messageEle("请输入有效的解锁空间价格")
                      );
                    }
                    return Promise.resolve();
                  },
                },
              ]}
            >
              <div className="mt-2 px-4 py-3 h-12 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center">
                <div className="flex items-center">
                  <span className="mr-1 text-[#ffffffae] text-sm">¥</span>
                  <Form.Item name="spacePrice">
                    <OwnInput
                      id="spacePriceInput"
                      type="number"
                      placeholder="价格区间为0~3888"
                      inputClassName="placeholder:text-[14px]"
                    />
                  </Form.Item>
                </div>
                <label
                  htmlFor="spacePriceInput"
                  className="text-[#ffffff40] text-xs whitespace-nowrap"
                >
                  点击编辑
                </label>
              </div>
            </Form.Item>
          </div>
          <div className="mt-3">
            {/* <div className="flex justify-between items-center">
              <p className="text-sm whitespace-nowrap">
                <span>铁粉价格</span>
                <span className="text-[#f00]">*</span>
              </p>
              <p className="text-[#ffffffae] text-xs">
                (累计消费达成后解锁铁粉权益)
              </p>
            </div> */}
            <Form.Item
              name="ironFanPrice"
              // childElementPosition="left"
              label={
                <div className="flex justify-between items-center">
                  <p className="text-sm whitespace-nowrap">
                    <span className="text-white">铁粉价格</span>
                    <span className="text-[#f00]">*</span>
                  </p>
                  <p className="text-[#ffffffb3] text-xs">
                    (累计消费达成后解锁铁粉权益)
                  </p>
                </div>
              }
              layout="vertical"
              rules={[
                {
                  required: true,
                  // message: messageEle("请填写正确的铁粉价格"),
                  // 匹配两为小数
                  // pattern: /^[0-9]+(.[0-9]{1,2})?$/,
                  validator: (rule, value) => {
                    const regex = /^[0-9]+(.[0-9]{1,2})?$/;
                    const result = regex.test(value);
                    if (value < 1 || value > 3888 || !result) {
                      return Promise.reject(messageEle("请输入有效的铁粉价格"));
                    }
                    return Promise.resolve();
                  },
                },
              ]}
            >
              <div className="mt-2 px-4 py-3 h-12 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center">
                <div className="flex items-center">
                  <span className="mr-1 text-[#ffffffae] text-sm">¥</span>
                  <Form.Item name="ironFanPrice">
                    <OwnInput
                      id="ironPriceInput"
                      type="number"
                      placeholder="价格区间为1~3888"
                      inputClassName="placeholder:text-[14px]"
                    />
                  </Form.Item>
                </div>
                <label
                  htmlFor="ironPriceInput"
                  className="text-[#ffffff40] text-xs whitespace-nowrap"
                >
                  点击编辑
                </label>
              </div>
            </Form.Item>
          </div>
          <div className="mt-3">
            <div className="flex justify-between items-center">
              <p className="text-sm">
                <span>超粉功能</span>
                <span className="text-[#f00]">*</span>
              </p>
              <div className="flex items-center">
                <p className="text-[#ffffffae] text-xs mr-2">是否启用</p>
                <Form.Item>
                  <Switch
                    checked={openSuper}
                    onChange={() => setOpenSuper((old) => !old)}
                    style={{
                      "--checked-color": "#FF669E",
                      "--height": "24px",
                      "--width": "36px",
                    }}
                  />
                </Form.Item>
              </div>
            </div>
          </div>
          {openSuper && (
            <Form.Item
              name="superSingleCheckeds"
              // childElementPosition="left"
              label={
                <div className="flex justify-between items-center">
                  <p className="text-sm">
                    <span className="text-white">超粉单次开通类型</span>
                    <span className="text-[#f00]">*</span>
                  </p>
                  <p className="text-[#ffffffb3] text-xs">
                    (付费后解锁对应期限超粉权益)
                  </p>
                </div>
              }
              layout="vertical"
            >
              <Space direction="vertical" block>
                {/* <Radio.Group
                      value={superSingleChecked}
                      // value={superSingleCheckeds}
                      onChange={(values) => {
                        setSuperSingleChecked(values);
                        // setSuperSingleCheckeds(values);
                      }}
                    >
                      <ul>{listItemWithCheckboxMemo}</ul>
                    </Radio.Group> */}
                <Checkbox.Group
                  value={superSingleCheckeds}
                  onChange={(values) => {
                    setSuperSingleCheckeds(values);
                  }}
                >
                  <ul>{listItemWithCheckboxMemo}</ul>
                </Checkbox.Group>
              </Space>
            </Form.Item>
          )}
          <Form.Item label={null} className="mt-10 flex-1 flex justify-center">
            <Button
              size="middle"
              shape="rounded"
              block
              style={{
                "--background-color": "#FF669E",
                paddingLeft: "32px",
                paddingRight: "32px",
              }}
              type="primary"
              htmlType="submit"
              disabled={isSubmitting}
            >
              {isSubmitting ? "正在保存..." : "保存设置"}
            </Button>
          </Form.Item>
        </Form>
      </div>
    </div>
  );
}