tiefen_space_app/screeens/Posts/FeedPosts/index.jsx

293 lines
8.0 KiB
React
Raw Normal View History

import {
View,
RefreshControl,
ActivityIndicator,
Image as NativeImage,
Text,
TouchableOpacity,
} 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 { generateSignature } from "../../../utils/crypto";
import { FlashList } from "@shopify/flash-list";
import Post from "../../../components/Post";
import { useNavigation } from "@react-navigation/native";
import { get } from "../../../utils/storeInfo";
export default function FeedPosts({ blur }) {
const navigation = useNavigation();
//获取会员价格
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);
}
};
//获取置顶动态数据
const getTopPostsData = async () => {
const account = await get("account");
const role = account.role;
const isVip = account.is_a_member;
if (role !== 0 || isVip === 1) {
return;
}
try {
const apiUrl = process.env.EXPO_PUBLIC_API_URL;
const base = await baseRequest();
//查询动态id
const signature = await generateSignature({
config_key: "free_moment_ids",
...base,
});
const _response = await fetch(
`${apiUrl}/api/app_config/list_by_key?signature=${signature}`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
config_key: "free_moment_ids",
...base,
}),
}
);
const _data = await _response.json();
if (_data.ret === -1) {
Toast.show({
type: "error",
text1: _data.msg,
topOffset: 60,
});
return;
}
//用动态id查动态数据
if (!_data.data.app_config.config_value) return;
const intIds = _data.data.app_config.config_value?.map((item) =>
parseInt(item, 10)
);
const signature2 = await generateSignature({
ids: intIds,
...base,
});
const _response2 = await fetch(
`${apiUrl}/api/moment/list_by_ids?signature=${signature2}`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
ids: intIds,
...base,
}),
}
);
const _data2 = await _response2.json();
if (_data2.ret === -1) {
Toast.show({
type: "error",
text1: _data2.msg,
topOffset: 60,
});
return;
}
const topPostsData = _data2.data.list.map((item) => {
return { ...item, top: true };
});
return topPostsData;
} catch (error) {
console.error(error);
}
};
//获取当前时间
const [currentTime, setCurrentTime] = useState();
const getCurrentTime = async () => {
setCurrentTime(Math.floor(new Date().getTime() / 1000));
};
//获取截止当前时间的动态数据
const [data, setData] = useState([]);
const [offset, setOffset] = useState(0);
const [more, setMore] = useState(1);
const [isActivityIndicatorShow, setIsActivityIndicatorShow] = useState(true);
const getData = async (type) => {
if (!currentTime) return;
if (data.length === 0 && type === "bottom") return;
if (!more && type === "bottom") {
setIsActivityIndicatorShow(false);
return;
}
setIsActivityIndicatorShow(true);
try {
const apiUrl = process.env.EXPO_PUBLIC_API_URL;
const base = await baseRequest();
const signature = await generateSignature({
ct_upper_bound: currentTime,
offset: offset,
limit: 4,
...base,
});
const _response = await fetch(
`${apiUrl}/api/moment/list?signature=${signature}`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
ct_upper_bound: currentTime,
offset: offset,
limit: 4,
...base,
}),
}
);
const _data = await _response.json();
if (_data.ret === -1) {
Toast.show({
type: "error",
text1: _data.msg,
topOffset: 60,
});
return;
}
if (type === "top") {
const topPosts = await getTopPostsData();
if (!topPosts) {
setData((prev) => _data.data.list);
return;
}
setData((prev) => [...topPosts, ..._data.data.list]);
} else {
setData((prev) => [...prev, ..._data.data.list]);
}
setOffset(_data.data.offset);
setMore(_data.data.more);
} catch (error) {
console.error(error);
}
};
//获取当前时间
useEffect(() => {
getVipPrice();
getCurrentTime();
}, []);
//当时间改变,获取新数据
useEffect(() => {
getData("top");
}, [currentTime]);
const tailwind = useTailwind();
const renderItem = ({ item }) => <Post isBlur={blur} data={item} />;
const [refreshing, setRefreshing] = useState(false);
//下拉刷新
const handleRefresh = async () => {
setRefreshing(true);
setOffset(0);
setMore(1);
await getCurrentTime();
setRefreshing(false);
};
return (
<View style={tailwind("flex-1")}>
<FlashList
data={data}
renderItem={renderItem}
estimatedItemSize={310}
initialNumToRender={4}
refreshControl={
<RefreshControl
colors={["#FF669E"]}
tintColor="white"
refreshing={refreshing}
onRefresh={() => handleRefresh()}
/>
}
onEndReached={() => getData("bottom")}
ListEmptyComponent={<Empty type="nodata" />}
ListFooterComponent={
<View>
{isActivityIndicatorShow && data.length !== 0 && (
<ActivityIndicator style={tailwind("my-4")} size="large" />
)}
</View>
}
/>
{blur && (
<TouchableOpacity
activeOpacity={1}
onPress={() =>
navigation.navigate("WebWithoutHeader", {
uri: process.env.EXPO_PUBLIC_WEB_URL + "/vip",
})
}
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")}
/>
<Text
numberOfLines={1}
ellipsizeMode="tail"
style={tailwind("text-[#FF669E] text-base font-medium ml-1")}
>
开通会员订阅全部
</Text>
</View>
<View
style={tailwind(
"flex justify-center items-center h-9 bg-[#FF669E] rounded-full px-4"
)}
>
<Text style={tailwind("text-white text-sm font-medium")}>
¥{vipPrice}/永久
</Text>
</View>
</TouchableOpacity>
)}
</View>
);
}