## Original task Validate and fix the Expo mobile app (Face/Matrix/Feed tabs) against the live API server. Restart the API server (was EADDRINUSE from prior merge), verify domain config, test all three tabs, fix issues, and confirm TypeScript typecheck passes. ## Changes made ### artifacts/mobile/app/(tabs)/matrix.tsx - Fixed getMatrixUrl(): was returning `https://{domain}/` (API landing page), now returns `https://{domain}/tower` (Three.js 3D world). This was the main UI bug — the Matrix tab was showing the wrong page. ### artifacts/api-server/src/app.ts - Fixed tower static file path: replaced `path.resolve(process.cwd(), "the-matrix", "dist")` with `path.resolve(__dirname_app, "../../..", "the-matrix", "dist")` using `fileURLToPath(import.meta.url)`. - Root cause: pnpm `--filter` runs scripts from the package directory (`artifacts/api-server`), so `process.cwd()` resolved to `artifacts/api-server/the-matrix/dist` (missing), not `the-matrix/dist` at workspace root. This caused /tower to 404 in development. - The import.meta.url approach works correctly in both dev (tsx from src/) and production (esbuild CJS bundle from dist/) since both are 3 levels deep from workspace root. ### Infrastructure - Killed stale process on port 18115, restarted Expo workflow (was stuck waiting for port with interactive prompt). - Restarted API server (was EADDRINUSE from prior task merge). ## Verification - API healthz returns 200, /tower/ returns 200. - TypeScript typecheck passes for @workspace/mobile (no errors). - TypeScript typecheck passes for @workspace/api-server (no errors). - Expo dev server running on port 18115, Metro bundler active. - WebSocket connections visible in API server logs (clients connected). - EXPO_PUBLIC_DOMAIN set to $REPLIT_DEV_DOMAIN in dev script (correct for wss:// and https:// connections).
227 lines
5.7 KiB
TypeScript
227 lines
5.7 KiB
TypeScript
import { Feather } from "@expo/vector-icons";
|
|
import React, { useRef, useState } from "react";
|
|
import {
|
|
ActivityIndicator,
|
|
Platform,
|
|
Pressable,
|
|
StyleSheet,
|
|
Text,
|
|
View,
|
|
} from "react-native";
|
|
import { WebView } from "react-native-webview";
|
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
|
|
import { Colors } from "@/constants/colors";
|
|
|
|
const C = Colors.dark;
|
|
|
|
function getMatrixUrl(): string {
|
|
const domain = process.env.EXPO_PUBLIC_DOMAIN ?? "";
|
|
if (!domain) return "http://localhost:8080/tower";
|
|
const stripped = domain.replace(/^https?:\/\//, "").replace(/\/$/, "");
|
|
const proto = stripped.startsWith("localhost") ? "http" : "https";
|
|
return `${proto}://${stripped}/tower`;
|
|
}
|
|
|
|
export default function MatrixScreen() {
|
|
const insets = useSafeAreaInsets();
|
|
const topPad = Platform.OS === "web" ? 67 : insets.top;
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState(false);
|
|
const webviewRef = useRef<WebView | null>(null);
|
|
const matrixUrl = getMatrixUrl();
|
|
|
|
if (Platform.OS === "web") {
|
|
return (
|
|
<View style={[styles.container, { paddingTop: topPad }]}>
|
|
<View style={styles.header}>
|
|
<Text style={styles.title}>The Matrix</Text>
|
|
<Text style={styles.subtitle}>Timmy's 3D command center</Text>
|
|
</View>
|
|
<View style={styles.webContainer}>
|
|
<iframe
|
|
src={matrixUrl}
|
|
style={{ width: "100%", height: "100%", border: "none", borderRadius: 12 }}
|
|
allow="autoplay"
|
|
title="The Matrix"
|
|
/>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View style={[styles.container, { paddingTop: topPad }]}>
|
|
<View style={styles.header}>
|
|
<View>
|
|
<Text style={styles.title}>The Matrix</Text>
|
|
<Text style={styles.subtitle}>Timmy's 3D command center</Text>
|
|
</View>
|
|
<Pressable
|
|
onPress={() => {
|
|
setError(false);
|
|
setLoading(true);
|
|
webviewRef.current?.reload();
|
|
}}
|
|
style={styles.reloadBtn}
|
|
>
|
|
<Feather name="refresh-cw" size={18} color={C.textSecondary} />
|
|
</Pressable>
|
|
</View>
|
|
|
|
<View style={styles.webContainer}>
|
|
{loading && !error ? (
|
|
<View style={styles.loadingOverlay}>
|
|
<ActivityIndicator size="large" color={C.matrixGreen} />
|
|
<Text style={styles.loadingText}>Loading The Matrix</Text>
|
|
</View>
|
|
) : null}
|
|
|
|
{error ? (
|
|
<View style={styles.errorContainer}>
|
|
<Feather name="wifi-off" size={40} color={C.textMuted} />
|
|
<Text style={styles.errorTitle}>Matrix Unreachable</Text>
|
|
<Text style={styles.errorSubtitle}>
|
|
The API server may not be running
|
|
</Text>
|
|
<Pressable
|
|
onPress={() => {
|
|
setError(false);
|
|
setLoading(true);
|
|
webviewRef.current?.reload();
|
|
}}
|
|
style={styles.retryBtn}
|
|
>
|
|
<Text style={styles.retryText}>Retry</Text>
|
|
</Pressable>
|
|
</View>
|
|
) : (
|
|
<WebView
|
|
ref={webviewRef}
|
|
source={{ uri: matrixUrl }}
|
|
style={[styles.webview, loading && styles.hidden]}
|
|
onLoadEnd={() => setLoading(false)}
|
|
onError={() => {
|
|
setLoading(false);
|
|
setError(true);
|
|
}}
|
|
onHttpError={() => {
|
|
setLoading(false);
|
|
setError(true);
|
|
}}
|
|
javaScriptEnabled
|
|
allowsInlineMediaPlayback
|
|
mediaPlaybackRequiresUserAction={false}
|
|
startInLoadingState={false}
|
|
/>
|
|
)}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: C.background,
|
|
},
|
|
header: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "flex-start",
|
|
paddingHorizontal: 24,
|
|
paddingTop: 12,
|
|
paddingBottom: 16,
|
|
},
|
|
title: {
|
|
fontSize: 28,
|
|
fontFamily: "Inter_700Bold",
|
|
color: C.text,
|
|
letterSpacing: -0.5,
|
|
},
|
|
subtitle: {
|
|
fontSize: 13,
|
|
fontFamily: "Inter_400Regular",
|
|
color: C.textSecondary,
|
|
marginTop: 2,
|
|
},
|
|
reloadBtn: {
|
|
width: 40,
|
|
height: 40,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
borderRadius: 20,
|
|
backgroundColor: C.surface,
|
|
borderWidth: 1,
|
|
borderColor: C.border,
|
|
marginTop: 4,
|
|
},
|
|
webContainer: {
|
|
flex: 1,
|
|
marginHorizontal: 16,
|
|
marginBottom: 16,
|
|
borderRadius: 16,
|
|
overflow: "hidden",
|
|
backgroundColor: "#000",
|
|
borderWidth: 1,
|
|
borderColor: C.border,
|
|
},
|
|
webview: {
|
|
flex: 1,
|
|
backgroundColor: "#000",
|
|
},
|
|
hidden: {
|
|
opacity: 0,
|
|
position: "absolute",
|
|
width: 1,
|
|
height: 1,
|
|
},
|
|
loadingOverlay: {
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
gap: 16,
|
|
backgroundColor: "#000",
|
|
},
|
|
loadingText: {
|
|
fontSize: 14,
|
|
fontFamily: "Inter_400Regular",
|
|
color: C.matrixGreen,
|
|
letterSpacing: 1,
|
|
},
|
|
errorContainer: {
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
gap: 12,
|
|
backgroundColor: "#000",
|
|
paddingHorizontal: 32,
|
|
},
|
|
errorTitle: {
|
|
fontSize: 20,
|
|
fontFamily: "Inter_600SemiBold",
|
|
color: C.text,
|
|
marginTop: 8,
|
|
},
|
|
errorSubtitle: {
|
|
fontSize: 14,
|
|
fontFamily: "Inter_400Regular",
|
|
color: C.textSecondary,
|
|
textAlign: "center",
|
|
},
|
|
retryBtn: {
|
|
marginTop: 8,
|
|
paddingHorizontal: 24,
|
|
paddingVertical: 12,
|
|
backgroundColor: C.surface,
|
|
borderRadius: 12,
|
|
borderWidth: 1,
|
|
borderColor: C.border,
|
|
},
|
|
retryText: {
|
|
fontSize: 14,
|
|
fontFamily: "Inter_600SemiBold",
|
|
color: C.text,
|
|
},
|
|
});
|