mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
c7782563c8
* Replace <SiteIcon> w/ <AvatarFavicon> * Use constant values for borderColor & size Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> --------- Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net>
72 lines
2.2 KiB
JavaScript
72 lines
2.2 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Button from '../../ui/button';
|
|
import { AvatarFavicon } from '../../component-library';
|
|
import { stripHttpsSchemeWithoutPort } from '../../../helpers/utils/util';
|
|
import SiteOrigin from '../../ui/site-origin';
|
|
import { BorderColor, Size } from '../../../helpers/constants/design-system';
|
|
|
|
export default class ConnectedSitesList extends Component {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
static propTypes = {
|
|
connectedSubjects: PropTypes.arrayOf(
|
|
PropTypes.shape({
|
|
name: PropTypes.string,
|
|
iconUrl: PropTypes.string,
|
|
origin: PropTypes.string,
|
|
}),
|
|
).isRequired,
|
|
onDisconnect: PropTypes.func.isRequired,
|
|
};
|
|
|
|
render() {
|
|
const { connectedSubjects, onDisconnect } = this.props;
|
|
const { t } = this.context;
|
|
|
|
return (
|
|
<main className="connected-sites-list__content-rows">
|
|
{connectedSubjects.map((subject) => (
|
|
<div
|
|
key={subject.origin}
|
|
className="connected-sites-list__content-row"
|
|
>
|
|
<div className="connected-sites-list__subject-info">
|
|
<AvatarFavicon
|
|
borderColor={BorderColor.borderMuted}
|
|
className="connected-sites-list__subject-icon"
|
|
name={subject.name}
|
|
size={Size.MD}
|
|
src={subject.iconUrl}
|
|
/>
|
|
<SiteOrigin
|
|
className="connected-sites-list__subject-name"
|
|
title={subject.extensionId || subject.origin}
|
|
siteOrigin={this.getSubjectDisplayName(subject)}
|
|
/>
|
|
</div>
|
|
<Button
|
|
className="connected-sites-list__content-row-link-button"
|
|
onClick={() => onDisconnect(subject.origin)}
|
|
type="link"
|
|
>
|
|
{t('disconnect')}
|
|
</Button>
|
|
</div>
|
|
))}
|
|
</main>
|
|
);
|
|
}
|
|
|
|
getSubjectDisplayName(subject) {
|
|
if (subject.extensionId) {
|
|
return this.context.t('externalExtension');
|
|
}
|
|
|
|
// We strip https schemes only, and only if the URL has no port.
|
|
return stripHttpsSchemeWithoutPort(subject.origin);
|
|
}
|
|
}
|