import {
View,
Text,
TextInput,
ScrollView,
ActivityIndicator,
KeyboardAvoidingView,
TouchableOpacity,
Platform,
} from "react-native";
import React, { useState, useEffect, useMemo, useRef } from "react";
import { Button, CheckBox, Switch } from "@rneui/themed";
import { useTailwind } from "tailwind-rn";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import Toast from "react-native-toast-message";
import requireAPI from "../../../utils/requireAPI";
import { get } from "../../../utils/storeInfo";
import { getStreamerInfo } from "../../../api/space";
const superSingles = [
{ key: 0, index: 0, text: "永久" },
{ key: 4, index: 1, text: "按年生效" },
{ key: 3, index: 2, text: "按半年生效" },
{ key: 2, index: 3, text: "按季度生效" },
{ key: 1, index: 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,
setSuperSingleCheckeds,
index,
}) => {
const tailwind = useTailwind();
return (
{
e.stopPropagation();
const newSuperSinglesContr = [...superSinglesContr];
newSuperSinglesContr[index].enable =
!superSingleCheckeds.includes(index);
// newSuperSinglesContr[index].price = "0";
// newSuperSinglesContr[index].wechatFree = false;
setSuperSinglesContr(newSuperSinglesContr);
if (superSingleCheckeds.includes(index)) {
setSuperSingleCheckeds(() => {
const newSuperSingleCheckeds = [...superSingleCheckeds];
newSuperSingleCheckeds.splice(
newSuperSingleCheckeds.indexOf(index),
1
);
return newSuperSingleCheckeds;
});
} else {
setSuperSingleCheckeds(superSingleCheckeds.concat(index));
}
}}
// checkedIcon="dot-circle-o"
// uncheckedIcon="circle-o"
iconType="ionicon"
checkedIcon="checkmark-circle"
uncheckedIcon="ellipse-outline"
checkedColor="#FF669E"
containerStyle={tailwind("p-0 m-0 bg-transparent")}
size={24}
>
{superSingle.text}
¥
{
const newSuperSinglesContr = [...superSinglesContr];
newSuperSinglesContr[index].price = value;
setSuperSinglesContr(newSuperSinglesContr);
}}
style={{
...tailwind("text-xl text-white"),
// maxWidth: 200,
minWidth: 150,
}}
/>
|
{
const newSuperSinglesContr = [...superSinglesContr];
newSuperSinglesContr[index].wechatFree =
!newSuperSinglesContr[index].wechatFree;
setSuperSinglesContr(newSuperSinglesContr);
}}
iconType="ionicon"
checkedIcon="checkmark-circle"
uncheckedIcon="ellipse-outline"
checkedColor="#FF669E"
containerStyle={tailwind("p-0 m-0 bg-transparent")}
size={20}
>
赠送微信
);
};
export default function SpacePaymentSetting({ navigation, route }) {
const tailwind = useTailwind();
const insets = useSafeAreaInsets();
const [openSuper, setOpenSuper] = useState(true);
const [spacePrice, setSpacePrice] = useState("");
const [spacePriceAble, setSpacePriceAble] = useState(false);
const [ironFanPrice, setIronFanPrice] = useState("");
const [tiefenPriceAble, setTiefenPriceAble] = 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 [spacePriceInfo, setSpacePriceInfo] = useState(null);
const spacePriceRef = useRef(null);
const ironFanPriceRef = useRef(null);
useEffect(() => {
const account = get("account");
getStreamerInfo(Number(account.mid)).then((res) => {
// 新版本
const priceList = res.superfan_price_list ?? [
{
enable: false,
price: "0",
is_superfanship_give_wechat: false,
key: 0,
},
{
enable: false,
price: "0",
is_superfanship_give_wechat: false,
key: 4,
},
{
enable: false,
price: "0",
is_superfanship_give_wechat: false,
key: 3,
},
{
enable: false,
price: "0",
is_superfanship_give_wechat: false,
key: 2,
},
{
enable: false,
price: "0",
is_superfanship_give_wechat: false,
key: 1,
},
];
const haveChecked = priceList
.map((it, index) => ({ ...it, index }))
.filter((it) => it.enable);
// if (haveChecked.length > 0) {
// setSuperSingleChecked(haveChecked[0].period);
// }
setSuperSingleCheckeds(
priceList
.map((it, index) => ({ ...it, index }))
.filter((it) => it.enable)
.map((it) => superSingles[it.index].index)
);
setOpenSuper(!!res.is_superfanship_enabled);
setSuperSinglesContr(
priceList.map((it, index) => ({
enable: !!it.enable,
price: (it.price / 100).toString(),
wechatFree: !!it.is_superfanship_give_wechat,
key: index ? 5 - index : index,
}))
);
setSpacePriceInfo(res);
});
}, []);
useEffect(() => {
if (!spacePriceInfo) return;
const { admission_price, ironfanship_price } = spacePriceInfo;
if (admission_price > -1) {
setSpacePrice((admission_price / 100).toString());
}
if (ironfanship_price > 0) {
setIronFanPrice((ironfanship_price / 100).toString());
}
}, [spacePriceInfo]);
const listItemWithCheckboxMemo = useMemo(() => {
return superSingles.map((item, index) => (
));
}, [superSingleCheckeds, superSinglesContr]);
const handleSubmit = async () => {
const superSingle = [...superSinglesContr];
const openSuperEveryFalse = Object.values(superSingle).every(
(it) => !it.enable
);
if (!spacePrice || !ironFanPrice || (openSuper && openSuperEveryFalse)) {
Toast.show({
type: "error",
text1: "请完善档位内容后提交",
topOffset: 60,
});
return;
}
const _spacePrice = parseInt(spacePrice * 100, 10);
if (isNaN(_spacePrice) || _spacePrice < 0 || _spacePrice > 388800) {
Toast.show({
type: "error",
text1: "请输入有效的解锁空间价格",
topOffset: 60,
});
return;
}
const _ironFanPrice = parseInt(ironFanPrice * 100, 10);
if (isNaN(_ironFanPrice) || _ironFanPrice < 100 || _ironFanPrice > 388800) {
Toast.show({
type: "error",
text1: "请输入有效的铁粉价格",
topOffset: 60,
});
return;
}
let isPrice = false;
if (openSuper) {
Object.values(superSingle).forEach((it) => {
if (it.enable) {
const superFanPrice = it.price;
if (!superFanPrice) {
Toast.show({
type: "error",
text1: "请填写超粉价格",
topOffset: 60,
});
isPrice = true;
return;
} else {
const _superFanPrice = parseInt(superFanPrice * 100, 10);
if (
openSuper &&
(isNaN(_superFanPrice) ||
_superFanPrice < 100 ||
_superFanPrice > 388800)
) {
isPrice = true;
Toast.show({
type: "error",
text1: "请输入有效的超粉价格",
topOffset: 60,
});
return;
}
if (openSuper && _superFanPrice <= _ironFanPrice) {
isPrice = true;
Toast.show({
type: "error",
text1: "请输入大于铁粉价格的超粉价格",
topOffset: 60,
});
return;
}
}
}
});
}
if (isPrice) return;
if (isSubmitting) return;
const superfan_price_list = superSinglesContr.map((it, index) => ({
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 = {
id: parseInt(route.params.data.id, 10),
admission_price: parseInt(spacePrice * 100, 10),
ironfanship_price: parseInt(ironFanPrice * 100, 10),
is_superfanship_enabled: openSuper ? 1 : 0,
superfan_price_list,
};
const _data = await requireAPI(
"POST",
"/api/zone/update",
{
body,
},
true
);
if (_data.ret === -1) {
Toast.show({
icon: "error",
content: _data.msg,
position: "top",
});
return;
}
// Toast.show({
// icon: "success",
// content: "修改成功,请重进空间刷新查看",
// position: "top",
// });
navigation.goBack();
} catch (error) {
console.error(error);
} finally {
setIsSubmitting(false);
}
};
return (
{/* 内容 */}
解锁空间价格
*
(成为空间成员,可查看免费帖)
{
spacePriceRef.current && spacePriceRef.current.focus();
}}
style={tailwind(
"mt-2 px-4 py-3 h-12 rounded-lg bg-[#FFFFFF1A] flex-row justify-between items-center"
)}
>
¥
点击编辑
铁粉价格
*
(累计消费达成后解锁铁粉权益)
{
ironFanPriceRef.current && ironFanPriceRef.current.focus();
}}
style={tailwind(
"mt-2 px-4 py-3 h-12 rounded-lg bg-[#FFFFFF1A] flex-row justify-between items-center"
)}
>
¥
点击编辑
超粉功能
是否启用
setOpenSuper(value)}
thumbColor="#ffffff"
trackColor={{ true: "#FF669E", false: "#FFFFFF1A" }}
/>
{openSuper && (
超粉单次开通类型
*
(付费后解锁对应期限超粉权益)
{listItemWithCheckboxMemo}
)}
);
}