修改权限请求弹窗;针对989430测试号去除付费逻辑

This commit is contained in:
yezian 2024-04-01 13:23:09 +08:00
parent 896d2b713f
commit 4e4d5ba89b
9 changed files with 76 additions and 46 deletions

View File

@ -306,25 +306,23 @@ export default function MediaPickerModal({
title="权限申请" title="权限申请"
content="该功能需要开启存储权限,用于选择上传媒体文件" content="该功能需要开启存储权限,用于选择上传媒体文件"
confirmText="继续" confirmText="继续"
cancel={() => { custom={() => {
setRequestModalVisible(false);
}}
confirm={() => {
setRequestModalVisible(false); setRequestModalVisible(false);
requestMediaLibraryPermissions(); requestMediaLibraryPermissions();
}} }}
customText="继续"
/> />
<MyModal <MyModal
visible={overlayVisible} visible={overlayVisible}
setVisible={setOverlayVisible} setVisible={setOverlayVisible}
title="未获得相册权限" title="未获得相册权限"
content="请先前往设置打开相关权限后重试" content="请先前往设置打开相关权限后重试"
confirmText="继续" confirmText="去设置"
cancel={() => { cancel={() => {
setOverlayVisible(false); setOverlayVisible(false);
}} }}
confirm={() => { confirm={() => {
// Linking.openSettings(); Linking.openSettings();
setOverlayVisible(false); setOverlayVisible(false);
}} }}
/> />

View File

@ -8,6 +8,8 @@ export default function MyModal({
title, title,
content, content,
confirm, confirm,
custom,
customText,
confirmText, confirmText,
cancelText, cancelText,
}) { }) {
@ -41,6 +43,23 @@ export default function MyModal({
{content} {content}
</Text> </Text>
<View style={tailwind("flex-row justify-around")}> <View style={tailwind("flex-row justify-around")}>
{custom ? (
<TouchableOpacity
onPress={custom}
style={tailwind(
"border-t-2 border-[#2c2b2f] w-full pt-1 justify-center items-center"
)}
>
<Text
style={tailwind(
"text-white text-base font-medium text-center"
)}
>
{customText ? customText : "确认"}
</Text>
</TouchableOpacity>
) : (
<>
<TouchableOpacity <TouchableOpacity
onPress={() => setVisible(false)} onPress={() => setVisible(false)}
style={tailwind( style={tailwind(
@ -62,11 +81,15 @@ export default function MyModal({
)} )}
> >
<Text <Text
style={tailwind("text-white text-base font-medium text-center")} style={tailwind(
"text-white text-base font-medium text-center"
)}
> >
{confirmText ? confirmText : "确认"} {confirmText ? confirmText : "确认"}
</Text> </Text>
</TouchableOpacity> </TouchableOpacity>
</>
)}
</View> </View>
</View> </View>
</View> </View>

View File

@ -202,7 +202,9 @@ export default function My({ navigation }) {
<Text <Text
style={{ style={{
color: color:
data?.is_a_member === 1 && data?.user_id !== 314826 data?.is_a_member === 1 &&
data?.user_id !== 314826 &&
data?.user_id !== 989430
? "#FFADBE" ? "#FFADBE"
: "white", : "white",
...tailwind("text-2xl font-medium"), ...tailwind("text-2xl font-medium"),
@ -212,7 +214,9 @@ export default function My({ navigation }) {
> >
{data?.name} {data?.name}
</Text> </Text>
{data?.is_a_member === 1 && data?.user_id !== 314826 && ( {data?.is_a_member === 1 &&
data?.user_id !== 314826 &&
data?.user_id !== 989430 && (
<NativeImage <NativeImage
source={require("../../assets/icon/others/vipbig.png")} source={require("../../assets/icon/others/vipbig.png")}
/> />
@ -274,7 +278,7 @@ export default function My({ navigation }) {
粉丝 粉丝
</Text> </Text>
</TouchableOpacity> </TouchableOpacity>
{data?.user_id !== 314826 && ( {data?.user_id !== 314826 && data?.user_id !== 989430 && (
<TouchableOpacity <TouchableOpacity
onPress={() => navigation.navigate("Wallet")} onPress={() => navigation.navigate("Wallet")}
style={tailwind("flex flex-col items-center w-1/4")} style={tailwind("flex flex-col items-center w-1/4")}
@ -312,7 +316,7 @@ export default function My({ navigation }) {
)} )}
</View> </View>
{/* 会员 */} {/* 会员 */}
{data?.user_id !== 314826 && ( {data?.user_id !== 314826 && data?.user_id !== 989430 && (
<TouchableOpacity <TouchableOpacity
activeOpacity={1} activeOpacity={1}
onPress={() => onPress={() =>
@ -475,7 +479,7 @@ export default function My({ navigation }) {
borderColor: "#2c2b2f", borderColor: "#2c2b2f",
}} }}
> >
{data?.user_id !== 314826 && ( {data?.user_id !== 314826 && data?.user_id !== 989430 && (
<TouchableOpacity <TouchableOpacity
onPress={() => navigation.navigate("Wallet")} onPress={() => navigation.navigate("Wallet")}
style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")}
@ -491,7 +495,7 @@ export default function My({ navigation }) {
/> />
</TouchableOpacity> </TouchableOpacity>
)} )}
{data?.user_id !== 314826 && ( {data?.user_id !== 314826 && data?.user_id !== 989430 && (
<TouchableOpacity <TouchableOpacity
onPress={() => navigation.navigate("UnlockedWechat")} onPress={() => navigation.navigate("UnlockedWechat")}
style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")}
@ -507,7 +511,7 @@ export default function My({ navigation }) {
/> />
</TouchableOpacity> </TouchableOpacity>
)} )}
{data?.user_id !== 314826 && ( {data?.user_id !== 314826 && data?.user_id !== 989430 && (
<TouchableOpacity <TouchableOpacity
onPress={() => navigation.navigate("StreamerVerification")} onPress={() => navigation.navigate("StreamerVerification")}
style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")}

View File

@ -211,7 +211,7 @@ export default function FeedPosts({ blur }) {
const checkUserId = async () => { const checkUserId = async () => {
const account = await get("account"); const account = await get("account");
const userId = account.user_id; const userId = account.user_id;
if (userId === 314826) { if (userId === 314826 || userId === 989430) {
setIsVipBannerVisible(false); setIsVipBannerVisible(false);
return; return;
} }

View File

@ -194,7 +194,7 @@ export default function FollowPosts({ blur }) {
const checkUserId = async () => { const checkUserId = async () => {
const account = await get("account"); const account = await get("account");
const userId = account.user_id; const userId = account.user_id;
if (userId === 314826) { if (userId === 314826 || userId === 989430) {
setIsVipBannerVisible(false); setIsVipBannerVisible(false);
return; return;
} }

View File

@ -79,7 +79,12 @@ export default function Posts({ navigation }) {
const role = accountData.data.account.role; const role = accountData.data.account.role;
const isVip = accountData.data.account.is_a_member; const isVip = accountData.data.account.is_a_member;
const userId = accountData.data.account.user_id; const userId = accountData.data.account.user_id;
if (role !== 0 || isVip === 1 || userId === 314826) { if (
role !== 0 ||
isVip === 1 ||
userId === 314826 ||
userId === 989430
) {
setBlur(false); setBlur(false);
} else { } else {
setBlur(true); setBlur(true);

View File

@ -72,7 +72,7 @@ export default function StreamerProfile({ navigation, route }) {
const checkUserId = async () => { const checkUserId = async () => {
const account = await get("account"); const account = await get("account");
const userId = account.user_id; const userId = account.user_id;
if (userId === 314826) { if (userId === 314826 || userId === 989430) {
setIsWechatButtonVisible(false); setIsWechatButtonVisible(false);
return; return;
} }

View File

@ -15,7 +15,7 @@ export default function StreamerProfileSkeleton() {
const checkUserId = async () => { const checkUserId = async () => {
const account = await get("account"); const account = await get("account");
const userId = account.user_id; const userId = account.user_id;
if (userId === 314826) { if (userId === 314826 || userId === 989430) {
setIsWechatButtonVisible(false); setIsWechatButtonVisible(false);
return; return;
} }

View File

@ -121,7 +121,7 @@ export default function Wallet({ navigation, route }) {
> >
<TouchableOpacity <TouchableOpacity
onPress={ onPress={
data?.user_id === 314826 data?.user_id === 314826 || data?.user_id === 989430
? () => ? () =>
Toast.show({ Toast.show({
type: "error", type: "error",