anln_0000001_superFanPrices #25

Merged
yezian merged 48 commits from anln_0000001_superFanPrices into main 2025-01-21 14:34:00 +08:00
5 changed files with 44 additions and 3 deletions
Showing only changes of commit 81d15ba4df - Show all commits

View File

@ -1,4 +1,4 @@
import { Text, View, Dimensions, TouchableOpacity } from "react-native";
import { Alert, Dimensions, TouchableOpacity } from "react-native";
import React from "react";
import Swiper from "react-native-swiper";
import { Image } from "expo-image";

View File

@ -291,6 +291,7 @@ const MessageList = ({ navigation, noticeCount, refInstance }) => {
});
return linkAndParams;
})()}
action={scollNotice?.hyperlinks[0]?.action}
/>
)}

View File

@ -1,4 +1,4 @@
import { View, TouchableOpacity, Text } from "react-native";
import { View, TouchableOpacity, Text, Alert } from "react-native";
import React from "react";
import { Icon } from "@rneui/themed";
import { useTailwind } from "tailwind-rn";

View File

@ -5,12 +5,19 @@ import {
Animated,
Easing,
TouchableOpacity,
Alert,
} from "react-native";
import React, { useState, useEffect } from "react";
import { useTailwind } from "tailwind-rn";
import * as Linking from "expo-linking";
export default function ScrollNotice({ navigation, length, content, url }) {
export default function ScrollNotice({
navigation,
length,
content,
url,
action,
}) {
const tailwind = useTailwind();
const [fadeAnim] = useState(new Animated.Value(300)); // 透明度初始值为0
let animation = Animated.timing(fadeAnim, {
@ -79,6 +86,38 @@ export default function ScrollNotice({ navigation, length, content, url }) {
} else {
navigation.navigate(...url);
}
if (typeof url === "string") {
if (action === "webViewHeader") {
navigation.navigate("WebWithHeader", {
title: "",
uri: url,
});
return;
} else if (action === "webViewWithOutHeader") {
navigation.navigate("WebWithoutHeader", {
title: "",
uri: url,
});
return;
}
try {
// 尝试启动微信客户端
Linking.openURL(url).catch(() => {
// 启动微信客户端失败,弹出提示安装对话框
Alert.alert(
"错误提醒",
"打开链接失败,请返回重试或者联系在线客服",
[{ text: "确认", style: "cancel" }],
{ cancelable: false }
);
});
} catch (error) {
// 启动微信客户端失败继续加载URL
console.error(error);
}
} else {
navigation.navigate(...url);
}
}}
style={{
...tailwind("flex-1"),

View File

@ -4,6 +4,7 @@ import {
Dimensions,
TouchableOpacity,
Image as NativeImage,
Alert,
} from "react-native";
import React, { useEffect, useState } from "react";
import { Image } from "expo-image";