diff --git a/screeens/My/index.jsx b/screeens/My/index.jsx index dd122f5..c74f6eb 100644 --- a/screeens/My/index.jsx +++ b/screeens/My/index.jsx @@ -69,6 +69,7 @@ export default function My({ navigation }) { }, []); //每次focus都更新一次数据 + const [isInJoinProgress, setIsInJoinProgress] = useState(false); useFocusEffect( useCallback(() => { const getData = async () => { @@ -182,10 +183,64 @@ export default function My({ navigation }) { console.error(error); } }; + //查看用户是否正在申请成为主播 + const getBasicStatus = async () => { + //获取环境变量 + const apiUrl = process.env.EXPO_PUBLIC_API_URL; + const base = await baseRequest(); + const body = { + ...base, + }; + const signature = await generateSignature(body); + try { + //获取账号基本信息 + const _response = await fetch( + `${apiUrl}/api/account/list_by_mid?signature=${signature}`, + { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(body), + } + ); + const _data = await _response.json(); + if (_data.ret === -1) { + Toast.show({ + type: "error", + text1: _data.msg, + topOffset: 60, + }); + return; + } + if ( + _data.data.basic_status === 0 || + _data.data.basic_status === 1 || + _data.data.basic_status === 3 + ) + setIsInJoinProgress(true); + } catch (error) { + console.error(error); + } + }; getData(); + getBasicStatus(); }, []) ); + //通过toast向准主播提示需要先补充资料 + const remainCompleteInformation = (func) => { + if (data?.role === 3) { + func(); + return; + } + Toast.show({ + type: "error", + text1: "请先完善资料并等待审核通过", + topOffset: 60, + }); + }; + return ( {/* 纵向列表设置区 */} - {data?.role === 3 && ( + {(data?.role === 3 || isInJoinProgress) && ( + {isInJoinProgress && ( + + navigation.navigate("StreamerVerification", { + screen: "CompleteStreamerInformation", + }) + } + style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} + > + + + 完善资料 + + + 完善后解锁全部功能 + + + + )} {data?.streamer_ext?.zones?.length === 0 ? ( navigation.navigate("CreateSpace")} + onPress={() => + remainCompleteInformation(() => + navigation.navigate("CreateSpace") + ) + } style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} > - 创作者功能 + {data?.role === 3 ? "创作者功能" : "完善资料后解锁"} - navigation.navigate("StreamerSpace", { mid: data?.mid }) + remainCompleteInformation(() => + navigation.navigate("StreamerSpace", { mid: data?.mid }) + ) } style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} > @@ -434,7 +518,7 @@ export default function My({ navigation }) { 我的空间 - 创作者功能 + {data?.role === 3 ? "创作者功能" : "完善资料后解锁"} - navigation.navigate("StreamerPosts", { mid: data?.mid }) + remainCompleteInformation(() => + navigation.navigate("StreamerPosts", { mid: data?.mid }) + ) } style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} > @@ -454,7 +540,7 @@ export default function My({ navigation }) { 广场动态 - 创作者功能 + {data?.role === 3 ? "创作者功能" : "完善资料后解锁"} - navigation.navigate("WechatWaitingToAdd", { tab: 0 }) + remainCompleteInformation(() => + navigation.navigate("WechatWaitingToAdd", { tab: 0 }) + ) } style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} > @@ -473,38 +561,46 @@ export default function My({ navigation }) { 待添加微信 - 创作者功能 - - - - navigation.navigate("EditStreamerInfo")} - style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} - > - - - 编辑资料 - - - 创作者功能 + {data?.role === 3 ? "创作者功能" : "完善资料后解锁"} + {data?.role === 3 && ( + + remainCompleteInformation(() => + navigation.navigate("EditStreamerInfo") + ) + } + style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} + > + + + 编辑资料 + + + {data?.role === 3 ? "创作者功能" : "完善资料后解锁"} + + + + )} - navigation.navigate("WebWithHeader", { - title: "我的专属链接", - uri: - process.env.EXPO_PUBLIC_WEB_URL + - "/generatelink/" + - data?.user_id, - }) + remainCompleteInformation(() => + navigation.navigate("WebWithHeader", { + title: "我的专属链接", + uri: + process.env.EXPO_PUBLIC_WEB_URL + + "/generatelink/" + + data?.user_id, + }) + ) } style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} > @@ -515,7 +611,7 @@ export default function My({ navigation }) { 生成分享页 - 创作者功能 + {data?.role === 3 ? "创作者功能" : "完善资料后解锁"} navigation.navigate("StreamerVerification")} + onPress={() => + navigation.navigate("StreamerVerification", { + screen: "JoinStreamer", + }) + } style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} > - - - 提交成功 - - - 请添加工作人员 - 微信:{wechatList[0]} - 直接商讨合作事宜,如未添加可能影响审核进度,请及时添加。 - - - {wechatList.map((item, index) => { - if (index === 0) return; - return ( - - 备用微信{index}:{item} - - ); - })} + + + + 提交成功 + + + 请添加工作人员 + 微信:{wechatList[0]} + 直接商讨合作事宜,如未添加可能影响审核进度,请及时添加。您可以选择继续完善资料,这将加快您的审核进度。 + + + {wechatList.map((item, index) => { + if (index === 0) return; + return ( + + 备用微信{index}:{item} + + ); + })} + + + + + - + ); } diff --git a/screeens/StreamerVerification/StreamerVerificationForm/index.jsx b/screeens/StreamerVerification/CompleteStreamerInformation/index.jsx similarity index 79% rename from screeens/StreamerVerification/StreamerVerificationForm/index.jsx rename to screeens/StreamerVerification/CompleteStreamerInformation/index.jsx index d658e0a..9f48c8f 100644 --- a/screeens/StreamerVerification/StreamerVerificationForm/index.jsx +++ b/screeens/StreamerVerification/CompleteStreamerInformation/index.jsx @@ -18,15 +18,15 @@ import Picker from "../../../components/Picker"; import MediaPickerModal from "../../../components/MediaPickerModal"; import MediaPicker from "../../../components/MediaPicker"; import Toast from "react-native-toast-message"; -import { StackActions } from "@react-navigation/native"; import { get } from "../../../utils/storeInfo"; import { multiUpload } from "../../../utils/upload"; import baseRequest from "../../../utils/baseRequest"; import { generateSignature } from "../../../utils/crypto"; +import MediaGrid from "../../../components/MediaGrid"; const blurhash = "LcKUTa%gOYWBYRt6xuoJo~s8V@fk"; -export default function StreamerVerificationForm({ navigation, route }) { +export default function CompleteStreamerInformation({ navigation, route }) { const tailwind = useTailwind(); const insets = useSafeAreaInsets(); @@ -41,8 +41,10 @@ export default function StreamerVerificationForm({ navigation, route }) { const [displayVideo, setDisplayVideo] = useState([]); const [wechatInputShow, setWechatInputShow] = useState(1); - //保存相册 + //保存新添加的相册图片 const [photos, setPhotos] = useState([]); + //展示旧相册图片组件 + const [oldPhotos, setOldPhotos] = useState([]); //保存主播标签 const [tags, setTags] = useState([]); @@ -88,9 +90,6 @@ export default function StreamerVerificationForm({ navigation, route }) { ); }; - //保存账号截图 - const [accountImages, setAccountImages] = useState([]); - //生成年龄、身高、体重、胸围、腰围、臀围、星座、省份数组 const generateItems = useCallback((min, max) => { const items = []; @@ -154,17 +153,106 @@ export default function StreamerVerificationForm({ navigation, route }) { ]; //基本资料 - const [data, setData] = useState({ tag: {} }); + const [data, setData] = useState(); + const [allTag, setAllTag] = useState({}); + + //正在加载数据 + const [isLoading, setIsloading] = useState(true); + const [isWaitingReview, setIsWaitingReview] = useState(false); useEffect(() => { const getData = async () => { const account = await get("account"); const apiUrl = process.env.EXPO_PUBLIC_API_URL; const base = await baseRequest(); - const signature = await generateSignature({ - ...base, - }); try { - const response = await fetch( + //获取当前审批状态 + const body = { + ...base, + }; + const signature = await generateSignature(body); + const statusResponse = await fetch( + `${apiUrl}/api/streamer_auth_approval/get_statuses?signature=${signature}`, + { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(body), + } + ); + const statusData = await statusResponse.json(); + if (statusData.ret === -1) { + Toast.show({ + type: "error", + text1: statusData.msg, + topOffset: 60, + }); + return; + } + if (statusData?.data?.details_status === 0) setIsWaitingReview(true); + if (statusData?.data?.details_status !== 2) { + setData({ ...account, streamer: {} }); + return; + } + //获取已填信息 + const body2 = { + approve_status: 2, + ...base, + }; + const signature2 = await generateSignature(body2); + const _response = await fetch( + `${apiUrl}/api/streamer_auth_approval_his/list_details?signature=${signature2}`, + { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(body2), + } + ); + const _data = await _response.json(); + if (_data.ret === -1) { + Toast.show({ + type: "error", + text1: _data.msg, + topOffset: 60, + }); + return; + } + setData({ ...account, streamer: _data.data.list[0] }); + setWechatInputShow(_data.data.list[0].wechat_lock_type); + setTags(_data.data.list[0].tag); + if (_data.data.list[0]) + setDisplayImage([ + { + notChanged: true, + id: { image_ids: _data.data.list[0].cover.image_ids }, + uri: _data.data.list[0].cover.images[0].urls[0], + }, + ]); + setDisplayVideo([ + { + notChanged: true, + id: { video_ids: _data.data.list[0].shorts?.video_ids }, + old_uri: _data.data.list[0].shorts?.videos[0]?.cover_urls[0], + }, + ]); + setOldPhotos(_data.data.list[0].album.images); + } catch (error) { + console.error(error); + } finally { + setIsloading(false); + } + }; + const getAllTag = async () => { + const apiUrl = process.env.EXPO_PUBLIC_API_URL; + const base = await baseRequest(); + try { + //获取所有的标签 + const signature = await generateSignature({ + ...base, + }); + const _response = await fetch( `${apiUrl}/api/streamer_tag/list?signature=${signature}`, { method: "POST", @@ -176,7 +264,7 @@ export default function StreamerVerificationForm({ navigation, route }) { }), } ); - const tagData = await response.json(); + const tagData = await _response.json(); if (tagData.ret === -1) { Toast.show({ type: "error", @@ -185,12 +273,13 @@ export default function StreamerVerificationForm({ navigation, route }) { }); return; } - setData({ ...account, tag: tagData.data }); + setAllTag(tagData.data); } catch (error) { console.error(error); } }; getData(); + getAllTag(); }, []); //正在提交状态 @@ -199,6 +288,38 @@ export default function StreamerVerificationForm({ navigation, route }) { //是否正在拖动图片,用于禁用ScrollView的滚动 const [dragging, setDragging] = useState(false); + //loading时展示加载中 + if (isLoading) { + return ( + + ); + } + + //审核中的情况 + if (isWaitingReview) { + return ( + + + + + 正在审核中,请耐心等待 + + + + ); + } + return ( + {data.streamer?.remarks && ( + + + + 驳回原因: + {data.streamer?.remarks} + + + + )} { if ( - !values.name || !values.fans || !values.gender || - !values.platforms || - !values.contact || - accountImages.length === 0 || !values.wechat_add_way || !values.price || !values.info || displayImage.length === 0 || displayVideo.length === 0 || - photos.length === 0 || !values.age || !values.height || !values.weight || @@ -283,17 +411,40 @@ export default function StreamerVerificationForm({ navigation, route }) { }); return; } + //相册不得低于2张 + if (oldPhotos.length + photos.length < 2) { + Toast.show({ + type: "error", + text1: "相册至少需要上传2张照片哦!", + topOffset: 60, + }); + return; + } + //相册不得超过9张 + if (oldPhotos.length + photos.length > 9) { + Toast.show({ + type: "error", + text1: "相册最多只能上传9张照片哦!", + topOffset: 60, + }); + return; + } setIsSubmitting(true); - const account = await get("account"); - const cover = await multiUpload(displayImage); - const shorts = await multiUpload(displayVideo); - const album = await multiUpload(photos); - const account_shot = await multiUpload(accountImages); + const cover = displayImage[0].notChanged + ? displayImage[0].id + : await multiUpload(displayImage); + const shorts = displayVideo[0].notChanged + ? displayVideo[0].id + : await multiUpload(displayVideo); + const newPhotosIds = await multiUpload(photos); + const oldPhotosIds = oldPhotos.map((item) => item.id); + const album = { + image_ids: [...oldPhotosIds, ...newPhotosIds?.image_ids], + }; if ( !cover.image_ids.length || !shorts.video_ids.length || - !album.image_ids.length || - !account_shot.image_ids.length + !album.image_ids.length ) { Toast.show({ type: "error", @@ -303,27 +454,14 @@ export default function StreamerVerificationForm({ navigation, route }) { setIsSubmitting(false); return; } - if (album.image_ids.length < 2) { - Toast.show({ - type: "error", - text1: "相册至少需要上传2张照片哦!", - topOffset: 60, - }); - setIsSubmitting(false); - return; - } //获取环境变量 const apiUrl = process.env.EXPO_PUBLIC_API_URL; //上传表单 const base = await baseRequest(); - const signature = await generateSignature({ - mid: account?.mid, - avatar: { image_ids: [account?.avatar.images[0].id] }, - name: values.name, + const body = { gender: parseInt(values.gender, 10), - contact_way: values.contact, wechat_contact: values.wechat, bio: values.info, cover: cover, @@ -336,46 +474,21 @@ export default function StreamerVerificationForm({ navigation, route }) { city: values.location, tag: tags, wechat_lock_type: parseInt(values.wechat_add_way, 10), - account_shot: account_shot, fans: parseInt(values.fans, 10), - main_platform: values.platforms, wechat_coin_price: parseInt(values.price, 10) * 10, auto_response_message: values.auto_response_message, ...base, - }); + }; + const signature = await generateSignature(body); try { const response = await fetch( - `${apiUrl}/api/streamer_auth_approval/create?signature=${signature}`, + `${apiUrl}/api/streamer_auth_approval/create_details?signature=${signature}`, { method: "POST", headers: { "Content-Type": "application/json", }, - body: JSON.stringify({ - mid: account?.mid, - avatar: { image_ids: [account?.avatar.images[0].id] }, - name: values.name, - gender: parseInt(values.gender, 10), - contact_way: values.contact, - wechat_contact: values.wechat, - bio: values.info, - cover: cover, - shorts: shorts, - album: album, - age: parseInt(values.age, 10), - height: parseInt(values.height, 10), - weight: parseInt(values.weight, 10), - constellation: values.constellation, - city: values.location, - tag: tags, - wechat_lock_type: parseInt(values.wechat_add_way, 10), - account_shot: account_shot, - fans: parseInt(values.fans, 10), - main_platform: values.platforms, - wechat_coin_price: parseInt(values.price, 10) * 10, - auto_response_message: values.auto_response_message, - ...base, - }), + body: JSON.stringify(body), } ); const streamerData = await response.json(); @@ -387,10 +500,13 @@ export default function StreamerVerificationForm({ navigation, route }) { }); return; } - //提交成功后跳转成功页 - navigation.dispatch( - StackActions.replace("AfterSubmitStreamerVerification") - ); + //提交成功后toast提示并返回“我的”页面 + Toast.show({ + type: "success", + text1: "提交成功", + topOffset: 60, + }); + navigation.goBack(); } catch (error) { console.error(error); } finally { @@ -400,97 +516,6 @@ export default function StreamerVerificationForm({ navigation, route }) { > {({ handleChange, handleSubmit, values, setFieldValue }) => ( <> - - * - 审核资料(仅用于审核,不对外展示) - - - - - * - 昵称 - - - - - - - - - * - 主营平台 - - - - - - - - - * - 联系方式 - - - - - - - - - - * - 账号截图 - - - 各平台账号截图(最多9张) - - - - - - - * - 展示资料(将在个人主页、大厅展示) - @@ -557,6 +582,7 @@ export default function StreamerVerificationForm({ navigation, route }) { }, { label: "男", value: "0" }, ]} + value={values.gender} onChange={handleChange("gender")} /> @@ -568,7 +594,7 @@ export default function StreamerVerificationForm({ navigation, route }) { 添加标签 - {Object.entries(data?.tag).map(([tag, label]) => { + {Object.entries(allTag).map(([tag, label]) => { return ; })} @@ -810,6 +836,11 @@ export default function StreamerVerificationForm({ navigation, route }) { 将在“主页”展示(2~9张) + - + @@ -834,7 +869,11 @@ export default function StreamerVerificationForm({ navigation, route }) { 身高(cm) - + @@ -844,7 +883,11 @@ export default function StreamerVerificationForm({ navigation, route }) { 体重(kg) - + @@ -855,6 +898,7 @@ export default function StreamerVerificationForm({ navigation, route }) { @@ -867,6 +911,7 @@ export default function StreamerVerificationForm({ navigation, route }) { diff --git a/screeens/StreamerVerification/JoinStreamer/index.jsx b/screeens/StreamerVerification/JoinStreamer/index.jsx new file mode 100644 index 0000000..254e9c0 --- /dev/null +++ b/screeens/StreamerVerification/JoinStreamer/index.jsx @@ -0,0 +1,238 @@ +import { + View, + Text, + ScrollView, + TextInput, + KeyboardAvoidingView, + Platform, + ActivityIndicator, +} from "react-native"; +import React, { useState } from "react"; +import { useTailwind } from "tailwind-rn"; +import { useSafeAreaInsets } from "react-native-safe-area-context"; +import { Divider, Button } from "@rneui/themed"; +import { Formik } from "formik"; +import MediaPicker from "../../../components/MediaPicker"; +import Toast from "react-native-toast-message"; +import { get } from "../../../utils/storeInfo"; +import { multiUpload } from "../../../utils/upload"; +import baseRequest from "../../../utils/baseRequest"; +import { generateSignature } from "../../../utils/crypto"; + +export default function JoinStreamer({ navigation, route }) { + const tailwind = useTailwind(); + const insets = useSafeAreaInsets(); + + //保存账号截图 + const [accountImages, setAccountImages] = useState([]); + + //正在提交状态 + const [isSubmitting, setIsSubmitting] = useState(false); + + //是否正在拖动图片,用于禁用ScrollView的滚动 + const [dragging, setDragging] = useState(false); + + return ( + + + { + if ( + !values.name || + !values.platforms || + !values.contact || + accountImages.length === 0 + ) { + Toast.show({ + type: "error", + text1: "请完善信息后提交", + topOffset: 60, + }); + return; + } + setIsSubmitting(true); + const account = await get("account"); + const account_shot = await multiUpload(accountImages); + if (!account_shot.image_ids.length) { + Toast.show({ + type: "error", + text1: "上传失败,请联系客服进行上传", + topOffset: 60, + }); + setIsSubmitting(false); + return; + } + + //获取环境变量 + const apiUrl = process.env.EXPO_PUBLIC_API_URL; + + //上传表单 + const base = await baseRequest(); + const body = { + avatar: { image_ids: [account?.avatar.images[0].id] }, + name: values.name, + contact_way: values.contact, + account_shot: account_shot, + main_platform: values.platforms, + ...base, + }; + const signature = await generateSignature(body); + try { + const response = await fetch( + `${apiUrl}/api/streamer_auth_approval/create_basic?signature=${signature}`, + { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(body), + } + ); + const streamerData = await response.json(); + if (streamerData.ret === -1) { + Toast.show({ + type: "error", + text1: streamerData.msg, + topOffset: 60, + }); + return; + } + //提交成功后跳转成功页 + navigation.replace("AfterSubmitStreamerVerification"); + } catch (error) { + console.error(error); + } finally { + setIsSubmitting(false); + } + }} + > + {({ handleChange, handleSubmit, values }) => ( + <> + + * + 审核资料(仅用于审核,不对外展示) + + + + + * + 昵称 + + + + + + + + + * + 主营平台 + + + + + + + + + * + 联系方式 + + + + + + + + + + * + 账号截图 + + + 各平台账号截图(最多9张) + + + + + + + + )} + + + + ); +} diff --git a/screeens/StreamerVerification/index.jsx b/screeens/StreamerVerification/index.jsx index cefcae1..df2ed27 100644 --- a/screeens/StreamerVerification/index.jsx +++ b/screeens/StreamerVerification/index.jsx @@ -1,8 +1,9 @@ import React from "react"; import { Text, TouchableOpacity } from "react-native"; import { createNativeStackNavigator } from "@react-navigation/native-stack"; -import StreamerVerificationForm from "./StreamerVerificationForm"; +import CompleteStreamerInformation from "./CompleteStreamerInformation"; import AfterSubmitStreamerVerification from "./AfterSubmitStreamerVerification"; +import JoinStreamer from "./JoinStreamer"; import { Icon } from "@rneui/themed"; const StreamerVerificationStack = createNativeStackNavigator(); @@ -11,8 +12,38 @@ export default function StreamerVerification() { return ( ({ + headerLeft: () => ( + navigation.goBack()} + /> + ), + headerRight: () => ( + + navigation.navigate("WebWithHeader", { + title: "申请入驻", + uri: `${process.env.EXPO_PUBLIC_WEB_URL}/doc/platformguidelines`, + }) + } + > + 平台准则 + + ), + title: "申请入驻", + headerTitleStyle: { color: "white" }, + headerStyle: { backgroundColor: "#07050A" }, + })} + /> + ({ headerLeft: () => ( 平台准则 ), - title: "申请入驻", + title: "完善信息", headerTitleStyle: { color: "white" }, headerStyle: { backgroundColor: "#07050A" }, })}