You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import SiteIcon from '../../ui/site-icon';
|
|
|
|
export default class PermissionsConnectHeader extends Component {
|
|
static propTypes = {
|
|
icon: PropTypes.string,
|
|
iconName: PropTypes.string.isRequired,
|
|
siteOrigin: PropTypes.string.isRequired,
|
|
headerTitle: PropTypes.node,
|
|
headerText: PropTypes.string,
|
|
};
|
|
|
|
static defaultProps = {
|
|
icon: null,
|
|
headerTitle: '',
|
|
headerText: '',
|
|
};
|
|
|
|
renderHeaderIcon() {
|
|
const { icon, iconName, siteOrigin } = this.props;
|
|
|
|
return (
|
|
<div className="permissions-connect-header__icon">
|
|
<SiteIcon icon={icon} name={iconName} size={64} />
|
|
<div className="permissions-connect-header__text">{siteOrigin}</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { headerTitle, headerText } = this.props;
|
|
return (
|
|
<div className="permissions-connect-header">
|
|
{this.renderHeaderIcon()}
|
|
<div className="permissions-connect-header__title">{headerTitle}</div>
|
|
<div className="permissions-connect-header__subtitle">{headerText}</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|