-
Notifications
You must be signed in to change notification settings - Fork 103
refactor(i18n): respect lazy loaded translations #541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8c6cd2f
refactor(i18n): Loader
MarcusNotheis ec4797d
MessageBox: refactor i18n
MarcusNotheis 7225a8f
Update index.tsx
MarcusNotheis c2dbc0f
Spinner: use new i18n approach
MarcusNotheis fcf139d
VariantManagement
MarcusNotheis aee204e
Notification
MarcusNotheis 449fc5f
Update ColumnHeaderModal.tsx
MarcusNotheis c9451a1
AnalyticalCard
MarcusNotheis 1f0713e
FilterBar
MarcusNotheis 486f033
cleanup old hook
MarcusNotheis 5ddde0d
remove i18n hook from ThemeProvider
MarcusNotheis 94fc359
Update packages/base/src/hooks/useI18nBundle.ts
MarcusNotheis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,40 @@ | ||
import { fetchI18nBundle, getI18nBundle } from '@ui5/webcomponents-base/dist/i18nBundle'; | ||
import { useEffect, useState } from 'react'; | ||
|
||
type TextWithDefault = { key: string; defaultText: string }; | ||
type TextWithPlaceholders = [TextWithDefault, ...string[]]; | ||
|
||
interface I18nBundle { | ||
getText: (textObj: { key: string; defaultText: string }, ...args: any) => string; | ||
getText: (textObj: TextWithDefault, ...args: any) => string; | ||
} | ||
|
||
export const useI18nBundle = (bundleName): I18nBundle => { | ||
const [bundle, setBundle] = useState(getI18nBundle(bundleName)); | ||
const resolveTranslations = (bundle, texts) => { | ||
return texts.map((text) => { | ||
if (Array.isArray(text)) { | ||
const [key, ...replacements] = text; | ||
return bundle.getText(key, replacements); | ||
} | ||
return bundle.getText(text); | ||
}); | ||
}; | ||
|
||
export const useI18nText = (bundleName: string, ...texts: (TextWithDefault | TextWithPlaceholders)[]): string[] => { | ||
const i18nBundle: I18nBundle = getI18nBundle(bundleName); | ||
const [translations, setTranslations] = useState(resolveTranslations(i18nBundle, texts)); | ||
|
||
useEffect(() => { | ||
const fetchAndLoadBundle = async () => { | ||
await fetchI18nBundle(bundleName); | ||
setBundle(getI18nBundle(bundleName)); | ||
setTranslations((prev) => { | ||
const next = resolveTranslations(i18nBundle, texts); | ||
if (prev.length === next.length && prev.every((translation, index) => next[index] === translation)) { | ||
return prev; | ||
} | ||
return next; | ||
}); | ||
}; | ||
fetchAndLoadBundle(); | ||
}, []); | ||
}, [fetchI18nBundle, bundleName, texts]); | ||
|
||
return bundle; | ||
return translations; | ||
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { useConsolidatedRef } from '../hooks/useConsolidatedRef'; | ||
import { useI18nBundle } from '../hooks/useI18nBundle'; | ||
import { useI18nText } from '../hooks/useI18nBundle'; | ||
import { usePassThroughHtmlProps } from '../hooks/usePassThroughHtmlProps'; | ||
import { useViewportRange } from '../hooks/useViewportRange'; | ||
|
||
export { useConsolidatedRef, usePassThroughHtmlProps, useViewportRange, useI18nBundle }; | ||
export { useConsolidatedRef, usePassThroughHtmlProps, useViewportRange, useI18nText }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.