Rebrand the entire application from "胡萝卜社区" (Carrot BBS) to "威友" (WithYou), including:
Some checks failed
Frontend CI / build-and-push-web (push) Failing after 2m51s
Frontend CI / ota-android (push) Successful in 11m16s
Frontend CI / build-android-apk (push) Failing after 12m54s

- Update app name, package name (skin.carrot.bbs → cn.qczlit.withyou), and bundle identifier
- Update API endpoints (bbs.littlelan.cn → withyou.littlelan.cn)
- Update URL scheme (carrotbbs:// → withyou://)
- Rename database from carrot_bbs to with_you
- Update CI/CD pipeline image names and artifact naming
- Add Android signing configuration for release builds
- Update all UI text and comments throughout the codebase
- Refactor registerStore to use in-memory state instead of AsyncStorage persistence
- Improve WebRTC track handling and call stream management
- Add metro platform resolution for native platform support

BREAKING app package, database, and URLs are no longer valid
This commit is contained in:
lafay
2026-04-22 16:54:51 +08:00
parent 1c3797ea7d
commit 437dab3b6e
47 changed files with 221 additions and 235 deletions

View File

@@ -1,4 +1,4 @@
import React, { useCallback, useEffect, useMemo, useState } from 'react';
import React, { useCallback, useEffect, useMemo, useState } from 'react';
import {
View,
StyleSheet,
@@ -187,7 +187,7 @@ export function AppDesktopShell() {
>
<View style={styles.sidebarHeader}>
<MaterialCommunityIcons name="carrot" size={32} color={colors.primary.main} />
{!isCollapsed && <Text style={styles.logoText}>BBS</Text>}
{!isCollapsed && <Text style={styles.logoText}></Text>}
</View>
<ScrollView style={styles.sidebarContent} showsVerticalScrollIndicator={false}>
{NAV_ITEMS.map((item) => {

View File

@@ -221,7 +221,7 @@ const QRCodeScannerNative: React.FC<QRCodeScannerProps> = ({ visible, onClose })
setScanned(true);
onClose();
if (data.startsWith('carrotbbs://qrcode/login')) {
if (data.startsWith('withyou://qrcode/login')) {
const sessionId = extractSessionId(data);
if (sessionId) {
router.push(hrefs.hrefQrLoginConfirm(sessionId));

View File

@@ -1,4 +1,4 @@
import React, { useEffect, useMemo } from 'react';
import React, { useEffect, useMemo } from 'react';
import { Share as RNShare, Platform } from 'react-native';
export interface ShareSheetProps {
@@ -18,7 +18,7 @@ const ShareSheet: React.FC<ShareSheetProps> = ({
}) => {
const shareText = useMemo(() => {
const title = postTitle || '胡萝卜BBS帖子';
const title = postTitle || '威友帖子';
return `${title} ${postUrl || ''}`;
}, [postTitle, postUrl]);

View File

@@ -218,7 +218,7 @@ export const ImageGallery: React.FC<ImageGalleryProps> = ({
const allowedExts = ['jpg', 'jpeg', 'png', 'gif', 'webp'];
const fileExt = allowedExts.includes(ext) ? ext : 'jpg';
const fileName = `carrot_${Date.now()}.${fileExt}`;
const fileName = `withyou_${Date.now()}.${fileExt}`;
const destination = new File(Paths.cache, fileName);
// File.downloadFileAsync 是新版 expo-file-system/next 的静态方法

View File

@@ -7,11 +7,18 @@ type PagerViewProps = {
onPageSelected?: (e: { nativeEvent: { position: number } }) => void;
overdrag?: boolean;
children: React.ReactNode;
testID?: string;
};
type PagerViewRef = {
setPage: (page: number) => void;
setPageWithoutAnimation: (page: number) => void;
setScrollEnabled: (scrollEnabled: boolean) => void;
};
function PagerViewInternal(
{ style, children }: PagerViewProps,
_ref: ForwardedRef<{ setPage: (page: number) => void }>
_ref: ForwardedRef<PagerViewRef>
) {
const childrenArray = React.Children.toArray(children);
return (

View File

@@ -1,5 +1,5 @@
const DEFAULT_DB_NAME = 'carrot_bbs.db';
const DB_NAME_PREFIX = 'carrot_bbs_';
const DEFAULT_DB_NAME = 'with_you.db';
const DB_NAME_PREFIX = 'with_you_';
export function getDbName(userId: string | null): string {
return userId ? `${DB_NAME_PREFIX}${userId}.db` : DEFAULT_DB_NAME;

View File

@@ -1,6 +1,6 @@
/**
/**
* 忘记密码页 ForgotPasswordScreen简洁表单样式
* 胡萝卜BBS - 找回密码
* 威友 - 找回密码
*
* 设计风格:
* - 纯白背景,扁平化设计

View File

@@ -1,6 +1,6 @@
/**
/**
* 登录页 LoginScreen简洁表单样式
* 胡萝卜BBS - 用户登录
* 威友 - 用户登录
*
* 设计风格:
* - 纯白背景,扁平化设计

View File

@@ -1,13 +1,13 @@
/**
/**
* 注册页面(分步向导版)
* 胡萝卜BBS - 用户注册流程
* 威友 - 用户注册流程
*
* 步骤:
* 1. 输入邮箱
* 2. 填写验证码
* 3. 设置用户信息
*
* 使用 registerStore 持久化存储步骤数据
* 使用 registerStore 纯内存状态管理
*/
import React, { useEffect, useMemo, useRef } from 'react';
@@ -42,7 +42,7 @@ import { RegisterStep1Email } from './RegisterStep1Email';
import { RegisterStep2Verification } from './RegisterStep2Verification';
import { RegisterStep3Profile } from './RegisterStep3Profile';
// 胡萝卜橙主题色
// 威友橙主题色
const THEME_COLORS = {
primary: '#FF6B35',
primaryLight: '#FF8C5A',
@@ -87,16 +87,9 @@ export const RegisterScreen: React.FC = () => {
const fadeAnim = useRef(new Animated.Value(0)).current;
const slideAnim = useRef(new Animated.Value(20)).current;
// 恢复持久化的数据
const [isHydrated, setIsHydrated] = React.useState(false);
// 页面挂载时重置倒计时,避免上次残留的倒计时导致无法重新获取验证码
useEffect(() => {
const hydrateData = async () => {
const { hydrate } = useRegisterStore.getState();
await hydrate();
setIsHydrated(true);
};
hydrateData();
setCountdown(0);
}, []);
// 检查是否已登录

View File

@@ -1,9 +1,9 @@
/**
/**
* 欢迎页 WelcomeScreen
* 胡萝卜BBS - 用户欢迎页
* 威友 - 用户欢迎页
*
* 亮色模式:白色主色调 + 胡萝卜橙辅色
* 暗色模式:深色背景 + 胡萝卜橙辅色
* 亮色模式:白色主色调 + 威友橙辅色
* 暗色模式:深色背景 + 威友橙辅色
*/
import React, { useEffect, useRef, useMemo } from 'react';
@@ -89,7 +89,7 @@ export const WelcomeScreen: React.FC = () => {
{/* 品牌区域 */}
<View style={styles.brandSection}>
<Text style={styles.welcomeEn}>Welcome To</Text>
<Text style={styles.brandName}></Text>
<Text style={styles.brandName}></Text>
<View style={styles.brandUnderline} />
<Text style={styles.subtitle}>
@@ -139,7 +139,7 @@ function createWelcomeStyles(colors: AppColors) {
paddingBottom: 40,
},
// 装饰性背景元素 - 使用胡萝卜橙的淡色
// 装饰性背景元素 - 使用威友橙的淡色
decorCircle1: {
position: 'absolute',
top: -100,
@@ -147,7 +147,7 @@ function createWelcomeStyles(colors: AppColors) {
width: 400,
height: 400,
borderRadius: 200,
backgroundColor: colors.primary.main + '08', // 非常淡的胡萝卜
backgroundColor: colors.primary.main + '08', // 非常淡的威友
},
decorCircle2: {
position: 'absolute',

View File

@@ -1,6 +1,6 @@
/**
/**
* 认证屏幕导出
* 胡萝卜BBS - 登录注册模块
* 威友 - 登录注册模块
*/
export { LoginScreen } from './LoginScreen';

View File

@@ -1,6 +1,6 @@
/**
/**
* 发帖页 CreatePostScreen响应式适配
* 胡萝卜BBS - 发布新帖子
* 威友 - 发布新帖子
* 参考微博发帖界面设计
* 表单在宽屏下居中显示
* 图片选择器在宽屏下显示更大的预览

View File

@@ -1,6 +1,6 @@
/**
/**
* 首页 HomeScreen
* 胡萝卜BBS - 首页展示
* 威友 - 首页展示
* 支持列表和多列网格模式(响应式布局)
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 帖子详情页 PostDetailScreen - QQ频道风格响应式版本
* 胡萝卜BBS - 显示完整帖子内容和评论
* 威友 - 显示完整帖子内容和评论
* 桌面端使用双栏布局,移动端使用单栏布局
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 搜索页 SearchScreen响应式版本
* 胡萝卜BBS - 搜索帖子、用户
* 威友 - 搜索帖子、用户
* 支持响应式布局,宽屏下显示更大的搜索结果区域
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 聊天页 ChatScreen
* 胡萝卜BBS - 私信/群聊聊天界面
* 威友 - 私信/群聊聊天界面
* 高级现代化设计
* 支持群聊功能:显示发送者头像和昵称、@提及功能
* 支持响应式布局(桌面端宽屏优化)

View File

@@ -1,6 +1,6 @@
/**
/**
* 消息列表页 MessageListScreen
* 胡萝卜BBS - 消息列表
* 威友 - 消息列表
*
* 【重构后】使用MessageManager架构
* - 纯渲染组件,不直接管理数据

View File

@@ -1,6 +1,6 @@
/**
/**
* 通知页 NotificationsScreen扁平化风格
* 胡萝卜BBS - 系统消息列表
* 威友 - 系统消息列表
* 【游标分页】使用 messageService.getSystemMessagesCursor
* 支持响应式布局
*

View File

@@ -1,6 +1,6 @@
/**
/**
* PrivateChatInfoScreen 私聊聊天管理页面
* 胡萝卜BBS - 私聊设置界面
* 威友 - 私聊设置界面
* 参考QQ和微信的实现提供聊天管理功能
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 关于我们页面 AboutScreen
* 胡萝卜BBS - 应用信息、版本检查与更新
* 威友 - 应用信息、版本检查与更新
* 扁平化设计风格,参考登录、注册、设置页面
*/
@@ -39,7 +39,7 @@ const THEME_COLORS = {
primaryDark: '#E55A2B',
};
const APP_NAME = '萝卜社区';
const APP_NAME = '威友';
const APP_SLOGAN = '连接校园,分享生活';
const APP_VERSION = Constants.expoConfig?.version || '1.0.0';
const BUILD_NUMBER = Constants.expoConfig?.android?.versionCode || Constants.expoConfig?.ios?.buildNumber || '1';

View File

@@ -1,6 +1,6 @@
/**
/**
* 聊天设置页 ChatSettingsScreen
* 胡萝卜BBS - 聊天个性化设置
* 威友 - 聊天个性化设置
*/
import React, { useMemo, useCallback, useRef } from 'react';

View File

@@ -1,6 +1,6 @@
/**
/**
* 数据与存储设置页 DataStorageScreen响应式适配
* 胡萝卜BBS - 缓存管理、存储统计
* 威友 - 缓存管理、存储统计
*/
import React, { useState, useEffect, useCallback, useMemo } from 'react';

View File

@@ -1,6 +1,6 @@
/**
/**
* 编辑资料页 EditProfileScreen响应式适配
* 胡萝卜BBS - 编辑用户资料
* 威友 - 编辑用户资料
* 与用户资料页样式完全一致
* 表单在宽屏下居中显示
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 通知设置页 NotificationSettingsScreen响应式适配
* 胡萝卜BBS - 通知相关设置
* 威友 - 通知相关设置
* 在宽屏下居中显示
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 隐私政策页面 PrivacyPolicyScreen
* 胡萝卜BBS - 隐私政策
* 威友 - 隐私政策
* 扁平化设计风格
*/
@@ -22,7 +22,7 @@ import { useResponsive, useResponsiveSpacing } from '../../hooks';
// 内容最大宽度
const CONTENT_MAX_WIDTH = 400;
// 胡萝卜橙主题色
// 威友橙主题色
const THEME_COLORS = {
primary: '#FF6B35',
};
@@ -34,7 +34,7 @@ const LAST_UPDATED = '2026年4月4日';
const PRIVACY_SECTIONS = [
{
title: '引言',
content: `萝卜社区(以下简称"我们"或"本应用")非常重视用户的隐私和个人信息保护。我们深知个人信息对您的重要性,并会尽全力保护您的个人信息安全可靠。
content: `威友(以下简称"我们"或"本应用")非常重视用户的隐私和个人信息保护。我们深知个人信息对您的重要性,并会尽全力保护您的个人信息安全可靠。
本隐私政策旨在帮助您了解我们如何收集、使用、存储、共享和保护您的个人信息,以及您享有的相关权利。请您在使用我们的服务前,仔细阅读并理解本隐私政策的全部内容。
@@ -293,7 +293,7 @@ export const PrivacyPolicyScreen: React.FC = () => {
<View style={styles.highlightBox}>
<Text style={styles.highlightTitle}></Text>
<Text style={styles.highlightText}>
</Text>
</View>

View File

@@ -1,6 +1,6 @@
/**
/**
* 个人主页 ProfileScreen
* 胡萝卜BBS - 当前用户个人主页
* 威友 - 当前用户个人主页
* 使用统一的 UserProfileScreen 组件mode='self'
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 设置页 SettingsScreen响应式适配
* 胡萝卜BBS - 应用设置
* 威友 - 应用设置
* 在宽屏下居中显示,最大宽度限制
*/
@@ -363,7 +363,7 @@ export const SettingsScreen: React.FC = () => {
<View style={styles.footer}>
<Text variant="caption" color={colors.text.hint}>
v{APP_VERSION}
v{APP_VERSION}
</Text>
<Text variant="caption" color={colors.text.hint} style={styles.copyright}>
© 2026

View File

@@ -1,6 +1,6 @@
/**
/**
* 用户协议页面 TermsOfServiceScreen
* 胡萝卜BBS - 用户服务协议
* 威友 - 用户服务协议
* 扁平化设计风格
*/
@@ -22,7 +22,7 @@ import { useResponsive, useResponsiveSpacing } from '../../hooks';
// 内容最大宽度
const CONTENT_MAX_WIDTH = 400;
// 胡萝卜橙主题色
// 威友橙主题色
const THEME_COLORS = {
primary: '#FF6B35',
};
@@ -34,7 +34,7 @@ const LAST_UPDATED = '2026年4月4日';
const TERMS_SECTIONS = [
{
title: '一、协议的范围',
content: `1.1 本协议是您与萝卜社区(以下简称"我们"或"本应用")之间关于您使用本应用服务所订立的协议。
content: `1.1 本协议是您与威友(以下简称"我们"或"本应用")之间关于您使用本应用服务所订立的协议。
1.2 本协议内容包括协议正文及所有我们已经发布或将来可能发布的各类规则、公告或通知。所有规则为本协议不可分割的组成部分,与协议正文具有同等法律效力。

View File

@@ -1,6 +1,6 @@
/**
/**
* 统一的用户主页组件
* 胡萝卜BBS - 支持两种模式self当前用户和 other其他用户
* 威友 - 支持两种模式self当前用户和 other其他用户
* 采用现代卡片式设计,优化视觉层次和交互体验
* 支持桌面端双栏布局
*/

View File

@@ -1,6 +1,6 @@
/**
/**
* 用户主页 UserScreen
* 胡萝卜BBS - 查看其他用户资料
* 威友 - 查看其他用户资料
* 使用统一的 UserProfileScreen 组件mode='other'
*/

View File

@@ -1,4 +1,4 @@
/**
/**
* 后台同步管理器
*
* 整合前台服务、后台同步、消息状态管理
@@ -86,7 +86,7 @@ class BackgroundSyncManager {
if (mode === BackgroundSyncMode.REALTIME) {
// 切换到实时模式:立即启动前台服务(无论前台还是后台)
const started = await ForegroundServiceModule.start({
title: '萝卜社区',
title: '威友',
body: '正在后台同步消息',
});
if (started) {
@@ -134,7 +134,7 @@ class BackgroundSyncManager {
if (this.mode === BackgroundSyncMode.REALTIME) {
// 确保前台服务正在运行
await ForegroundServiceModule.start({
title: '萝卜社区',
title: '威友',
body: '正在后台同步消息',
});
@@ -154,7 +154,7 @@ class BackgroundSyncManager {
// 实时模式下:前台服务保持运行,只更新通知文字
if (this.mode === BackgroundSyncMode.REALTIME) {
await ForegroundServiceModule.update('萝卜社区', '正在后台同步消息');
await ForegroundServiceModule.update('威友', '正在后台同步消息');
}
// 立即同步一次(获取离线消息)
@@ -235,12 +235,12 @@ class BackgroundSyncManager {
if (totalUnread > 0) {
await ForegroundServiceModule.update(
'萝卜社区',
'威友',
`您有 ${totalUnread} 条未读消息`
);
} else {
await ForegroundServiceModule.update(
'萝卜社区',
'威友',
'正在后台同步消息'
);
}

View File

@@ -1,4 +1,4 @@
/**
/**
* 前台服务模块
*
* 提供 React Native 层对 Android 前台服务的控制接口
@@ -40,7 +40,7 @@ export const ForegroundServiceModule = {
try {
const result = await ForegroundService.start(
options.title || '萝卜社区',
options.title || '威友',
options.body || '正在后台同步消息'
);
console.log('[ForegroundService] 服务已启动');

View File

@@ -11,13 +11,13 @@ import { Platform } from 'react-native';
import { eventBus } from '@/core/events/EventBus';
// 生产地址 https://bbs.littlelan.cn
// 生产地址 https://withyou.littlelan.cn
const getBaseUrl = () => {
const configuredBaseUrl = Constants.expoConfig?.extra?.apiBaseUrl;
if (typeof configuredBaseUrl === 'string' && configuredBaseUrl.trim().length > 0) {
return configuredBaseUrl;
}
return 'https://bbs.littlelan.cn/api/v1';
return 'https://withyou.littlelan.cn/api/v1';
};
const BASE_URL = getBaseUrl();

View File

@@ -144,7 +144,7 @@ async function downloadAndInstallAPK(downloadUrl: string, version: string): Prom
}
try {
const downloadPath = `${FileSystem.documentDirectory}carrot-bbs-${version}.apk`;
const downloadPath = `${FileSystem.documentDirectory}with-you-${version}.apk`;
// 显示下载进度
showConfirm({

View File

@@ -96,22 +96,24 @@ class WebRTCManager {
console.log('[WebRTC] ontrack: no track in event');
return;
}
// Official react-native-webrtc approach: use event.streams[0] if available
if (event.streams && event.streams[0]) {
this.remoteStream = event.streams[0];
} else {
// Fallback: manually construct stream
if (!this.remoteStream) {
this.remoteStream = new MediaStream();
}
// Check if track already exists to avoid duplicates
const existingTracks = this.remoteStream.getTracks();
const trackExists = existingTracks.some(t => t.id === event.track.id);
if (!trackExists) {
this.remoteStream.addTrack(event.track);
}
// Always manually construct/append to remoteStream to ensure all tracks are collected
// react-native-webrtc may fire ontrack per-track and event.streams[0] might not contain all tracks
if (!this.remoteStream) {
this.remoteStream = new MediaStream();
}
this.emit({ type: 'remotestream', stream: this.remoteStream! });
// Check if track already exists to avoid duplicates
const existingTracks = this.remoteStream.getTracks();
const trackExists = existingTracks.some(t => t.id === event.track.id);
if (!trackExists) {
this.remoteStream.addTrack(event.track);
console.log('[WebRTC] Added remote track:', event.track.kind, 'total tracks:', this.remoteStream.getTracks().length);
} else {
console.log('[WebRTC] Remote track already exists:', event.track.kind);
}
this.emit({ type: 'remotestream', stream: this.remoteStream });
};
// @ts-ignore
@@ -655,7 +657,8 @@ class WebRTCManager {
}
if (this.remoteStream) {
this.remoteStream.getTracks().forEach((track) => track.stop());
// Do not stop remote tracks; they are managed by the peer connection
// and will be ended automatically when the connection closes
this.remoteStream = null;
}

View File

@@ -1,12 +1,9 @@
/**
* 注册流程状态管理
* 使用 Zustand + AsyncStorage 实现步骤数据的持久化
* 使用 Zustand 纯内存状态,不持久化到 AsyncStorage
*/
import { create } from 'zustand';
import AsyncStorage from '@react-native-async-storage/async-storage';
const STORAGE_KEY = 'register_form_data';
export type RegisterStep = 0 | 1 | 2;
@@ -42,9 +39,6 @@ interface RegisterState {
resetRegisterData: () => void;
goToNextStep: () => void;
goToPrevStep: () => void;
// 持久化
hydrate: () => Promise<void>;
persistData: () => Promise<void>;
}
const initialFormData: RegisterFormData = {
@@ -63,31 +57,18 @@ const initialCompletedSteps: Record<RegisterStep, boolean> = {
2: false,
};
export const useRegisterStore = create<RegisterState>((set, get) => ({
export const useRegisterStore = create<RegisterState>((set) => ({
currentStep: 0,
formData: initialFormData,
countdown: 0,
completedSteps: initialCompletedSteps,
setCurrentStep: (step) => {
set({ currentStep: step });
get().persistData();
},
setCurrentStep: (step) => set({ currentStep: step }),
updateFormData: (data) =>
set((state) => {
const newFormData = { ...state.formData, ...data };
// 异步保存到 AsyncStorage
AsyncStorage.setItem(
STORAGE_KEY,
JSON.stringify({
currentStep: state.currentStep,
formData: newFormData,
completedSteps: state.completedSteps,
})
).catch(() => {});
return { formData: newFormData };
}),
set((state) => ({
formData: { ...state.formData, ...data },
})),
setCountdown: (seconds) => set({ countdown: seconds }),
@@ -97,81 +78,33 @@ export const useRegisterStore = create<RegisterState>((set, get) => ({
})),
markStepCompleted: (step) =>
set((state) => {
const newCompletedSteps = { ...state.completedSteps, [step]: true };
// 异步保存到 AsyncStorage
AsyncStorage.setItem(
STORAGE_KEY,
JSON.stringify({
currentStep: state.currentStep,
formData: state.formData,
completedSteps: newCompletedSteps,
})
).catch(() => {});
return { completedSteps: newCompletedSteps };
}),
set((state) => ({
completedSteps: { ...state.completedSteps, [step]: true },
})),
resetRegisterData: () => {
resetRegisterData: () =>
set({
currentStep: 0,
formData: initialFormData,
countdown: 0,
completedSteps: initialCompletedSteps,
});
AsyncStorage.removeItem(STORAGE_KEY).catch(() => {});
},
}),
goToNextStep: () => {
const { currentStep } = get();
if (currentStep < 2) {
const newStep = (currentStep + 1) as RegisterStep;
set({ currentStep: newStep });
get().persistData();
}
},
goToPrevStep: () => {
const { currentStep } = get();
if (currentStep > 0) {
const newStep = (currentStep - 1) as RegisterStep;
set({ currentStep: newStep });
get().persistData();
}
},
// 从 AsyncStorage 恢复数据
hydrate: async () => {
try {
const raw = await AsyncStorage.getItem(STORAGE_KEY);
if (raw) {
const data = JSON.parse(raw);
set({
currentStep: data.currentStep ?? 0,
formData: { ...initialFormData, ...data.formData },
completedSteps: { ...initialCompletedSteps, ...data.completedSteps },
});
goToNextStep: () =>
set((state) => {
if (state.currentStep < 2) {
return { currentStep: (state.currentStep + 1) as RegisterStep };
}
} catch {
// 忽略错误
}
},
return state;
}),
// 保存数据到 AsyncStorage
persistData: async () => {
const { currentStep, formData, completedSteps } = get();
try {
await AsyncStorage.setItem(
STORAGE_KEY,
JSON.stringify({
currentStep,
formData,
completedSteps,
})
);
} catch {
// 忽略错误
}
},
goToPrevStep: () =>
set((state) => {
if (state.currentStep > 0) {
return { currentStep: (state.currentStep - 1) as RegisterStep };
}
return state;
}),
}));
// 导出便捷 hooks

View File

@@ -146,13 +146,20 @@ function setupWebRTCEvents(callId: string, myUserId: string): void {
* Handle remote stream with video track detection
*/
function handleRemoteStream(stream: MediaStream): void {
callStore.setState({ peerStream: stream });
// Create a new MediaStream instance to force zustand subscribers to update
// because react-native-webrtc may add tracks to the same stream object reference
const newStream = new MediaStream();
stream.getTracks().forEach((track) => {
newStream.addTrack(track);
});
callStore.setState({ peerStream: newStream });
// Detect video tracks in remote stream
const videoTracks = stream.getVideoTracks();
const videoTracks = newStream.getVideoTracks();
const hasPeerVideo = videoTracks.length > 0 && videoTracks.some((t) => t.enabled);
console.log('[CallStore] Remote stream received, hasVideo:', hasPeerVideo, 'videoTracks:', videoTracks.length);
console.log('[CallStore] Remote stream received, hasVideo:', hasPeerVideo, 'videoTracks:', videoTracks.length, 'audioTracks:', newStream.getAudioTracks().length);
callStore.setState((s) => ({
currentCall: s.currentCall

View File

@@ -1,5 +1,5 @@
/**
* 胡萝卜BBS 主题明暗色板、Paper 主题、设计 token
/**
* 威友 主题明暗色板、Paper 主题、设计 token
* 新代码请优先使用 useAppColors();静态 colors 为浅色快照,与深色模式不同步。
*/

View File

@@ -1,5 +1,5 @@
// ============================================
// Carrot BBS - Core Type Definitions
// ============================================
// WithYou - Core Type Definitions
// 使用后端DTO类型保持snake_case命名规范
// ============================================