From 56d95737a33fc439d1f398b9db906922e580af36 Mon Sep 17 00:00:00 2001 From: Jordan Hewitt Date: Sat, 25 Jan 2025 15:57:15 -0800 Subject: [PATCH] conversation translation passes. --- app/i18n/api.ts | 2 ++ app/lib/__test__/conversation.test.tsx | 8 ++++---- app/lib/conversation.ts | 1 + 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/app/i18n/api.ts b/app/i18n/api.ts index 94140c8..4b8b2e7 100644 --- a/app/i18n/api.ts +++ b/app/i18n/api.ts @@ -58,8 +58,10 @@ export class Translator { }), headers: { "Content-Type": "application/json" } }); + const data = await res.json(); + console.log(data) return data.translatedText } } diff --git a/app/lib/__test__/conversation.test.tsx b/app/lib/__test__/conversation.test.tsx index 269a272..1a5046f 100644 --- a/app/lib/__test__/conversation.test.tsx +++ b/app/lib/__test__/conversation.test.tsx @@ -8,9 +8,9 @@ describe('Conversation', () => { let conversation: Conversation; beforeEach(() => { - const translator = new Translator("en", "sp"); + const translator = new Translator("en", "es"); const s1: Speaker = { language: "en", id: "s1" }; - const s2: Speaker = { id: "s2", language: "sp" } + const s2: Speaker = { id: "s2", language: "es" } conversation = new Conversation(translator, s1, s2); }); @@ -18,7 +18,7 @@ describe('Conversation', () => { conversation.addMessage({ id: "s1", language: "en" }, "Hello"); expect(conversation.length).toBe(1); expect(conversation[0].speaker.id).toEqual("s1"); - expect(conversation[0].text).toEqual("hello"); + expect(conversation[0].text).toEqual("Hello"); }); it('should translate the last message in the conversation', async () => { @@ -26,6 +26,6 @@ describe('Conversation', () => { conversation.addMessage({ id: "s1", language: "en" }, "Hello"); await conversation.translateLast(); - expect(conversation[conversation.length - 1].translation).toEqual("Hollla"); + expect(conversation[conversation.length - 1].translation).toEqual("Hola"); }); }); \ No newline at end of file diff --git a/app/lib/conversation.ts b/app/lib/conversation.ts index d69fb00..25e44d5 100644 --- a/app/lib/conversation.ts +++ b/app/lib/conversation.ts @@ -30,6 +30,7 @@ export class Conversation extends Array { public async translateMessage(i : number) { if (!this[i]) throw new Error(`${i} is not a valid message number`); const otherSpeaker = this[i].speaker.id === this.s1.id ? this.s2 : this.s1 + console.log(`Translating sentence to %s: %s`, otherSpeaker.language, this[i].text) await this[i].translate(this.translator, otherSpeaker.language); }