mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* Add snap legacy authorship header * Add legacy snap header to personal_sign * Disable SIWE for snaps * Add comment
92 lines
2.2 KiB
JavaScript
92 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import { useSelector } from 'react-redux';
|
|
import {
|
|
BackgroundColor,
|
|
TextColor,
|
|
TextVariant,
|
|
AlignItems,
|
|
FontWeight,
|
|
Display,
|
|
FlexDirection,
|
|
BlockSize,
|
|
BorderColor,
|
|
BorderRadius,
|
|
} from '../../../../helpers/constants/design-system';
|
|
import {
|
|
getSnapName,
|
|
removeSnapIdPrefix,
|
|
} from '../../../../helpers/utils/util';
|
|
|
|
import { Box, Text } from '../../../component-library';
|
|
import { getTargetSubjectMetadata } from '../../../../selectors';
|
|
import SnapAvatar from '../snap-avatar';
|
|
|
|
const SnapLegacyAuthorshipHeader = ({
|
|
snapId,
|
|
className,
|
|
marginLeft,
|
|
marginRight,
|
|
}) => {
|
|
const packageName = snapId && removeSnapIdPrefix(snapId);
|
|
|
|
const subjectMetadata = useSelector((state) =>
|
|
getTargetSubjectMetadata(state, snapId),
|
|
);
|
|
|
|
const friendlyName = snapId && getSnapName(snapId, subjectMetadata);
|
|
|
|
return (
|
|
<Box
|
|
className={classnames('snap-legacy-authorship-header', className)}
|
|
backgroundColor={BackgroundColor.backgroundDefault}
|
|
width={BlockSize.Full}
|
|
alignItems={AlignItems.center}
|
|
display={Display.Flex}
|
|
padding={2}
|
|
borderColor={BorderColor.borderDefault}
|
|
borderRadius={BorderRadius.pill}
|
|
marginLeft={marginLeft}
|
|
marginRight={marginRight}
|
|
>
|
|
<Box>
|
|
<SnapAvatar snapId={snapId} />
|
|
</Box>
|
|
<Box
|
|
marginLeft={4}
|
|
marginRight={4}
|
|
display={Display.Flex}
|
|
flexDirection={FlexDirection.Column}
|
|
style={{ overflow: 'hidden' }}
|
|
>
|
|
<Text ellipsis fontWeight={FontWeight.Medium}>
|
|
{friendlyName}
|
|
</Text>
|
|
<Text
|
|
ellipsis
|
|
variant={TextVariant.bodySm}
|
|
color={TextColor.textAlternative}
|
|
>
|
|
{packageName}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
SnapLegacyAuthorshipHeader.propTypes = {
|
|
/**
|
|
* The id of the snap
|
|
*/
|
|
snapId: PropTypes.string,
|
|
/**
|
|
* The className of the SnapLegacyAuthorshipHeader
|
|
*/
|
|
className: PropTypes.string,
|
|
marginLeft: PropTypes.number,
|
|
marginRight: PropTypes.number,
|
|
};
|
|
|
|
export default SnapLegacyAuthorshipHeader;
|