tiefen_space_app/components/Banner/index.jsx

101 lines
3.4 KiB
React
Raw Permalink Normal View History

2025-01-21 17:37:25 +08:00
import { View, Text, Alert, Dimensions, TouchableOpacity } from "react-native";
2023-12-29 00:27:44 +08:00
import React from "react";
import Swiper from "react-native-swiper";
import { Image } from "expo-image";
import { useTailwind } from "tailwind-rn";
import * as Linking from "expo-linking";
import { goToPage } from "../../utils/tools";
export default function Banner({
navigation,
banners,
2025-01-21 17:37:25 +08:00
width = Dimensions.get("window").width - 32,
height = Math.ceil(((Dimensions.get("window").width - 32) * 3) / 7),
}) {
2023-12-29 00:27:44 +08:00
const tailwind = useTailwind();
return !!banners.length ? (
2023-12-29 00:27:44 +08:00
<Swiper
autoplay
width={width}
height={height}
2023-12-29 00:27:44 +08:00
paginationStyle={tailwind("bottom-2")}
activeDotStyle={tailwind("bg-[#FF669E]")}
2023-12-29 00:27:44 +08:00
>
{/* <View
style={tailwind("flex flex-row justify-between w-full h-full bg-white")}
>
<Text style={tailwind("text-white")}>1</Text>
</View>
<View style={tailwind("flex flex-row justify-between w-full h-full")}>
<Text style={tailwind("text-white")}>2</Text>
</View>
<View style={tailwind("flex flex-row justify-between w-full h-full")}>
<Text style={tailwind("text-white")}>3</Text>
</View> */}
{banners.map((banner, index) => (
<TouchableOpacity
key={index}
activeOpacity={1}
2025-01-21 17:37:25 +08:00
style={{ ...tailwind("h-full"), width: "calc(100vw - 5rem)" }}
onPress={() => {
const linkAndParams = goToPage(banner?.link);
const link = banner?.link;
2025-01-21 17:37:25 +08:00
if (typeof linkAndParams === "string") {
if (
link?.action === "webViewHeaderInward" ||
link?.action === "webViewHeaderOutward"
) {
navigation.navigate("WebWithHeader", {
title: "",
uri: linkAndParams,
});
return;
} else if (
link?.action === "webViewWithOutHeaderInward" ||
link?.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);
}
}}
>
2025-01-21 17:37:25 +08:00
<View style={tailwind("h-full rounded-lg overflow-hidden")}>
<Image
source={banner.url}
contentFit="cover"
transition={1000}
cachePolicy="disk"
2025-01-21 17:37:25 +08:00
style={{
...tailwind("h-full rounded-lg overflow-hidden"),
width: "calc(100vw - 5rem)",
}}
/>
</View>
</TouchableOpacity>
2023-12-29 00:27:44 +08:00
))}
</Swiper>
) : null;
2023-12-29 00:27:44 +08:00
}