-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ts esModuleInterop false and true tests (#932)
- Loading branch information
Showing
4 changed files
with
96 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
import * as React from 'react'; | ||
import { useTranslation, Trans, withTranslation, WithTranslation } from 'react-i18next'; | ||
|
||
// use | ||
|
||
// Component using the Trans component | ||
function MyComponent() { | ||
return ( | ||
<Trans i18nKey="description.part1"> | ||
To get started, edit <code>src/App.js</code> and save to reload. | ||
</Trans> | ||
); | ||
} | ||
|
||
// Component using the Trans component without children (Self-closing) | ||
function MyComponentWithoutChildren() { | ||
return <Trans i18nKey="description.part1" />; | ||
} | ||
|
||
// page uses the hook | ||
function Page() { | ||
const { t, i18n } = useTranslation(); | ||
|
||
const changeLanguage = (lng: string) => { | ||
i18n.changeLanguage(lng); | ||
}; | ||
|
||
return ( | ||
<div className="App"> | ||
<React.Suspense fallback={<Loader />}> | ||
<div className="App-header"> | ||
<button onClick={() => changeLanguage('de')}>de</button> | ||
<button onClick={() => changeLanguage('en')}>en</button> | ||
</div> | ||
<div className="App-intro"> | ||
<MyComponent /> | ||
</div> | ||
<div>{t('description.part2')}</div> | ||
</React.Suspense> | ||
</div> | ||
); | ||
} | ||
|
||
// loading component for suspence fallback | ||
const Loader = () => <div className="App">Loading...</div>; | ||
|
||
// here app catches the suspense from page in case translations are not yet loaded | ||
export default function App() { | ||
return ( | ||
<React.Suspense fallback={<Loader />}> | ||
<Page /> | ||
</React.Suspense> | ||
); | ||
} | ||
|
||
export function componentsWithoutSuspenseUsage() { | ||
// Component that uses ready to wait until translations are loaded because useSuspense is set to false | ||
function ComponentNotUsingSuspense() { | ||
const { t, ready } = useTranslation(); | ||
return <div>{ready && t('key1')}</div>; | ||
} | ||
|
||
// Class based component that uses tReady to wait until translations are loaded because useSuspense is set to false | ||
class ClassComponentNotUsingSuspense extends React.Component<WithTranslation> { | ||
render() { | ||
const { t, tReady } = this.props; | ||
return <h2>{tReady && t('title')}</h2>; | ||
} | ||
} | ||
const NotUsingSuspense = withTranslation()(ClassComponentNotUsingSuspense); | ||
|
||
return ( | ||
<React.Fragment> | ||
<ComponentNotUsingSuspense /> | ||
<NotUsingSuspense /> | ||
</React.Fragment> | ||
); | ||
} |
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
// typescript defaults to these | ||
"esModuleInterop": false, | ||
"allowSyntheticDefaultImports": false | ||
}, | ||
"include": ["./test/typescript/nonEsModuleInterop/**/*.ts"], | ||
"exclude": [] | ||
} |