Migrate Intl to Storybook
This commit is contained in:
parent
6aeaabf505
commit
f1d04f4751
3 changed files with 85 additions and 69 deletions
|
@ -1,68 +0,0 @@
|
||||||
#### No replacements
|
|
||||||
|
|
||||||
```jsx
|
|
||||||
<Intl id="deleteAndRestart" i18n={util.i18n} />
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Single string replacement
|
|
||||||
|
|
||||||
```jsx
|
|
||||||
<Intl id="leftTheGroup" i18n={util.i18n} components={['Alice']} />
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Single tag replacement
|
|
||||||
|
|
||||||
```jsx
|
|
||||||
<Intl
|
|
||||||
id="leftTheGroup"
|
|
||||||
i18n={util.i18n}
|
|
||||||
components={[
|
|
||||||
<button
|
|
||||||
key="external-2"
|
|
||||||
style={{ backgroundColor: 'blue', color: 'white' }}
|
|
||||||
>
|
|
||||||
Alice
|
|
||||||
</button>,
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Multiple string replacement
|
|
||||||
|
|
||||||
```jsx
|
|
||||||
<Intl
|
|
||||||
id="changedSinceVerified"
|
|
||||||
i18n={util.i18n}
|
|
||||||
components={{
|
|
||||||
name1: 'Alice',
|
|
||||||
name2: 'Bob',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Multiple tag replacement
|
|
||||||
|
|
||||||
```jsx
|
|
||||||
<Intl
|
|
||||||
id="changedSinceVerified"
|
|
||||||
i18n={util.i18n}
|
|
||||||
components={{
|
|
||||||
name1: (
|
|
||||||
<button
|
|
||||||
key="external-1"
|
|
||||||
style={{ backgroundColor: 'blue', color: 'white' }}
|
|
||||||
>
|
|
||||||
Alice
|
|
||||||
</button>
|
|
||||||
),
|
|
||||||
name2: (
|
|
||||||
<button
|
|
||||||
key="external-2"
|
|
||||||
style={{ backgroundColor: 'black', color: 'white' }}
|
|
||||||
>
|
|
||||||
Bob
|
|
||||||
</button>
|
|
||||||
),
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
```
|
|
84
ts/components/Intl.stories.tsx
Normal file
84
ts/components/Intl.stories.tsx
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
import * as React from 'react';
|
||||||
|
|
||||||
|
import { text } from '@storybook/addon-knobs';
|
||||||
|
import { storiesOf } from '@storybook/react';
|
||||||
|
|
||||||
|
import { Intl, Props } from './Intl';
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
import { setup as setupI18n } from '../../js/modules/i18n';
|
||||||
|
// @ts-ignore
|
||||||
|
import enMessages from '../../_locales/en/messages.json';
|
||||||
|
|
||||||
|
const i18n = setupI18n('en', enMessages);
|
||||||
|
const story = storiesOf('Components/Intl', module);
|
||||||
|
|
||||||
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
||||||
|
i18n,
|
||||||
|
id: text('id', overrideProps.id || 'deleteAndRestart'),
|
||||||
|
components: overrideProps.components,
|
||||||
|
renderText: overrideProps.renderText,
|
||||||
|
});
|
||||||
|
|
||||||
|
story.add('No Replacements', () => {
|
||||||
|
const props = createProps({
|
||||||
|
id: 'deleteAndRestart',
|
||||||
|
});
|
||||||
|
|
||||||
|
return <Intl {...props} />;
|
||||||
|
});
|
||||||
|
|
||||||
|
story.add('Single String Replacement', () => {
|
||||||
|
const props = createProps({
|
||||||
|
id: 'leftTheGroup',
|
||||||
|
components: ['Theodora'],
|
||||||
|
});
|
||||||
|
|
||||||
|
return <Intl {...props} />;
|
||||||
|
});
|
||||||
|
|
||||||
|
story.add('Single Tag Replacement', () => {
|
||||||
|
const props = createProps({
|
||||||
|
id: 'leftTheGroup',
|
||||||
|
components: [<button key="a-button">Theodora</button>],
|
||||||
|
});
|
||||||
|
|
||||||
|
return <Intl {...props} />;
|
||||||
|
});
|
||||||
|
|
||||||
|
story.add('Multiple String Replacement', () => {
|
||||||
|
const props = createProps({
|
||||||
|
id: 'changedRightAfterVerify',
|
||||||
|
components: {
|
||||||
|
name1: 'Fred',
|
||||||
|
name2: 'The Fredster',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return <Intl {...props} />;
|
||||||
|
});
|
||||||
|
|
||||||
|
story.add('Multiple Tag Replacement', () => {
|
||||||
|
const props = createProps({
|
||||||
|
id: 'changedRightAfterVerify',
|
||||||
|
components: {
|
||||||
|
name1: <b>Fred</b>,
|
||||||
|
name2: <b>The Fredster</b>,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return <Intl {...props} />;
|
||||||
|
});
|
||||||
|
|
||||||
|
story.add('Custom Render', () => {
|
||||||
|
const props = createProps({
|
||||||
|
id: 'deleteAndRestart',
|
||||||
|
renderText: ({ text: theText, key }) => (
|
||||||
|
<div style={{ backgroundColor: 'purple', color: 'orange' }} key={key}>
|
||||||
|
{theText}
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
});
|
||||||
|
|
||||||
|
return <Intl {...props} />;
|
||||||
|
});
|
|
@ -5,7 +5,7 @@ import { ReplacementValuesType } from '../types/I18N';
|
||||||
|
|
||||||
export type FullJSXType = Array<JSX.Element | string> | JSX.Element | string;
|
export type FullJSXType = Array<JSX.Element | string> | JSX.Element | string;
|
||||||
|
|
||||||
interface Props {
|
export interface Props {
|
||||||
/** The translation string id */
|
/** The translation string id */
|
||||||
id: string;
|
id: string;
|
||||||
i18n: LocalizerType;
|
i18n: LocalizerType;
|
||||||
|
|
Loading…
Add table
Reference in a new issue