Refine UX for on-device translation for posts (#9987)
Co-authored-by: Samuel Newman <mozzius@protonmail.com> Co-authored-by: Eric Bailey <git@esb.lol>
This commit is contained in:
@@ -6,10 +6,9 @@ import {getTranslatorLink} from '#/locale/helpers'
|
||||
import {IS_ANDROID} from '#/env'
|
||||
|
||||
/**
|
||||
* Will always link out to Google Translate. If inline translation is desired,
|
||||
* use `useTranslateOnDevice`
|
||||
* @deprecated Will always link out to Google Translate. Prefer `useTranslate`.
|
||||
*/
|
||||
export function useTranslate() {
|
||||
export function useGoogleTranslate() {
|
||||
const openLink = useOpenLink()
|
||||
|
||||
return useCallback(
|
||||
@@ -0,0 +1,16 @@
|
||||
import {createContext} from 'react'
|
||||
|
||||
import {type TranslationFunctionParams, type TranslationState} from './types'
|
||||
|
||||
export const Context = createContext<{
|
||||
translationState: Record<string, TranslationState>
|
||||
translate: (
|
||||
parameters: TranslationFunctionParams & {
|
||||
key: string
|
||||
forceGoogleTranslate: boolean
|
||||
},
|
||||
) => Promise<void>
|
||||
clearTranslation: (key: string) => void
|
||||
acquireTranslation: (key: string) => () => void
|
||||
} | null>(null)
|
||||
Context.displayName = 'TranslationContext'
|
||||
@@ -0,0 +1,282 @@
|
||||
import {useCallback, useContext, useEffect, useMemo, useState} from 'react'
|
||||
import {LayoutAnimation, Platform} from 'react-native'
|
||||
import {getLocales} from 'expo-localization'
|
||||
import {onTranslateTask} from '@bsky.app/expo-translate-text'
|
||||
import {type TranslationTaskResult} from '@bsky.app/expo-translate-text/build/ExpoTranslateText.types'
|
||||
import {useLingui} from '@lingui/react/macro'
|
||||
import {useFocusEffect} from '@react-navigation/native'
|
||||
|
||||
import {useGoogleTranslate} from '#/lib/hooks/useGoogleTranslate'
|
||||
import {logger} from '#/logger'
|
||||
import {useAnalytics} from '#/analytics'
|
||||
import {HAS_ON_DEVICE_TRANSLATION} from '#/env'
|
||||
import {Context} from './context'
|
||||
import {type TranslationFunctionParams, type TranslationState} from './types'
|
||||
import {guessLanguage} from './utils'
|
||||
|
||||
export * from './types'
|
||||
export * from './utils'
|
||||
|
||||
/**
|
||||
* Attempts on-device translation via @bsky.app/expo-translate-text.
|
||||
* Uses a lazy import to avoid crashing if the native module isn't linked into
|
||||
* the current build.
|
||||
*/
|
||||
async function attemptTranslation(
|
||||
input: string,
|
||||
targetLangCodeOriginal: string,
|
||||
sourceLangCodeOriginal?: string, // Auto-detects if not provided
|
||||
): Promise<{
|
||||
translatedText: string
|
||||
targetLanguage: TranslationTaskResult['targetLanguage']
|
||||
sourceLanguage: TranslationTaskResult['sourceLanguage']
|
||||
}> {
|
||||
// Note that Android only supports two-character language codes and will fail
|
||||
// on other input.
|
||||
// https://developers.google.com/android/reference/com/google/mlkit/nl/translate/TranslateLanguage
|
||||
let targetLangCode =
|
||||
Platform.OS === 'android'
|
||||
? targetLangCodeOriginal.split('-')[0]
|
||||
: targetLangCodeOriginal
|
||||
const sourceLangCode =
|
||||
Platform.OS === 'android'
|
||||
? sourceLangCodeOriginal?.split('-')[0]
|
||||
: sourceLangCodeOriginal
|
||||
|
||||
// Special cases for regional languages since iOS differentiates and missing
|
||||
// language packs must be downloaded and installed.
|
||||
if (Platform.OS === 'ios') {
|
||||
const deviceLocales = getLocales()
|
||||
const primaryLanguageTag = deviceLocales[0]?.languageTag
|
||||
switch (targetLangCodeOriginal) {
|
||||
case 'en': // en-US, en-GB
|
||||
case 'es': // es-419, es-ES
|
||||
case 'pt': // pt-BR, pt-PT
|
||||
case 'zh': // zh-Hans-CN, zh-Hant-HK, zh-Hant-TW
|
||||
if (
|
||||
primaryLanguageTag &&
|
||||
primaryLanguageTag.startsWith(targetLangCodeOriginal)
|
||||
) {
|
||||
targetLangCode = primaryLanguageTag
|
||||
}
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
const result = await onTranslateTask({
|
||||
input,
|
||||
targetLangCode,
|
||||
sourceLangCode,
|
||||
})
|
||||
|
||||
// Since `input` is always a string, the result should always be a string.
|
||||
const translatedText =
|
||||
typeof result.translatedTexts === 'string' ? result.translatedTexts : ''
|
||||
|
||||
if (translatedText === input) {
|
||||
throw new Error('Translation result is the same as the source text.')
|
||||
}
|
||||
|
||||
if (translatedText === '') {
|
||||
throw new Error('Translation result is empty.')
|
||||
}
|
||||
|
||||
return {
|
||||
translatedText,
|
||||
targetLanguage: result.targetLanguage,
|
||||
sourceLanguage:
|
||||
result.sourceLanguage ?? sourceLangCode ?? guessLanguage(input), // iOS doesn't return the source language
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Native translation hook. Attempts on-device translation using Apple
|
||||
* Translation (iOS 18+) or Google ML Kit (Android).
|
||||
*
|
||||
* Falls back to Google Translate URL if the language pack is unavailable.
|
||||
*
|
||||
* Web uses index.web.ts which always opens Google Translate.
|
||||
*/
|
||||
export function useTranslate({
|
||||
key,
|
||||
forceGoogleTranslate = false,
|
||||
}: {
|
||||
key: string
|
||||
forceGoogleTranslate?: boolean
|
||||
}) {
|
||||
const context = useContext(Context)
|
||||
if (!context) {
|
||||
throw new Error(
|
||||
'useTranslate must be used within a TranslateOnDeviceProvider',
|
||||
)
|
||||
}
|
||||
|
||||
useFocusEffect(
|
||||
useCallback(() => {
|
||||
const cleanup = context.acquireTranslation(key)
|
||||
return cleanup
|
||||
}, [key, context]),
|
||||
)
|
||||
|
||||
const translate = useCallback(
|
||||
async (params: TranslationFunctionParams) => {
|
||||
return context.translate({...params, key, forceGoogleTranslate})
|
||||
},
|
||||
[context, forceGoogleTranslate, key],
|
||||
)
|
||||
|
||||
const clearTranslation = useCallback(
|
||||
() => context.clearTranslation(key),
|
||||
[context, key],
|
||||
)
|
||||
|
||||
return useMemo(
|
||||
() => ({
|
||||
translationState: context.translationState[key] ?? {
|
||||
status: 'idle',
|
||||
},
|
||||
translate,
|
||||
clearTranslation,
|
||||
}),
|
||||
[clearTranslation, context.translationState, key, translate],
|
||||
)
|
||||
}
|
||||
|
||||
export function Provider({children}: React.PropsWithChildren<unknown>) {
|
||||
const [translationState, setTranslationState] = useState<
|
||||
Record<string, TranslationState>
|
||||
>({})
|
||||
const [refCounts, setRefCounts] = useState<Record<string, number>>({})
|
||||
const ax = useAnalytics()
|
||||
const {t: l} = useLingui()
|
||||
const googleTranslate = useGoogleTranslate()
|
||||
|
||||
useEffect(() => {
|
||||
setTranslationState(prev => {
|
||||
const keysToDelete: string[] = []
|
||||
|
||||
for (const key of Object.keys(prev)) {
|
||||
if ((refCounts[key] ?? 0) <= 0) {
|
||||
keysToDelete.push(key)
|
||||
}
|
||||
}
|
||||
|
||||
if (keysToDelete.length > 0) {
|
||||
const newState = {...prev}
|
||||
keysToDelete.forEach(key => {
|
||||
delete newState[key]
|
||||
})
|
||||
return newState
|
||||
}
|
||||
|
||||
return prev
|
||||
})
|
||||
}, [refCounts])
|
||||
|
||||
const acquireTranslation = useCallback((key: string) => {
|
||||
setRefCounts(prev => ({
|
||||
...prev,
|
||||
[key]: (prev[key] ?? 0) + 1,
|
||||
}))
|
||||
|
||||
return () => {
|
||||
setRefCounts(prev => {
|
||||
const newCount = (prev[key] ?? 1) - 1
|
||||
if (newCount <= 0) {
|
||||
const {[key]: _, ...rest} = prev
|
||||
return rest
|
||||
}
|
||||
return {...prev, [key]: newCount}
|
||||
})
|
||||
}
|
||||
}, [])
|
||||
|
||||
const clearTranslation = useCallback((key: string) => {
|
||||
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
|
||||
setTranslationState(prev => {
|
||||
delete prev[key]
|
||||
return {...prev}
|
||||
})
|
||||
}, [])
|
||||
|
||||
const translate = useCallback(
|
||||
async ({
|
||||
key,
|
||||
text,
|
||||
targetLangCode,
|
||||
sourceLangCode,
|
||||
...options
|
||||
}: {
|
||||
key: string
|
||||
text: string
|
||||
targetLangCode: string
|
||||
sourceLangCode?: string
|
||||
forceGoogleTranslate?: boolean
|
||||
}) => {
|
||||
if (options?.forceGoogleTranslate || !HAS_ON_DEVICE_TRANSLATION) {
|
||||
ax.metric('translate:result', {
|
||||
method: 'google-translate',
|
||||
os: Platform.OS,
|
||||
sourceLanguage: sourceLangCode ?? null,
|
||||
targetLanguage: targetLangCode,
|
||||
})
|
||||
await googleTranslate(text, targetLangCode, sourceLangCode)
|
||||
return
|
||||
}
|
||||
|
||||
// Translate after the next state change.
|
||||
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
|
||||
setTranslationState(prev => ({
|
||||
...prev,
|
||||
[key]: {status: 'loading'},
|
||||
}))
|
||||
try {
|
||||
const result = await attemptTranslation(
|
||||
text,
|
||||
targetLangCode,
|
||||
sourceLangCode,
|
||||
)
|
||||
ax.metric('translate:result', {
|
||||
method: 'on-device',
|
||||
os: Platform.OS,
|
||||
sourceLanguage: result.sourceLanguage,
|
||||
targetLanguage: result.targetLanguage,
|
||||
})
|
||||
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
|
||||
setTranslationState(prev => ({
|
||||
...prev,
|
||||
[key]: {
|
||||
status: 'success',
|
||||
translatedText: result.translatedText,
|
||||
sourceLanguage: result.sourceLanguage,
|
||||
targetLanguage: result.targetLanguage,
|
||||
},
|
||||
}))
|
||||
} catch (e) {
|
||||
logger.error('Failed to translate post on device', {safeMessage: e})
|
||||
// On-device translation failed (language pack missing or user
|
||||
// dismissed the download prompt). Fall back to Google Translate.
|
||||
ax.metric('translate:result', {
|
||||
method: 'fallback-alert',
|
||||
os: Platform.OS,
|
||||
sourceLanguage: sourceLangCode ?? null,
|
||||
targetLanguage: targetLangCode,
|
||||
})
|
||||
let errorMessage = l`Device failed to translate :(`
|
||||
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
|
||||
setTranslationState(prev => ({
|
||||
...prev,
|
||||
[key]: {status: 'error', message: errorMessage},
|
||||
}))
|
||||
}
|
||||
},
|
||||
[ax, googleTranslate, l],
|
||||
)
|
||||
|
||||
const ctx = useMemo(
|
||||
() => ({acquireTranslation, clearTranslation, translate, translationState}),
|
||||
[acquireTranslation, clearTranslation, translate, translationState],
|
||||
)
|
||||
|
||||
return <Context.Provider value={ctx}>{children}</Context.Provider>
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
import {useCallback, useContext, useMemo} from 'react'
|
||||
|
||||
import {useGoogleTranslate} from '#/lib/hooks/useGoogleTranslate'
|
||||
import {useAnalytics} from '#/analytics'
|
||||
import {Context} from './context'
|
||||
import {type TranslationFunctionParams, type TranslationState} from './types'
|
||||
|
||||
export * from './types'
|
||||
export * from './utils'
|
||||
|
||||
const translationState: Record<string, TranslationState> = {}
|
||||
const acquireTranslation = (_key: string) => {
|
||||
return () => {}
|
||||
}
|
||||
const clearTranslation = (_key: string) => {}
|
||||
|
||||
/**
|
||||
* Web always opens Google Translate.
|
||||
*/
|
||||
export function useTranslate({
|
||||
key,
|
||||
}: {
|
||||
key: string
|
||||
forceGoogleTranslate?: boolean
|
||||
}) {
|
||||
const context = useContext(Context)
|
||||
if (!context) {
|
||||
throw new Error(
|
||||
'useTranslate must be used within a TranslateOnDeviceProvider',
|
||||
)
|
||||
}
|
||||
|
||||
// Always call hooks in consistent order
|
||||
const translate = useCallback(
|
||||
async (params: TranslationFunctionParams) => {
|
||||
return context.translate({...params, key, forceGoogleTranslate: true})
|
||||
},
|
||||
[key, context],
|
||||
)
|
||||
|
||||
const clearTranslation = useCallback(() => {
|
||||
return context.clearTranslation(key)
|
||||
}, [key, context])
|
||||
|
||||
return {
|
||||
translationState: context.translationState[key] ?? {
|
||||
status: 'idle' as const,
|
||||
},
|
||||
translate,
|
||||
clearTranslation,
|
||||
}
|
||||
}
|
||||
|
||||
export function Provider({children}: React.PropsWithChildren<unknown>) {
|
||||
const ax = useAnalytics()
|
||||
const googleTranslate = useGoogleTranslate()
|
||||
|
||||
const translate = useCallback(
|
||||
async ({
|
||||
text,
|
||||
targetLangCode,
|
||||
sourceLangCode,
|
||||
}: {
|
||||
key: string
|
||||
text: string
|
||||
targetLangCode: string
|
||||
sourceLangCode?: string
|
||||
}) => {
|
||||
ax.metric('translate:result', {
|
||||
method: 'google-translate',
|
||||
os: 'web',
|
||||
sourceLanguage: sourceLangCode ?? null,
|
||||
targetLanguage: targetLangCode,
|
||||
})
|
||||
await googleTranslate(text, targetLangCode, sourceLangCode)
|
||||
},
|
||||
[ax, googleTranslate],
|
||||
)
|
||||
|
||||
const ctx = useMemo(
|
||||
() => ({acquireTranslation, clearTranslation, translate, translationState}),
|
||||
[translate],
|
||||
)
|
||||
|
||||
return <Context.Provider value={ctx}>{children}</Context.Provider>
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
import {type TranslationTaskResult} from '@bsky.app/expo-translate-text/build/ExpoTranslateText.types'
|
||||
|
||||
export type TranslationState =
|
||||
| {status: 'idle'}
|
||||
| {status: 'loading'}
|
||||
| {
|
||||
status: 'success'
|
||||
translatedText: string
|
||||
sourceLanguage: TranslationTaskResult['sourceLanguage']
|
||||
targetLanguage: TranslationTaskResult['targetLanguage']
|
||||
}
|
||||
| {
|
||||
status: 'error'
|
||||
message: string
|
||||
}
|
||||
|
||||
export type TranslationFunctionParams = {
|
||||
/**
|
||||
* The text to be translated.
|
||||
*/
|
||||
text: string
|
||||
/**
|
||||
* The language to translate the text into.
|
||||
*/
|
||||
targetLangCode: string
|
||||
/**
|
||||
* The source language of the text. Will auto-detect if not provided.
|
||||
*/
|
||||
sourceLangCode?: string
|
||||
}
|
||||
|
||||
export type TranslationFunction = (
|
||||
parameters: TranslationFunctionParams,
|
||||
) => Promise<void>
|
||||
@@ -0,0 +1,13 @@
|
||||
import lande from 'lande'
|
||||
|
||||
import {code3ToCode2Strict} from '#/locale/helpers'
|
||||
|
||||
// TODO: Replace with expo-guess-language
|
||||
export function guessLanguage(text: string): string | null {
|
||||
const results = lande(text)
|
||||
// only return high-confidence results
|
||||
if (results[0] && results[0][1] > 0.97) {
|
||||
return code3ToCode2Strict(results[0][0]) ?? null
|
||||
}
|
||||
return null
|
||||
}
|
||||
Reference in New Issue
Block a user