add i18n to header

This commit is contained in:
Rodrigo Antinarelli 2020-06-23 23:05:45 -03:00
parent ef0eb53d25
commit 8b2c68d1bf
2 changed files with 19 additions and 7 deletions

View File

@ -28,6 +28,8 @@
},
"peerDependencies": {
"@ohif/core": "^0.50.0",
"@ohif/i18n": "^0.52.8",
"react-i18next": "^10.11.0",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",

View File

@ -1,26 +1,32 @@
import React from 'react';
import PropTypes from 'prop-types';
import { useTranslation } from 'react-i18next';
// TODO: This may fail if package is split from PWA build
import { useHistory } from 'react-router-dom';
//
import { NavBar, Svg, Icon, IconButton, Dropdown, useModal } from '@ohif/ui';
function Header({ children }) {
const { t } = useTranslation();
const history = useHistory();
const { show } = useModal();
const showAboutModal = () => {
const modalComponent = () => <div>About modal</div>;
const modalComponent = () => (
<div>{t('AboutModal:OHIF Viewer - About')}</div>
);
show({
title: 'About',
title: t('AboutModal:OHIF Viewer - About'),
content: modalComponent,
});
};
const showPreferencesModal = () => {
const modalComponent = () => <div>Preferences modal</div>;
const modalComponent = () => (
<div>{t('UserPreferencesModal:User Preferences')}</div>
);
show({
title: 'Preferences',
title: t('UserPreferencesModal:User Preferences'),
content: modalComponent,
});
};
@ -58,7 +64,7 @@ function Header({ children }) {
<div className="flex items-center">{children}</div>
<div className="flex items-center">
<span className="mr-3 text-lg text-common-light">
FOR INVESTIGATIONAL USE ONLY
{t('Header:INVESTIGATIONAL USE ONLY')}
</span>
<Dropdown
titleElement={
@ -75,9 +81,13 @@ function Header({ children }) {
</IconButton>
}
list={[
{ title: 'About', icon: 'info', onClick: () => showAboutModal() },
{
title: 'Preferences',
title: t('Header:About'),
icon: 'info',
onClick: () => showAboutModal(),
},
{
title: t('Header:Preferences'),
icon: 'settings',
onClick: () => showPreferencesModal(),
},