From 718d8e034f19fc2fe36955051206d635616123d2 Mon Sep 17 00:00:00 2001 From: Jordan Date: Sat, 1 Feb 2025 08:58:03 -0800 Subject: [PATCH] fix issues. Remove babel. --- app/(screens)/_layout.tsx | 57 - app/(screens)/index.tsx | 45 - app/(screens)/settings.tsx | 0 app/+not-found.tsx | 25 - app/_layout.tsx | 45 +- app/index.tsx | 67 + app/lib/conversation.ts | 4 +- app/settings.tsx | 18 + babel.config.js | 6 - components/ConversationThread.tsx | 25 +- components/LanguageSelection.tsx | 11 +- components/ui/ISpeakButton.tsx | 5 +- components/ui/MessageBubble.tsx | 3 +- constants/api.ts | 2 +- jest.config.ts | 12 - package.json | 22 +- pnpm-lock.yaml | 10343 +++++++++++----------------- 17 files changed, 4268 insertions(+), 6422 deletions(-) delete mode 100644 app/(screens)/_layout.tsx delete mode 100644 app/(screens)/index.tsx delete mode 100644 app/(screens)/settings.tsx delete mode 100644 app/+not-found.tsx create mode 100644 app/index.tsx create mode 100644 app/settings.tsx delete mode 100644 babel.config.js diff --git a/app/(screens)/_layout.tsx b/app/(screens)/_layout.tsx deleted file mode 100644 index af5c42e..0000000 --- a/app/(screens)/_layout.tsx +++ /dev/null @@ -1,57 +0,0 @@ -import React, { useEffect } from 'react'; -import { View, StyleSheet, TouchableOpacity } from 'react-native'; -import { useFonts } from 'expo-font'; -import * as SplashScreen from 'expo-splash-screen'; -import { ThemeProvider, DarkTheme, DefaultTheme, NavigationContainer } from '@react-navigation/native'; -import Settings from '@/components/Settings'; -import { createNativeStackNavigator } from '@react-navigation/native-stack'; -import HomeScreen from '.'; -import { LanguageSelection } from '@/components/LanguageSelection'; -import { language_matrix_entry } from '../i18n/api'; -import ConversationThread from '@/components/ConversationThread'; - - -const Stack = createNativeStackNavigator(); - -export default function _layout() { - const [loaded] = useFonts({ - SpaceMono: require('../assets/fonts/SpaceMono-Regular.ttf'), - }); - - useEffect(() => { - if (loaded) { - SplashScreen.hideAsync(); - } - }, [loaded]); - - if (!loaded) { - return null; - } - - return ( - - - - - - - - - ); -} - -const styles = StyleSheet.create({ - settingsIconContainer: { - marginLeft: 16, - }, -}); \ No newline at end of file diff --git a/app/(screens)/index.tsx b/app/(screens)/index.tsx deleted file mode 100644 index 326115b..0000000 --- a/app/(screens)/index.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import { LanguageSelection } from '@/components/LanguageSelection'; -import { useState } from 'react'; -import { Button, Text, View } from 'react-native'; -import { Image, StyleSheet, Platform } from 'react-native'; -import { Conversation, Speaker } from '../lib/conversation'; -import { language_matrix_entry, Translator } from '../i18n/api'; -import ConversationThread from '@/components/ConversationThread'; -import { NavigationContainerProps, NavigationProp, ParamListBase } from '@react-navigation/native'; - -export default function HomeScreen({navigation} : {navigation: NavigationProp}) { - - const [language, setLanguage] = useState() - const [conversation, setConversation] = useState(); - - return ( - conversation ? : - -