Implemented Language Selector
This commit is contained in:
parent
93cc07c28c
commit
d27743017c
@ -1,11 +1,15 @@
|
||||
import i18n from "@/i18n/i18n";
|
||||
import AppContext, { IAppContext } from "@/util/context";
|
||||
import { MaterialIcons } from "@expo/vector-icons";
|
||||
import { Stack } from "expo-router";
|
||||
import React, { useMemo, useState } from "react";
|
||||
import { I18nextProvider, useTranslation } from "react-i18next";
|
||||
|
||||
const RootLayout: React.FC = () => {
|
||||
const [showSettings, setShowSettings] = useState<boolean>(false);
|
||||
|
||||
const { t } = useTranslation();
|
||||
|
||||
const ctx = useMemo<IAppContext>(
|
||||
() => ({
|
||||
showSettings,
|
||||
@ -15,19 +19,21 @@ const RootLayout: React.FC = () => {
|
||||
|
||||
return (
|
||||
<AppContext.Provider value={ctx}>
|
||||
<Stack
|
||||
screenOptions={{
|
||||
headerShown: true,
|
||||
title: "Poker Chips Helper",
|
||||
headerRight: () => (
|
||||
<MaterialIcons
|
||||
name="settings"
|
||||
onPress={() => setShowSettings(!showSettings)}
|
||||
size={30}
|
||||
/>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
<I18nextProvider i18n={i18n}>
|
||||
<Stack
|
||||
screenOptions={{
|
||||
headerShown: true,
|
||||
title: t("poker_chips_helper"),
|
||||
headerRight: () => (
|
||||
<MaterialIcons
|
||||
name="settings"
|
||||
onPress={() => setShowSettings(!showSettings)}
|
||||
size={30}
|
||||
/>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
</I18nextProvider>
|
||||
</AppContext.Provider>
|
||||
);
|
||||
};
|
||||
|
@ -15,6 +15,8 @@ import {
|
||||
import styles from "@/styles/styles";
|
||||
import Section from "@/containers/Section";
|
||||
import AppContext from "@/util/context";
|
||||
import { Picker } from "@react-native-picker/picker";
|
||||
import i18n from "@/i18n/i18n";
|
||||
|
||||
const IndexScreen: React.FC = () => {
|
||||
const [playerCount, setPlayerCount] = useState(2);
|
||||
@ -22,6 +24,7 @@ const IndexScreen: React.FC = () => {
|
||||
const [numberOfChips, setNumberOfChips] = useState<number>(5);
|
||||
const [totalChipsCount, setTotalChipsCount] = useState<number[]>([]);
|
||||
const [selectedCurrency, setSelectedCurrency] = useState<string>("$");
|
||||
const [selectedLanguage, setSelectedLanguage] = useState<string>("en");
|
||||
const context = useContext(AppContext);
|
||||
const isSettingsVisible = useMemo(() => context.showSettings, [context]);
|
||||
|
||||
@ -49,7 +52,7 @@ const IndexScreen: React.FC = () => {
|
||||
|
||||
const handleSave = async (slot: "SLOT1" | "SLOT2") => {
|
||||
if (buyInAmount === null) {
|
||||
Alert.alert("Error", "Please select a valid buy-in amount");
|
||||
Alert.alert(i18n.t("error"), i18n.t("please_select_valid_buyin"));
|
||||
return;
|
||||
}
|
||||
const state = {
|
||||
@ -63,10 +66,10 @@ const IndexScreen: React.FC = () => {
|
||||
await saveState(slot, state);
|
||||
await savePersistentState(state);
|
||||
console.log(`Game state saved to ${slot}:`, state);
|
||||
Alert.alert("Success", `State saved to ${slot}`);
|
||||
Alert.alert(i18n.t("success"), i18n.t("state_saved", { slot })); // Fixed interpolation
|
||||
} catch (error) {
|
||||
console.error("Error saving state:", error);
|
||||
Alert.alert("Error", "Failed to save state.");
|
||||
Alert.alert(i18n.t("error"), i18n.t("failed_to_save_state"));
|
||||
}
|
||||
};
|
||||
|
||||
@ -81,23 +84,49 @@ const IndexScreen: React.FC = () => {
|
||||
setSelectedCurrency(loadedState.selectedCurrency || "$");
|
||||
await savePersistentState(loadedState);
|
||||
console.log(`Game state loaded from ${slot}:`, loadedState);
|
||||
Alert.alert("Success", `State loaded from ${slot}`);
|
||||
Alert.alert(i18n.t("success"), i18n.t("state_loaded_from", { slot })); // Fixed interpolation
|
||||
} else {
|
||||
Alert.alert("Info", "No saved state found.");
|
||||
Alert.alert(i18n.t("info"), i18n.t("no_saved_state_found"));
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error loading state:", error);
|
||||
Alert.alert("Error", "Failed to load state.");
|
||||
Alert.alert(i18n.t("error"), i18n.t("failed_to_load_state"));
|
||||
}
|
||||
};
|
||||
|
||||
const handleLanguageChange = (language: string) => {
|
||||
setSelectedLanguage(language);
|
||||
i18n.changeLanguage(language);
|
||||
};
|
||||
|
||||
return (
|
||||
<ScrollView
|
||||
style={styles.scrollView}
|
||||
contentContainerStyle={styles.scrollViewContent}
|
||||
>
|
||||
{isSettingsVisible && (
|
||||
<Section title={"Select Currency"} iconName={"attach-money"}>
|
||||
<Section
|
||||
title={i18n.t("select_language")}
|
||||
iconName={"language"}
|
||||
orientation="row"
|
||||
>
|
||||
<Picker
|
||||
selectedValue={selectedLanguage}
|
||||
onValueChange={handleLanguageChange}
|
||||
style={styles.picker}
|
||||
>
|
||||
<Picker.Item label={i18n.t("english")} value="en" />
|
||||
<Picker.Item label={i18n.t("spanish")} value="es" />
|
||||
</Picker>
|
||||
</Section>
|
||||
)}
|
||||
|
||||
{isSettingsVisible && (
|
||||
<Section
|
||||
title={i18n.t("select_currency")}
|
||||
iconName={"attach-money"}
|
||||
orientation="row"
|
||||
>
|
||||
<CurrencySelector
|
||||
selectedCurrency={selectedCurrency}
|
||||
setSelectedCurrency={setSelectedCurrency}
|
||||
@ -106,7 +135,7 @@ const IndexScreen: React.FC = () => {
|
||||
)}
|
||||
|
||||
<Section
|
||||
title={"Select the number of players"}
|
||||
title={i18n.t("select_number_of_players")}
|
||||
iconName={"people"}
|
||||
orientation="row"
|
||||
>
|
||||
@ -116,14 +145,20 @@ const IndexScreen: React.FC = () => {
|
||||
/>
|
||||
</Section>
|
||||
|
||||
<Section title={"Select buy-in amount"} iconName={"monetization-on"}>
|
||||
<Section
|
||||
title={i18n.t("select_buyin_amount")}
|
||||
iconName={"monetization-on"}
|
||||
>
|
||||
<BuyInSelector
|
||||
selectedCurrency={selectedCurrency}
|
||||
setBuyInAmount={setBuyInAmount}
|
||||
/>
|
||||
</Section>
|
||||
|
||||
<Section title={"Automatic Chip Detection"} iconName={"camera-alt"}>
|
||||
<Section
|
||||
title={i18n.t("automatic_chip_detection")}
|
||||
iconName={"camera-alt"}
|
||||
>
|
||||
<ChipDetection
|
||||
updateChipCount={(chipData) => {
|
||||
const chipCountArray = Object.values(chipData);
|
||||
@ -132,7 +167,10 @@ const IndexScreen: React.FC = () => {
|
||||
/>
|
||||
</Section>
|
||||
|
||||
<Section title={"Manual Chip Adjustment"} iconName={"account-balance"}>
|
||||
<Section
|
||||
title={i18n.t("manual_chip_adjustment")}
|
||||
iconName={"account-balance"}
|
||||
>
|
||||
<ChipsSelector
|
||||
totalChipsCount={totalChipsCount}
|
||||
setTotalChipsCount={setTotalChipsCount}
|
||||
@ -142,7 +180,7 @@ const IndexScreen: React.FC = () => {
|
||||
</Section>
|
||||
|
||||
<Section
|
||||
title={"Distribution & Denomination"}
|
||||
title={i18n.t("distribution_and_denomination")}
|
||||
iconName={"currency-exchange"}
|
||||
>
|
||||
<ChipDistributionSummary
|
||||
@ -153,20 +191,30 @@ const IndexScreen: React.FC = () => {
|
||||
/>
|
||||
</Section>
|
||||
|
||||
<Section title={"Save + Load"} iconName={"save"} orientation="row">
|
||||
<Section
|
||||
title={i18n.t("save_and_load")}
|
||||
iconName={"save"}
|
||||
orientation="row"
|
||||
>
|
||||
<>
|
||||
<Button
|
||||
title={"Save\nSlot 1"}
|
||||
title={i18n.t("save_slot_1")}
|
||||
onPress={() => handleSave("SLOT1")}
|
||||
disabled={buyInAmount === null}
|
||||
/>
|
||||
<Button
|
||||
title={"Save\nSlot 2"}
|
||||
title={i18n.t("save_slot_2")}
|
||||
onPress={() => handleSave("SLOT2")}
|
||||
disabled={buyInAmount === null}
|
||||
/>
|
||||
<Button title={"Load\nSlot 1"} onPress={() => handleLoad("SLOT1")} />
|
||||
<Button title={"Load\nSlot 2"} onPress={() => handleLoad("SLOT2")} />
|
||||
<Button
|
||||
title={i18n.t("load_slot_1")}
|
||||
onPress={() => handleLoad("SLOT1")}
|
||||
/>
|
||||
<Button
|
||||
title={i18n.t("load_slot_2")}
|
||||
onPress={() => handleLoad("SLOT2")}
|
||||
/>
|
||||
</>
|
||||
</Section>
|
||||
</ScrollView>
|
||||
|
@ -2,10 +2,11 @@ import React, { useState } from "react";
|
||||
import { View, Text, TextInput } from "react-native";
|
||||
import styles, { COLORS } from "@/styles/styles";
|
||||
import Button from "@/containers/Button";
|
||||
import i18n from "@/i18n/i18n";
|
||||
|
||||
interface BuyInSelectorProps {
|
||||
setBuyInAmount: React.Dispatch<React.SetStateAction<number>>;
|
||||
selectedCurrency: string; // Accept selectedCurrency as a prop
|
||||
selectedCurrency: string;
|
||||
}
|
||||
|
||||
const defaultBuyInOptions = [10, 25, 50];
|
||||
@ -45,22 +46,25 @@ const BuyInSelector: React.FC<BuyInSelectorProps> = ({
|
||||
color={buyInAmount === amount ? COLORS.PRIMARY : COLORS.SECONDARY}
|
||||
onPress={() => handleBuyInSelection(amount)}
|
||||
title={`${selectedCurrency} ${amount}`}
|
||||
></Button>
|
||||
/>
|
||||
))}
|
||||
</View>
|
||||
|
||||
<Text style={styles.p}>Or enter a custom amount:</Text>
|
||||
<Text style={styles.p}>{i18n.t("custom_buy_in")}</Text>
|
||||
|
||||
<TextInput
|
||||
style={styles.input}
|
||||
value={customAmount}
|
||||
onChangeText={handleCustomAmountChange}
|
||||
placeholder="Enter custom buy-in"
|
||||
placeholder={i18n.t("enter_custom_buy_in")}
|
||||
keyboardType="numeric"
|
||||
/>
|
||||
|
||||
<Text style={styles.h2}>
|
||||
Selected Buy-in:{" "}
|
||||
{buyInAmount !== null ? `${selectedCurrency} ${buyInAmount}` : "None"}
|
||||
{`${i18n.t("selected_buy_in")}: `}
|
||||
{buyInAmount !== null
|
||||
? `${selectedCurrency} ${buyInAmount}`
|
||||
: i18n.t("none")}
|
||||
</Text>
|
||||
</>
|
||||
);
|
||||
|
@ -1,18 +1,20 @@
|
||||
import React, { useState } from "react";
|
||||
import { Image, ActivityIndicator, Text, View } from "react-native";
|
||||
import Button from "@/containers/Button";
|
||||
|
||||
import * as ImagePicker from "expo-image-picker";
|
||||
import i18n from "@/i18n/i18n";
|
||||
|
||||
const ChipDetection = ({
|
||||
updateChipCount,
|
||||
}: {
|
||||
updateChipCount: () => void;
|
||||
updateChipCount: (chipData: Record<string, number>) => void;
|
||||
}) => {
|
||||
const [imageUri, setImageUri] = useState(null);
|
||||
const [imageUri, setImageUri] = useState<string | null>(null);
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [error, setError] = useState(null);
|
||||
const [lastDetectedChips, setLastDetectedChips] = useState({});
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [lastDetectedChips, setLastDetectedChips] = useState<
|
||||
Record<string, number>
|
||||
>({});
|
||||
|
||||
const requestCameraPermissions = async () => {
|
||||
const cameraPermission = await ImagePicker.requestCameraPermissionsAsync();
|
||||
@ -26,16 +28,16 @@ const ChipDetection = ({
|
||||
quality: 1,
|
||||
});
|
||||
|
||||
if (!result.canceled) {
|
||||
if (!result.canceled && result.assets && result.assets.length > 0) {
|
||||
setImageUri(result.assets[0].uri);
|
||||
await processImage(result.assets[0].base64);
|
||||
await processImage(result.assets[0].base64 as string);
|
||||
}
|
||||
};
|
||||
|
||||
const takePhoto = async () => {
|
||||
const hasPermission = await requestCameraPermissions();
|
||||
if (!hasPermission) {
|
||||
setError("Camera permission is required to take a photo.");
|
||||
setError(i18n.t("camera_permission_required"));
|
||||
return;
|
||||
}
|
||||
|
||||
@ -44,25 +46,25 @@ const ChipDetection = ({
|
||||
quality: 1,
|
||||
});
|
||||
|
||||
if (!result.canceled) {
|
||||
if (!result.canceled && result.assets && result.assets.length > 0) {
|
||||
setImageUri(result.assets[0].uri);
|
||||
await processImage(result.assets[0].base64);
|
||||
await processImage(result.assets[0].base64 as string);
|
||||
}
|
||||
};
|
||||
|
||||
const processImage = async (base64Image) => {
|
||||
const processImage = async (base64Image: string) => {
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
|
||||
try {
|
||||
const response = await fetch(process.env.EXPO_PUBLIC_API_URL, {
|
||||
const response = await fetch(process.env.EXPO_PUBLIC_API_URL as string, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
Authorization: `Bearer ${process.env.EXPO_PUBLIC_API_KEY}`, // Use environment variable for API key
|
||||
Authorization: `Bearer ${process.env.EXPO_PUBLIC_API_KEY}`,
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify({
|
||||
model: process.env.EXPO_PUBLIC_MODEL_NAME, // Use environment variable for model name
|
||||
model: process.env.EXPO_PUBLIC_MODEL_NAME,
|
||||
messages: [
|
||||
{
|
||||
role: "system",
|
||||
@ -90,13 +92,12 @@ const ChipDetection = ({
|
||||
const result = await response.json();
|
||||
|
||||
if (!response.ok || !result.choices || !result.choices[0].message) {
|
||||
throw new Error("Invalid response from API.");
|
||||
throw new Error(i18n.t("invalid_response")); // Translate invalid response error
|
||||
}
|
||||
|
||||
const rawContent = result.choices[0].message.content.trim();
|
||||
const cleanJSON = rawContent.replace(/```json|```/g, "").trim();
|
||||
|
||||
const parsedData = JSON.parse(cleanJSON);
|
||||
const parsedData: Record<string, number> = JSON.parse(cleanJSON);
|
||||
|
||||
const filteredData = Object.fromEntries(
|
||||
Object.entries(parsedData).filter(([_, count]) => count > 0)
|
||||
@ -105,27 +106,36 @@ const ChipDetection = ({
|
||||
setLastDetectedChips(filteredData);
|
||||
updateChipCount(filteredData);
|
||||
} catch (error) {
|
||||
setError("Failed to analyze the image.");
|
||||
setError(i18n.t("failed_to_analyze_image"));
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<View style={{ flexDirection: "row", justifyContent: "space-evenly" }}>
|
||||
<Button title="Pick an Image" onPress={pickImage} />
|
||||
<Button title="Take a Photo" onPress={takePhoto} />
|
||||
<View>
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
justifyContent: "space-evenly",
|
||||
marginBottom: 10,
|
||||
}}
|
||||
>
|
||||
<Button title={i18n.t("pick_an_image")} onPress={pickImage} />
|
||||
<Button title={i18n.t("take_a_photo")} onPress={takePhoto} />
|
||||
</View>
|
||||
|
||||
{imageUri && (
|
||||
<Image
|
||||
source={{ uri: imageUri }}
|
||||
style={{ width: 300, height: 300, marginTop: 10 }}
|
||||
/>
|
||||
)}
|
||||
|
||||
{loading && <ActivityIndicator size="large" color="blue" />}
|
||||
|
||||
{error && <Text style={{ color: "red", marginTop: 10 }}>{error}</Text>}
|
||||
</>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
import React, { useCallback, useEffect, useMemo, useState } from "react";
|
||||
import { View, Text, StyleSheet } from "react-native";
|
||||
import { ColorValue } from "react-native";
|
||||
import i18n from "@/i18n/i18n";
|
||||
import styles from "@/styles/styles";
|
||||
|
||||
interface ChipDistributionSummaryProps {
|
||||
@ -8,7 +9,7 @@ interface ChipDistributionSummaryProps {
|
||||
buyInAmount: number;
|
||||
totalChipsCount: number[];
|
||||
colors?: ColorValue[];
|
||||
selectedCurrency: string; // Add the selectedCurrency as a prop here
|
||||
selectedCurrency: string;
|
||||
}
|
||||
|
||||
const ChipDistributionSummary = ({
|
||||
@ -165,17 +166,17 @@ const ChipDistributionSummary = ({
|
||||
...(colors[index] === "white" && styles.shadow),
|
||||
}}
|
||||
>
|
||||
{`${distributions[index]} chips: ${selectedCurrency}${denominations[index]} each`}
|
||||
{`${distributions[index]} ${i18n.t("chips")}: ${selectedCurrency}${denominations[index]} ${i18n.t("each")}`}
|
||||
</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
<View style={{ flexDirection: "row", justifyContent: "space-between" }}>
|
||||
<Text style={styles.p}>
|
||||
Total Value: {selectedCurrency} {totalValue}
|
||||
{i18n.t("total_value")}: {selectedCurrency} {totalValue}
|
||||
</Text>
|
||||
<Text style={styles.p}>
|
||||
{selectedCurrency} {potValue} Pot
|
||||
{selectedCurrency} {potValue} {i18n.t("pot")}
|
||||
</Text>
|
||||
</View>
|
||||
</>
|
||||
|
@ -11,6 +11,7 @@ import {
|
||||
import Button from "@/containers/Button";
|
||||
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
||||
import styles from "@/styles/styles";
|
||||
import i18n from "@/i18n/i18n";
|
||||
|
||||
const colors: ColorValue[] = ["white", "red", "green", "blue", "black"];
|
||||
|
||||
@ -48,7 +49,9 @@ const ChipInputModal = ({
|
||||
{value !== undefined && (
|
||||
<>
|
||||
<Text style={styles.h2}>
|
||||
Number of {showModal[1]?.toString()} chips
|
||||
{i18n.t("number_of_chips", {
|
||||
color: showModal[1]?.toString(),
|
||||
})}{" "}
|
||||
</Text>
|
||||
<TextInput
|
||||
style={{
|
||||
@ -67,7 +70,7 @@ const ChipInputModal = ({
|
||||
</>
|
||||
)}
|
||||
<Button
|
||||
title="Accept"
|
||||
title={i18n.t("accept")}
|
||||
onPress={() => {
|
||||
update(showModal[1], Number.isNaN(value) ? 0 : value);
|
||||
setShowModal([false, color]);
|
||||
@ -128,7 +131,7 @@ const ChipsSelector = ({
|
||||
[numberOfChips]
|
||||
);
|
||||
|
||||
// Callback for ChipInputModal to update the chips in the parents state.
|
||||
// Callback for ChipInputModal to update the chips in the parent's state.
|
||||
const update = useCallback(
|
||||
(color: ColorValue, count: number) => {
|
||||
const newTotalChipsCount = totalChipsCount.slice();
|
||||
@ -227,4 +230,5 @@ const styles1 = StyleSheet.create({
|
||||
},
|
||||
button: {},
|
||||
});
|
||||
|
||||
export default ChipsSelector;
|
||||
|
@ -1,6 +1,7 @@
|
||||
import React from "react";
|
||||
import { Picker } from "@react-native-picker/picker";
|
||||
import styles from "@/styles/styles";
|
||||
import i18n from "@/i18n/i18n";
|
||||
|
||||
interface CurrencySelectorProps {
|
||||
selectedCurrency: string;
|
||||
@ -19,10 +20,10 @@ const CurrencySelector: React.FC<CurrencySelectorProps> = ({
|
||||
style={styles.picker}
|
||||
testID="currency-picker" // ✅ Add testID here
|
||||
>
|
||||
<Picker.Item label="USD ($)" value="$" />
|
||||
<Picker.Item label="Euro (€)" value="€" />
|
||||
<Picker.Item label="Pound (£)" value="£" />
|
||||
<Picker.Item label="INR (₹)" value="₹" />
|
||||
<Picker.Item label={i18n.t("USD")} value="$" />
|
||||
<Picker.Item label={i18n.t("Euro")} value="€" />
|
||||
<Picker.Item label={i18n.t("Pound")} value="£" />
|
||||
<Picker.Item label={i18n.t("INR")} value="₹" />
|
||||
</Picker>
|
||||
</>
|
||||
);
|
||||
|
@ -13,6 +13,7 @@ describe("BuyInSelector Component", () => {
|
||||
let setBuyInAmount;
|
||||
let getByText;
|
||||
let getByPlaceholderText;
|
||||
let queryByText;
|
||||
|
||||
// Render the component with the necessary props
|
||||
const renderComponent = (selectedCurrency = "$") => {
|
||||
@ -24,11 +25,12 @@ describe("BuyInSelector Component", () => {
|
||||
);
|
||||
getByText = result.getByText;
|
||||
getByPlaceholderText = result.getByPlaceholderText;
|
||||
queryByText = result.queryByText;
|
||||
};
|
||||
|
||||
beforeEach(() => {
|
||||
setBuyInAmount = jest.fn();
|
||||
renderComponent(); // Render with default currency
|
||||
renderComponent();
|
||||
});
|
||||
|
||||
it("renders the buy-in options and input correctly", () => {
|
||||
@ -36,7 +38,9 @@ describe("BuyInSelector Component", () => {
|
||||
expect(getByText("$ 25")).toBeTruthy();
|
||||
expect(getByText("$ 50")).toBeTruthy();
|
||||
expect(getByPlaceholderText("Enter custom buy-in")).toBeTruthy();
|
||||
expect(getByText("Selected Buy-in: None")).toBeTruthy(); // Check default selection
|
||||
|
||||
// Check default selection with a more flexible approach
|
||||
expect(queryByText(/Selected Buy-in.*None/)).toBeTruthy();
|
||||
});
|
||||
|
||||
it("sets a predefined buy-in amount correctly", () => {
|
||||
@ -51,9 +55,9 @@ describe("BuyInSelector Component", () => {
|
||||
|
||||
it("resets custom amount if invalid input is entered", () => {
|
||||
fireEvent.changeText(getByPlaceholderText("Enter custom buy-in"), "-10");
|
||||
expect(setBuyInAmount).toHaveBeenCalledWith(25); // Assuming 25 is the default
|
||||
expect(setBuyInAmount).toHaveBeenCalledWith(25);
|
||||
fireEvent.changeText(getByPlaceholderText("Enter custom buy-in"), "abc");
|
||||
expect(setBuyInAmount).toHaveBeenCalledWith(25); // Reset to default
|
||||
expect(setBuyInAmount).toHaveBeenCalledWith(25);
|
||||
});
|
||||
|
||||
it("clears the custom amount when selecting a predefined option", () => {
|
||||
@ -74,9 +78,9 @@ describe("BuyInSelector Component", () => {
|
||||
});
|
||||
|
||||
it("triggers state update every time a buy-in option is clicked, even if it's the same", () => {
|
||||
fireEvent.press(getByText("$ 25")); // First click
|
||||
fireEvent.press(getByText("$ 25")); // Clicking the same option again
|
||||
expect(setBuyInAmount).toHaveBeenCalledTimes(2); // Expect it to be called twice
|
||||
fireEvent.press(getByText("$ 25"));
|
||||
fireEvent.press(getByText("$ 25"));
|
||||
expect(setBuyInAmount).toHaveBeenCalledTimes(2);
|
||||
});
|
||||
|
||||
it("resets to default buy-in when custom input is cleared", () => {
|
||||
@ -84,7 +88,7 @@ describe("BuyInSelector Component", () => {
|
||||
fireEvent.changeText(input, "75");
|
||||
expect(setBuyInAmount).toHaveBeenCalledWith(75);
|
||||
fireEvent.changeText(input, "");
|
||||
expect(setBuyInAmount).toHaveBeenCalledWith(25); // Assuming 25 is the default
|
||||
expect(setBuyInAmount).toHaveBeenCalledWith(25);
|
||||
});
|
||||
|
||||
it("updates state correctly when selecting predefined buy-in after entering a custom amount", () => {
|
||||
@ -95,10 +99,12 @@ describe("BuyInSelector Component", () => {
|
||||
});
|
||||
|
||||
it("displays selected currency correctly", () => {
|
||||
renderComponent("€"); // Test with a different currency
|
||||
renderComponent("€");
|
||||
expect(getByText("€ 10")).toBeTruthy();
|
||||
expect(getByText("€ 25")).toBeTruthy();
|
||||
expect(getByText("€ 50")).toBeTruthy();
|
||||
expect(getByText("Selected Buy-in: None")).toBeTruthy();
|
||||
|
||||
// Check default selection text with a flexible regex
|
||||
expect(queryByText(/Selected Buy-in.*None/)).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
@ -42,8 +42,9 @@ describe("ChipDetection", () => {
|
||||
const { getByText } = render(
|
||||
<ChipDetection updateChipCount={mockUpdateChipCount} />
|
||||
);
|
||||
expect(getByText("Pick an Image")).toBeTruthy();
|
||||
expect(getByText("Take a Photo")).toBeTruthy();
|
||||
|
||||
expect(getByText(/pick an image/i)).toBeTruthy();
|
||||
expect(getByText(/take a photo/i)).toBeTruthy();
|
||||
});
|
||||
|
||||
it("picks an image from the library", async () => {
|
||||
@ -55,7 +56,7 @@ describe("ChipDetection", () => {
|
||||
const { getByText } = render(
|
||||
<ChipDetection updateChipCount={mockUpdateChipCount} />
|
||||
);
|
||||
fireEvent.press(getByText("Pick an Image"));
|
||||
fireEvent.press(getByText(/pick an image/i));
|
||||
|
||||
await waitFor(() => expect(mockUpdateChipCount).toHaveBeenCalled());
|
||||
});
|
||||
@ -72,7 +73,7 @@ describe("ChipDetection", () => {
|
||||
const { getByText } = render(
|
||||
<ChipDetection updateChipCount={mockUpdateChipCount} />
|
||||
);
|
||||
fireEvent.press(getByText("Take a Photo"));
|
||||
fireEvent.press(getByText(/take a photo/i));
|
||||
|
||||
await waitFor(() =>
|
||||
expect(mockUpdateChipCount).toHaveBeenCalledWith({ red: 5, green: 3 })
|
||||
@ -87,11 +88,11 @@ describe("ChipDetection", () => {
|
||||
const { getByText } = render(
|
||||
<ChipDetection updateChipCount={mockUpdateChipCount} />
|
||||
);
|
||||
fireEvent.press(getByText("Take a Photo"));
|
||||
fireEvent.press(getByText(/take a photo/i));
|
||||
|
||||
await waitFor(() =>
|
||||
expect(
|
||||
getByText("Camera permission is required to take a photo.")
|
||||
getByText(/camera permission is required to take a photo/i)
|
||||
).toBeTruthy()
|
||||
);
|
||||
});
|
||||
@ -112,10 +113,10 @@ describe("ChipDetection", () => {
|
||||
const { getByText } = render(
|
||||
<ChipDetection updateChipCount={mockUpdateChipCount} />
|
||||
);
|
||||
fireEvent.press(getByText("Pick an Image"));
|
||||
fireEvent.press(getByText(/pick an image/i));
|
||||
|
||||
await waitFor(() =>
|
||||
expect(getByText("Failed to analyze the image.")).toBeTruthy()
|
||||
expect(getByText(/failed to analyze the image/i)).toBeTruthy()
|
||||
);
|
||||
});
|
||||
|
||||
@ -144,7 +145,7 @@ describe("ChipDetection", () => {
|
||||
const { getByText } = render(
|
||||
<ChipDetection updateChipCount={mockUpdateChipCount} />
|
||||
);
|
||||
fireEvent.press(getByText("Pick an Image"));
|
||||
fireEvent.press(getByText(/pick an image/i));
|
||||
|
||||
await waitFor(() =>
|
||||
expect(mockUpdateChipCount).toHaveBeenCalledWith({
|
||||
|
@ -6,9 +6,7 @@ describe("ChipDistributionSummary Component", () => {
|
||||
test("renders correctly with valid data", () => {
|
||||
const playerCount = 4;
|
||||
const totalChipsCount = [100, 80, 60, 40, 20];
|
||||
const colors = ["WHITE", "RED", "GREEN", "BLUE", "BLACK"];
|
||||
const buyInAmount = 20;
|
||||
|
||||
const expectedDistribution = [2, 2, 1, 2, 2];
|
||||
const expectedDenominations = [0.5, 1, 2, 2.5, 5];
|
||||
|
||||
@ -23,7 +21,8 @@ describe("ChipDistributionSummary Component", () => {
|
||||
|
||||
expectedDistribution.forEach((count, index) => {
|
||||
const regex = new RegExp(
|
||||
`^${count}\\s+chips:\\s+\\$${expectedDenominations[index]}\\s+each$`
|
||||
`^${count}\\s+chips:\\s+\\$${expectedDenominations[index]}\\s+Each$`,
|
||||
"i"
|
||||
);
|
||||
expect(getByText(regex)).toBeTruthy();
|
||||
});
|
||||
@ -67,7 +66,7 @@ describe("ChipDistributionSummary Component", () => {
|
||||
|
||||
expect(getByText("Distribution & Denomination")).toBeTruthy();
|
||||
|
||||
expectedDistribution.forEach((count, index) => {
|
||||
expectedDistribution.forEach((count) => {
|
||||
expect(getByText(new RegExp(`^${count}\\s+chips:`, "i"))).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
@ -5,6 +5,7 @@ import {
|
||||
screen,
|
||||
waitForElementToBeRemoved,
|
||||
fireEvent,
|
||||
act,
|
||||
} from "@testing-library/react-native";
|
||||
import ChipsSelector from "@/components/ChipsSelector";
|
||||
|
||||
@ -55,7 +56,8 @@ describe("tests for ChipsSelector", () => {
|
||||
const green = screen.getByText("60");
|
||||
expect(green).toHaveStyle({ color: "green" });
|
||||
|
||||
userEvent.press(green);
|
||||
fireEvent.press(green);
|
||||
|
||||
const modalLabel = await screen.findByText(/number of green chips/i);
|
||||
expect(modalLabel).toBeDefined();
|
||||
|
||||
|
50
i18n/en.json
Normal file
50
i18n/en.json
Normal file
@ -0,0 +1,50 @@
|
||||
{
|
||||
"translation": {
|
||||
"poker_chips_helper": "Poker Chips Helper",
|
||||
"select_currency": "Select Currency",
|
||||
"USD": "USD ($)",
|
||||
"Euro": "Euro (€)",
|
||||
"Pound": "Pound (£)",
|
||||
"INR": "INR (₹)",
|
||||
"select_number_of_players": "Select the Number of Players:",
|
||||
"select_buyin_amount": "Select Buy-in Amount:",
|
||||
"custom_buy_in": "Or enter a custom amount:",
|
||||
"enter_custom_buy_in": "Enter custom buy-in",
|
||||
"selected_buy_in": "Selected Buy-in:",
|
||||
"none": "None",
|
||||
"pick_an_image": "Pick an image",
|
||||
"take_a_photo": "Take a photo",
|
||||
"chips": "chips",
|
||||
"number_of_chips": "Number of {{color}} chips",
|
||||
"accept": "Accept",
|
||||
"distribution_and_denomination": "Distribution & Denomination",
|
||||
"pot": "Pot",
|
||||
"total_value": "Total Value",
|
||||
"each": "Each",
|
||||
"select_language": "Select Language",
|
||||
"english": "English",
|
||||
"spanish": "Spanish",
|
||||
"settings": "Settings",
|
||||
"camera_permission_required": "Camera permission is required to take a photo.",
|
||||
"how_many_chips_by_color": "How many poker chips are there for each color? Return structured JSON.",
|
||||
"invalid_response": "Invalid response from API.",
|
||||
"failed_to_analyze_image": "Failed to analyze the image.",
|
||||
"state_saved_successfully": "State saved successfully",
|
||||
"state_saved": "State saved to {{slot}}",
|
||||
"state_save_failed": "Failed to save state",
|
||||
"success": "Success",
|
||||
"error": "Error",
|
||||
"failed_to_save_state": "Failed to save state.",
|
||||
"state_loaded_from": "State loaded from",
|
||||
"info": "Info",
|
||||
"no_saved_state_found": "No saved state found.",
|
||||
"automatic_chip_detection": "Automatic Chip Detection",
|
||||
"manual_chip_adjustment": "Manual Chip Adjustment",
|
||||
"save_and_load": "Save & Load",
|
||||
"save_slot_1": "Save\nSlot 1",
|
||||
"save_slot_2": "Save\nSlot 2",
|
||||
"load_slot_1": "Load\nSlot 1",
|
||||
"load_slot_2": "Load\nSlot 2",
|
||||
"please_select_valid_buyin": "Please select a valid buy-in amount"
|
||||
}
|
||||
}
|
51
i18n/es.json
Normal file
51
i18n/es.json
Normal file
@ -0,0 +1,51 @@
|
||||
{
|
||||
"translation": {
|
||||
"poker_chips_helper": "Ayudante de Fichas de Póker",
|
||||
"select_currency": "Seleccionar moneda",
|
||||
"USD": "USD ($)",
|
||||
"Euro": "Euro (€)",
|
||||
"Pound": "Libra (£)",
|
||||
"INR": "INR (₹)",
|
||||
"select_number_of_players": "Seleccionar número de jugadores:",
|
||||
"select_buyin_amount": "Seleccionar cantidad de buy-in:",
|
||||
"custom_buy_in": "O ingresa una cantidad personalizada:",
|
||||
"enter_custom_buy_in": "Ingresar buy-in personalizado",
|
||||
"selected_buy_in": "Buy-in seleccionado:",
|
||||
"none": "Ninguno",
|
||||
"pick_an_image": "Elige una imagen",
|
||||
"take_a_photo": "Tomar una foto",
|
||||
"chips": "fichas",
|
||||
"number_of_chips": "Número de {{color}} fichas",
|
||||
"accept": "Aceptar",
|
||||
"distribution_and_denomination": "Distribución y Denominación",
|
||||
"pot": "Olla",
|
||||
"total_value": "Valor total",
|
||||
"each": "Cada",
|
||||
"select_language": "Seleccionar idioma",
|
||||
"english": "Inglés",
|
||||
"spanish": "Español",
|
||||
"settings": "Configuraciones",
|
||||
"camera_permission_required": "Se requiere permiso de cámara para tomar una foto.",
|
||||
"how_many_chips_by_color": "¿Cuántas fichas de póker hay de cada color? Devuelve JSON estructurado.",
|
||||
"invalid_response": "Respuesta no válida de la API.",
|
||||
"failed_to_analyze_image": "No se pudo analizar la imagen",
|
||||
"state_saved_successfully": "Estado guardado con éxito",
|
||||
"state_saved": "Estado guardado en {{slot}}",
|
||||
"state_save_failed": "Error al guardar el estado",
|
||||
"success": "Éxito",
|
||||
"state_saved_to": "Estado guardado en",
|
||||
"error": "Error",
|
||||
"failed_to_save_state": "No se pudo guardar el estado.",
|
||||
"state_loaded_from": "Estado cargado desde",
|
||||
"info": "Información",
|
||||
"no_saved_state_found": "No se encontró estado guardado.",
|
||||
"automatic_chip_detection": "Detección automática de fichas",
|
||||
"manual_chip_adjustment": "Ajuste manual de fichas",
|
||||
"save_and_load": "Guardar & Cargar",
|
||||
"save_slot_1": "Guardar\nSlot 1",
|
||||
"save_slot_2": "Guardar\nSlot 2",
|
||||
"load_slot_1": "Cargar\nSlot 1",
|
||||
"load_slot_2": "Cargar\nSlot 2",
|
||||
"please_select_valid_buyin": "Por favor seleccione una cantidad de buy-in válida"
|
||||
}
|
||||
}
|
22
i18n/i18n.ts
Normal file
22
i18n/i18n.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import i18n from "i18next";
|
||||
import { initReactI18next } from "react-i18next";
|
||||
import * as Localization from "expo-localization";
|
||||
import en from "./en.json";
|
||||
import es from "./es.json";
|
||||
const resources = {
|
||||
en,
|
||||
es,
|
||||
};
|
||||
|
||||
const detectedLanguage = Localization.locale.split("-")[0] || "en";
|
||||
|
||||
i18n.use(initReactI18next).init({
|
||||
resources,
|
||||
lng: detectedLanguage,
|
||||
fallbackLng: "en",
|
||||
interpolation: {
|
||||
escapeValue: false,
|
||||
},
|
||||
});
|
||||
|
||||
export default i18n;
|
Loading…
Reference in New Issue
Block a user