mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 21:00:13 +01:00
4ce6487160
* Add beta home banner to home screen * Move the beta home notification to the app-header * Updates to formatting * Add beta home banner to home screen * Move the beta home notification to the app-header * Updates to formatting * Update ui/components/app/app-header/index.scss Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/app-header/index.scss Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/app/app-header/index.scss Co-authored-by: George Marshall <george.marshall@consensys.net> * Move banner to top of page * Move to own folder, update styles * Swith to BOX component * Address feedback * Add tests * Update name of component * Fix tests * Fix proptype errors * Fixups * Remove unrelated changes * Remove unwanted string changes * Update beta component name and text * Update mock data Co-authored-by: George Marshall <george.marshall@consensys.net>
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
|
|
import Box from '../../ui/box/box';
|
|
import Typography from '../../ui/typography/typography';
|
|
import {
|
|
TYPOGRAPHY,
|
|
COLORS,
|
|
BLOCK_SIZES,
|
|
DISPLAY,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { BETA_BUGS_URL } from '../../../helpers/constants/beta';
|
|
|
|
import { hideBetaHeader } from '../../../store/actions';
|
|
|
|
const BetaHeader = () => {
|
|
const t = useI18nContext();
|
|
|
|
return (
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
width={BLOCK_SIZES.FULL}
|
|
backgroundColor={COLORS.WARNING_DEFAULT}
|
|
padding={2}
|
|
className="beta-header"
|
|
>
|
|
<Typography
|
|
variant={TYPOGRAPHY.H7}
|
|
marginTop={0}
|
|
marginBottom={0}
|
|
className="beta-header__message"
|
|
color={COLORS.WARNING_INVERSE}
|
|
>
|
|
{t('betaHeaderText', [
|
|
<a
|
|
href={BETA_BUGS_URL}
|
|
key="link"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
>
|
|
{t('here')}
|
|
</a>,
|
|
])}
|
|
</Typography>
|
|
<button
|
|
className="beta-header__button"
|
|
data-testid="beta-header-close"
|
|
onClick={() => {
|
|
hideBetaHeader();
|
|
}}
|
|
aria-label={t('close')}
|
|
>
|
|
<i className="fa fa-times" />
|
|
</button>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default BetaHeader;
|