2024-01-25 03:43:07 +08:00
|
|
|
|
import {
|
|
|
|
|
View,
|
|
|
|
|
RefreshControl,
|
|
|
|
|
Image as NativeImage,
|
|
|
|
|
Text,
|
|
|
|
|
TouchableOpacity,
|
2024-03-15 20:14:22 +08:00
|
|
|
|
FlatList,
|
2024-01-25 03:43:07 +08:00
|
|
|
|
} from "react-native";
|
|
|
|
|
import React, { useState, useEffect } from "react";
|
|
|
|
|
import Empty from "../../../components/Empty";
|
|
|
|
|
import { useTailwind } from "tailwind-rn";
|
|
|
|
|
import baseRequest from "../../../utils/baseRequest";
|
|
|
|
|
import Toast from "react-native-toast-message";
|
|
|
|
|
import { get } from "../../../utils/storeInfo";
|
|
|
|
|
import { generateSignature } from "../../../utils/crypto";
|
|
|
|
|
import Post from "../../../components/Post";
|
|
|
|
|
import { useNavigation } from "@react-navigation/native";
|
|
|
|
|
|
|
|
|
|
export default function FollowPosts({ blur }) {
|
|
|
|
|
const navigation = useNavigation();
|
2024-02-04 20:09:31 +08:00
|
|
|
|
|
|
|
|
|
//获取会员价格
|
|
|
|
|
const [vipPrice, setVipPrice] = useState();
|
|
|
|
|
const getVipPrice = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const apiUrl = process.env.EXPO_PUBLIC_API_URL;
|
|
|
|
|
const base = await baseRequest();
|
|
|
|
|
const signature = await generateSignature({
|
|
|
|
|
...base,
|
|
|
|
|
});
|
|
|
|
|
const _response = await fetch(
|
|
|
|
|
`${apiUrl}/api/vas/get_membership_product_list?signature=${signature}`,
|
|
|
|
|
{
|
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
...base,
|
|
|
|
|
}),
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
const _data = await _response.json();
|
|
|
|
|
if (_data.ret === -1) {
|
|
|
|
|
Toast.show({
|
|
|
|
|
type: "error",
|
|
|
|
|
text1: _data.msg,
|
|
|
|
|
topOffset: 60,
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
setVipPrice(_data.data.product.real_price / 100);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error(error);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-25 03:43:07 +08:00
|
|
|
|
//获取关注的主播mid
|
|
|
|
|
const [followMids, setFollowMids] = useState([]);
|
|
|
|
|
const [currentTime, setCurrentTime] = useState();
|
|
|
|
|
const getFollowMids = async () => {
|
|
|
|
|
setCurrentTime(Math.floor(new Date().getTime() / 1000));
|
|
|
|
|
const apiUrl = process.env.EXPO_PUBLIC_API_URL;
|
|
|
|
|
try {
|
|
|
|
|
const base = await baseRequest();
|
|
|
|
|
const account = await get("account");
|
|
|
|
|
const signature = await generateSignature({
|
|
|
|
|
mid: account.mid,
|
|
|
|
|
offset: 0,
|
|
|
|
|
limit: 100,
|
|
|
|
|
...base,
|
|
|
|
|
});
|
|
|
|
|
//查关注mid
|
|
|
|
|
const response = await fetch(
|
|
|
|
|
`${apiUrl}/api/account_relation/list_follow?signature=${signature}`,
|
|
|
|
|
{
|
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
mid: account.mid,
|
|
|
|
|
offset: 0,
|
|
|
|
|
limit: 100,
|
|
|
|
|
...base,
|
|
|
|
|
}),
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
const temData = await response.json();
|
|
|
|
|
if (temData.ret === -1) {
|
|
|
|
|
Toast.show({
|
|
|
|
|
type: "error",
|
|
|
|
|
text1: temData.msg,
|
|
|
|
|
topOffset: 60,
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const temFollowsMids = temData.data.list.map((item) => item.obj_mid);
|
|
|
|
|
setFollowMids(temFollowsMids);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error(error);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//获取主播动态
|
|
|
|
|
const [data, setData] = useState([]);
|
|
|
|
|
const [offset, setOffset] = useState(0);
|
|
|
|
|
const [more, setMore] = useState(1);
|
|
|
|
|
const getData = async (type) => {
|
|
|
|
|
if (!currentTime) return;
|
|
|
|
|
if (followMids.length === 0) {
|
|
|
|
|
setData((prev) => []);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-02-04 20:09:31 +08:00
|
|
|
|
|
|
|
|
|
//防止重复加载
|
2024-01-25 03:43:07 +08:00
|
|
|
|
if (data.length === 0 && type === "bottom") return;
|
2024-02-04 20:09:31 +08:00
|
|
|
|
if (type === "bottom" && offset === 0) return;
|
|
|
|
|
|
2024-01-25 03:43:07 +08:00
|
|
|
|
if (!more) return;
|
|
|
|
|
try {
|
|
|
|
|
const apiUrl = process.env.EXPO_PUBLIC_API_URL;
|
|
|
|
|
const base = await baseRequest();
|
|
|
|
|
const signature = await generateSignature({
|
|
|
|
|
mids: followMids,
|
|
|
|
|
offset: offset,
|
|
|
|
|
limit: 4,
|
|
|
|
|
...base,
|
|
|
|
|
});
|
|
|
|
|
//查关注主播展示资料
|
|
|
|
|
const followsResponse = await fetch(
|
|
|
|
|
`${apiUrl}/api/moment/list_by_mids?signature=${signature}`,
|
|
|
|
|
{
|
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
mids: followMids,
|
|
|
|
|
ct_upper_bound: currentTime,
|
|
|
|
|
offset: offset,
|
|
|
|
|
limit: 4,
|
|
|
|
|
...base,
|
|
|
|
|
}),
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
const followsData = await followsResponse.json();
|
|
|
|
|
if (followsData.ret === -1) {
|
|
|
|
|
Toast.show({
|
|
|
|
|
type: "error",
|
|
|
|
|
text1: followsData.msg,
|
|
|
|
|
topOffset: 60,
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (type === "top") {
|
|
|
|
|
setData((prev) => followsData.data.list);
|
|
|
|
|
} else {
|
|
|
|
|
setData((prev) => [...prev, ...followsData.data.list]);
|
|
|
|
|
}
|
|
|
|
|
setOffset(followsData.data.offset);
|
|
|
|
|
setMore(followsData.data.more);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error(error);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//获取关注的主播mids
|
|
|
|
|
useEffect(() => {
|
2024-02-04 20:09:31 +08:00
|
|
|
|
getVipPrice();
|
2024-01-25 03:43:07 +08:00
|
|
|
|
getFollowMids();
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
//当关注的主播mids改变,获取新数据
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
getData("top");
|
2024-03-23 15:28:01 +08:00
|
|
|
|
}, [followMids, currentTime, blur]);
|
2024-01-25 03:43:07 +08:00
|
|
|
|
|
|
|
|
|
const tailwind = useTailwind();
|
2024-02-04 20:09:31 +08:00
|
|
|
|
const renderItem = ({ item }) => <Post isBlur={blur} data={item} />;
|
2024-01-25 03:43:07 +08:00
|
|
|
|
const [refreshing, setRefreshing] = useState(false);
|
|
|
|
|
//下拉刷新
|
|
|
|
|
const handleRefresh = async () => {
|
|
|
|
|
setRefreshing(true);
|
|
|
|
|
setOffset(0);
|
|
|
|
|
setMore(1);
|
|
|
|
|
await getFollowMids();
|
|
|
|
|
setRefreshing(false);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<View style={tailwind("flex-1")}>
|
2024-03-15 20:14:22 +08:00
|
|
|
|
<FlatList
|
2024-01-25 03:43:07 +08:00
|
|
|
|
data={data}
|
|
|
|
|
renderItem={renderItem}
|
|
|
|
|
initialNumToRender={4}
|
|
|
|
|
refreshControl={
|
|
|
|
|
<RefreshControl
|
|
|
|
|
colors={["#FF669E"]}
|
|
|
|
|
tintColor="white"
|
|
|
|
|
refreshing={refreshing}
|
|
|
|
|
onRefresh={() => handleRefresh()}
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
onEndReached={() => getData("bottom")}
|
|
|
|
|
ListEmptyComponent={<Empty type="friendship" />}
|
|
|
|
|
keyExtractor={(item) => item.id}
|
|
|
|
|
/>
|
|
|
|
|
{blur && (
|
2024-01-29 01:53:13 +08:00
|
|
|
|
<TouchableOpacity
|
|
|
|
|
activeOpacity={1}
|
|
|
|
|
onPress={() =>
|
|
|
|
|
navigation.navigate("WebWithoutHeader", {
|
|
|
|
|
uri: process.env.EXPO_PUBLIC_WEB_URL + "/vip",
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-01-25 03:43:07 +08:00
|
|
|
|
style={tailwind(
|
|
|
|
|
"flex flex-row items-center justify-between h-12 bg-[#301024] px-4"
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<View style={tailwind("flex flex-row items-center")}>
|
|
|
|
|
<NativeImage
|
|
|
|
|
source={require("../../../assets/icon/others/vipbig.png")}
|
|
|
|
|
/>
|
2024-01-29 01:53:13 +08:00
|
|
|
|
<Text
|
|
|
|
|
numberOfLines={1}
|
|
|
|
|
ellipsizeMode="tail"
|
|
|
|
|
style={tailwind("text-[#FF669E] text-base font-medium ml-1")}
|
|
|
|
|
>
|
2024-02-06 20:34:51 +08:00
|
|
|
|
即刻订阅全部精选内容
|
2024-01-25 03:43:07 +08:00
|
|
|
|
</Text>
|
|
|
|
|
</View>
|
2024-01-29 01:53:13 +08:00
|
|
|
|
<View
|
2024-01-25 03:43:07 +08:00
|
|
|
|
style={tailwind(
|
|
|
|
|
"flex justify-center items-center h-9 bg-[#FF669E] rounded-full px-4"
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<Text style={tailwind("text-white text-sm font-medium")}>
|
2024-02-04 20:09:31 +08:00
|
|
|
|
¥{vipPrice}/永久
|
2024-01-25 03:43:07 +08:00
|
|
|
|
</Text>
|
2024-01-29 01:53:13 +08:00
|
|
|
|
</View>
|
|
|
|
|
</TouchableOpacity>
|
2024-01-25 03:43:07 +08:00
|
|
|
|
)}
|
|
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
}
|