mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
This reverts commit f09ab8889148c406551dea1643966e3331fde4aa, reversing changes made to effc761e0ee4ea7ffb77f275b5ed650a7098d6f8. This is being temporarily reverted to make it easier to release an urgent fix for v10.15.1.
112 lines
3.0 KiB
JavaScript
112 lines
3.0 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import SiteOrigin from '../../ui/site-origin';
|
|
import Box from '../../ui/box';
|
|
import {
|
|
FLEX_DIRECTION,
|
|
JUSTIFY_CONTENT,
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
COLORS,
|
|
TYPOGRAPHY,
|
|
TEXT_ALIGN,
|
|
///: END:ONLY_INCLUDE_IN
|
|
} from '../../../helpers/constants/design-system';
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
import SnapsAuthorshipPill from '../flask/snaps-authorship-pill';
|
|
import Typography from '../../ui/typography';
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
export default class PermissionsConnectHeader extends Component {
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
static propTypes = {
|
|
iconUrl: PropTypes.string,
|
|
iconName: PropTypes.string.isRequired,
|
|
siteOrigin: PropTypes.string.isRequired,
|
|
headerTitle: PropTypes.node,
|
|
boxProps: PropTypes.shape({ ...Box.propTypes }),
|
|
headerText: PropTypes.string,
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
npmPackageName: PropTypes.string,
|
|
snapVersion: PropTypes.string,
|
|
///: END:ONLY_INCLUDE_IN
|
|
};
|
|
|
|
static defaultProps = {
|
|
iconUrl: null,
|
|
headerTitle: '',
|
|
headerText: '',
|
|
boxProps: {},
|
|
};
|
|
|
|
renderHeaderIcon() {
|
|
const { iconUrl, iconName, siteOrigin } = this.props;
|
|
|
|
return (
|
|
<div className="permissions-connect-header__icon">
|
|
<SiteOrigin siteOrigin={siteOrigin} iconSrc={iconUrl} name={iconName} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
boxProps,
|
|
headerTitle,
|
|
headerText,
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
npmPackageName,
|
|
snapVersion,
|
|
///: END:ONLY_INCLUDE_IN
|
|
} = this.props;
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
const npmPackageUrl = `https://www.npmjs.com/package/${npmPackageName}`;
|
|
const { t } = this.context;
|
|
///: END:ONLY_INCLUDE_IN
|
|
return (
|
|
<Box
|
|
className="permissions-connect-header"
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
|
{...boxProps}
|
|
>
|
|
{this.renderHeaderIcon()}
|
|
<div className="permissions-connect-header__title">{headerTitle}</div>
|
|
{
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
npmPackageName ? (
|
|
<SnapsAuthorshipPill
|
|
packageName={npmPackageName}
|
|
url={npmPackageUrl}
|
|
/>
|
|
) : null
|
|
///: END:ONLY_INCLUDE_IN
|
|
}
|
|
{
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
snapVersion && (
|
|
<Typography
|
|
boxProps={{
|
|
margin: [2, 0],
|
|
}}
|
|
color={COLORS.TEXT_MUTED}
|
|
variant={TYPOGRAPHY.H7}
|
|
align={TEXT_ALIGN.CENTER}
|
|
tag="span"
|
|
className="version"
|
|
>
|
|
{t('shorthandVersion', [snapVersion])}
|
|
</Typography>
|
|
)
|
|
///: END:ONLY_INCLUDE_IN
|
|
}
|
|
<div className="permissions-connect-header__subtitle">{headerText}</div>
|
|
</Box>
|
|
);
|
|
}
|
|
}
|