| import { | |
| getPlan, | |
| JETPACK_RESET_PLANS, | |
| JETPACK_PRODUCTS_LIST, | |
| getJetpackProductShortName, | |
| getJetpackProductDescription, | |
| PRODUCTS_LIST, | |
| } from '@automattic/calypso-products'; | |
| import { localize } from 'i18n-calypso'; | |
| import PropTypes from 'prop-types'; | |
| import { Component } from 'react'; | |
| import FormattedHeader from 'calypso/components/formatted-header'; | |
| import { FLOW_TYPES } from 'calypso/jetpack-connect/flow-types'; | |
| class JetpackConnectMainHeader extends Component { | |
| static propTypes = { | |
| type: PropTypes.oneOf( [ ...FLOW_TYPES, false ] ), | |
| }; | |
| getTexts() { | |
| const { translate, type } = this.props; | |
| if ( type === 'install' ) { | |
| return { | |
| title: translate( 'Install Jetpack' ), | |
| subtitle: translate( | |
| 'Jetpack brings free themes, security services, and essential marketing tools ' + | |
| 'to your self-hosted WordPress site.' | |
| ), | |
| }; | |
| } | |
| if ( JETPACK_RESET_PLANS.includes( type ) ) { | |
| const plan = getPlan( type ); | |
| if ( plan ) { | |
| return { | |
| title: translate( 'Get {{name/}}', { | |
| components: { | |
| name: <>{ plan.getTitle() }</>, | |
| }, | |
| comment: '{{name/}} is the name of a plan', | |
| } ), | |
| subtitle: plan.getDescription(), | |
| }; | |
| } | |
| } | |
| if ( JETPACK_PRODUCTS_LIST.includes( type ) ) { | |
| const product = PRODUCTS_LIST[ type ]; | |
| if ( product ) { | |
| return { | |
| title: translate( 'Get {{name/}}', { | |
| components: { | |
| name: <>{ getJetpackProductShortName( product ) }</>, | |
| }, | |
| comment: '{{name/}} is the name of a plan', | |
| } ), | |
| subtitle: getJetpackProductDescription( product ), | |
| }; | |
| } | |
| } | |
| return { | |
| title: translate( 'Set up Jetpack on your self-hosted WordPress site' ), | |
| subtitle: translate( | |
| 'The Jetpack plugin will be installed so WordPress.com can communicate with ' + | |
| 'your self-hosted WordPress site.' | |
| ), | |
| }; | |
| } | |
| render() { | |
| const { title, subtitle } = this.getTexts(); | |
| return <FormattedHeader headerText={ title } subHeaderText={ subtitle } />; | |
| } | |
| } | |
| export default localize( JetpackConnectMainHeader ); | |