sinProject-Inc/talk

View on GitHub
src/lib/translation/get_translation_api.ts

Summary

Maintainability
A
1 hr
Test Coverage
import type { LocaleCode } from '$lib/locale/locale_code'
import type { SpeechText } from '$lib/speech/speech_text'
import type { Text } from '@prisma/client'
import { Api } from '../api/api'
import { ApiPath } from '../api/api_path'

export class GetTranslationApi {
    private readonly _api_path: ApiPath

    public constructor(
        speech_text: SpeechText,
        source_locale_code: LocaleCode,
        target_locale_code: LocaleCode
    ) {
        this._api_path = ApiPath.api_directory
            .connect('get-translation')
            .connect_with_encoding(speech_text.text)
            .connect(source_locale_code.code)
            .connect(target_locale_code.code)
    }

    public async fetch(): Promise<Text[]> {
        const api = new Api(this._api_path)

        return await api.fetch<Text[]>()
    }
}