60 lines
1.8 KiB
JavaScript
60 lines
1.8 KiB
JavaScript
import { defineMessages, injectIntl } from 'react-intl'
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
|
import Button from '../button'
|
|
import Text from '../text'
|
|
import ModalLayout from './modal_layout'
|
|
|
|
const messages = defineMessages({
|
|
title: { id: 'promo.gab_pro', defaultMessage: 'Upgrade to GabPRO' },
|
|
text: { id: 'pro_upgrade_modal.text', defaultMessage: 'Gab is fully funded by people like you. Please consider supporting us on our mission to defend free expression online for all people.' },
|
|
benefits: { id: 'pro_upgrade_modal.benefits', defaultMessage: 'Here are just some of the benefits that thousands of GabPRO members receive:' },
|
|
})
|
|
|
|
export default
|
|
@injectIntl
|
|
class ProUpgradeModal extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
intl: PropTypes.object.isRequired,
|
|
onClose: PropTypes.func.isRequired,
|
|
}
|
|
|
|
render() {
|
|
const { intl, onClose } = this.props
|
|
|
|
return (
|
|
<ModalLayout
|
|
title={intl.formatMessage(messages.title)}
|
|
width={460}
|
|
onClose={onClose}
|
|
>
|
|
<Text>
|
|
{intl.formatMessage(messages.text)}
|
|
</Text>
|
|
<Text>
|
|
{intl.formatMessage(messages.benefits)}
|
|
</Text>
|
|
|
|
<div className={[_s.default, _s.my10].join(' ')}>
|
|
<Text>• Schedule Posts</Text>
|
|
<Text>• Get Verified</Text>
|
|
<Text>• Create Groups</Text>
|
|
<Text>• Larger Video and Image Uploads</Text>
|
|
<Text>• Receive the PRO Badge</Text>
|
|
<Text>• Remove in-feed promotions</Text>
|
|
</div>
|
|
|
|
<Button
|
|
href='https://pro.gab.com'
|
|
>
|
|
<Text color='inherit' weight='bold' align='center'>
|
|
{intl.formatMessage(messages.title)}
|
|
</Text>
|
|
</Button>
|
|
|
|
</ModalLayout>
|
|
)
|
|
}
|
|
|
|
}
|