import { Text, View, TouchableOpacity, Image as NativeImage, Alert, } from "react-native"; import React, { useEffect, useState } from "react"; import { Image } from "expo-image"; import { useTailwind } from "tailwind-rn"; import { ListItem, Icon } from "@rneui/themed"; import { get } from "../../../utils/storeInfo"; import baseRequest from "../../../utils/baseRequest"; import { generateSignature } from "../../../utils/crypto"; import { useNavigation } from "@react-navigation/native"; import Banner from "../../../components/Banner"; import requireAPI from "../../../utils/requireAPI"; import * as Linking from "expo-linking"; import { goToPage } from "../../../utils/tools"; import { Platform } from "react-native"; export default function HostList() { const navigation = useNavigation(); const tailwind = useTailwind(); const [hostList, setHostList] = useState([]); const [bannerList, setBannerList] = useState([]); useEffect(() => { const getHostList = async () => { const apiUrl = process.env.EXPO_PUBLIC_API_URL; let api; api = "/api/activity_hot/list"; const account = await get("account"); try { const base = await baseRequest(); const signature = await generateSignature({ ...base, }); const response = await fetch(`${apiUrl}${api}?signature=${signature}`, { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ ...base, mid: account.mid, }), }); const data = await response.json(); setHostList(data.data.list); } catch (error) { console.error(error); } }; const getBannerList = async () => { try { const _data = await requireAPI( "POST", "/api/activity_banner/list", { body: { device_type: Platform.OS === "android" ? 0 : 1 } }, true ); if (_data.ret === -1) { Toast.show({ icon: "fail", content: _data.msg, position: "top", }); return; } const bannerList = _data.data.list.map((item) => { const links = item?.hyperlinks; let link = null; if (links.length > 1) { link = links.filter((it) => it.inward_action_type === "app")[0] ?.url; } else { link = links[0]?.url; } return { link: { url: link, action: links[0]?.action, }, url: item?.image.images[0]?.urls[0], id: item?.id, }; }); setBannerList(bannerList); } catch (error) { console.error(error); } }; getHostList(); getBannerList(); }, []); return ( 猜你想看 navigation.navigate("Stream")} style={tailwind("flex flex-row justify-between items-center")} > 查看更多 navigation.goBack()} /> {hostList.length > 0 && hostList.map((item, index) => ( { const links = item?.hyperlinks; let link = null; if (links.length > 1) { link = links.filter((it) => it.action === "inward")[0]?.url; } else { link = links[0]?.url; } const linkAndParams = goToPage({ action: links[0]?.action, url: link, }); if (typeof linkAndParams === "string") { if ( links[0]?.action === "webViewHeaderInward" || links[0]?.action === "webViewHeaderOutward" ) { navigation.navigate("WebWithHeader", { title: "", uri: linkAndParams, }); return; } else if ( links[0]?.action === "webViewWithOutHeaderInward" || links[0]?.action === "webViewWithOutHeaderOutward" ) { navigation.navigate("WebWithoutHeader", { title: "", uri: linkAndParams, }); return; } try { // 尝试启动微信客户端 Linking.openURL(linkAndParams).catch(() => { // 启动微信客户端失败,弹出提示安装对话框 Alert.alert( "错误提醒", "打开链接失败,请返回重试或者联系在线客服", [{ text: "确认", style: "cancel" }], { cancelable: false } ); }); } catch (error) { // 启动微信客户端失败,继续加载URL console.error(error); } } else { navigation.navigate(...linkAndParams); } }} style={tailwind("flex-row py-3")} > {item.title} {index < 3 && ( )} {!!item.age && ( <> {item.age} {item.city} )} {item.text} ))} {/* Banner预留位置 */} ); }