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.
65 lines
1.9 KiB
JavaScript
65 lines
1.9 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Button from '../../ui/button';
|
|
import SiteIcon from '../../ui/site-icon';
|
|
import { stripHttpsSchemeWithoutPort } from '../../../helpers/utils/util';
|
|
|
|
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">
|
|
<SiteIcon icon={subject.iconUrl} name={subject.name} size={32} />
|
|
<span
|
|
className="connected-sites-list__subject-name"
|
|
title={subject.extensionId || subject.origin}
|
|
>
|
|
{this.getSubjectDisplayName(subject)}
|
|
</span>
|
|
</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);
|
|
}
|
|
}
|