2021-02-12 18:24:50 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { select, object } from '@storybook/addon-knobs';
|
|
|
|
import { groupBy } from 'lodash';
|
2021-04-28 21:53:59 +02:00
|
|
|
import en from '../../../../app/_locales/en/messages.json';
|
2021-02-12 18:24:50 +01:00
|
|
|
import MetaMaskTranslation from './metamask-translation';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'MetaMaskTranslation',
|
2021-09-15 20:55:48 +02:00
|
|
|
id: __filename,
|
2021-02-12 18:24:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const { keysWithSubstitution, keysWithoutSubstitution } = groupBy(
|
|
|
|
Object.keys(en),
|
|
|
|
(key) => {
|
|
|
|
if (en[key].message.includes('$1')) {
|
|
|
|
return 'keysWithSubstitution';
|
|
|
|
}
|
|
|
|
return 'keysWithoutSubstitution';
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
export const withoutSubstitutions = () => (
|
|
|
|
<MetaMaskTranslation
|
|
|
|
translationKey={select(
|
|
|
|
'translationKey',
|
|
|
|
keysWithoutSubstitution,
|
|
|
|
keysWithoutSubstitution[0],
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
export const withSubstitutions = () => (
|
|
|
|
<MetaMaskTranslation
|
|
|
|
translationKey={select(
|
|
|
|
'translationKey',
|
|
|
|
keysWithSubstitution,
|
|
|
|
keysWithSubstitution[0],
|
|
|
|
)}
|
|
|
|
variables={object('variables', [])}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
export const withTemplate = () => (
|
|
|
|
<MetaMaskTranslation
|
|
|
|
translationKey={select(
|
|
|
|
'translationKey',
|
|
|
|
keysWithSubstitution,
|
|
|
|
keysWithSubstitution[0],
|
|
|
|
)}
|
|
|
|
variables={[
|
|
|
|
{
|
|
|
|
element: 'span',
|
|
|
|
key: 'link',
|
|
|
|
children: {
|
|
|
|
element: 'MetaMaskTranslation',
|
|
|
|
props: {
|
|
|
|
translationKey: select(
|
|
|
|
'innerTranslationKey',
|
|
|
|
keysWithoutSubstitution,
|
|
|
|
keysWithoutSubstitution[0],
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
);
|