Updated ProUpgradeModal styles, Added PRO feature images
• Updated: - ProUpgradeModal styles • Added: - PRO feature images
This commit is contained in:
parent
1e7977aaec
commit
96b026ebf0
@ -1,57 +1,101 @@
|
|||||||
import { defineMessages, injectIntl } from 'react-intl'
|
import { defineMessages, injectIntl } from 'react-intl'
|
||||||
import ImmutablePureComponent from 'react-immutable-pure-component'
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
||||||
|
import {
|
||||||
|
URL_GAB_PRO,
|
||||||
|
DEFAULT_THEME,
|
||||||
|
} from '../../constants'
|
||||||
import Button from '../button'
|
import Button from '../button'
|
||||||
import Text from '../text'
|
import Text from '../text'
|
||||||
|
import Icon from '../icon'
|
||||||
|
import Image from '../image'
|
||||||
import ModalLayout from './modal_layout'
|
import ModalLayout from './modal_layout'
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
title: { id: 'promo.gab_pro', defaultMessage: 'Upgrade to GabPRO' },
|
title: { id: 'promo.gab_pro', defaultMessage: 'Upgrade to GabPRO' },
|
||||||
|
upgrade: { id: 'promo.upgrade', defaultMessage: 'Upgrade' },
|
||||||
|
learnMore: { id: 'promo.learn_more', defaultMessage: 'Learn more' },
|
||||||
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.' },
|
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:' },
|
benefits: { id: 'pro_upgrade_modal.benefits', defaultMessage: 'Here are some benefits that GabPRO members receive:' },
|
||||||
|
})
|
||||||
|
|
||||||
|
const mapStateToProps = (state) => ({
|
||||||
|
theme: state.getIn(['settings', 'displayOptions', 'theme'], DEFAULT_THEME),
|
||||||
})
|
})
|
||||||
|
|
||||||
export default
|
export default
|
||||||
@injectIntl
|
@injectIntl
|
||||||
|
@connect(mapStateToProps)
|
||||||
class ProUpgradeModal extends ImmutablePureComponent {
|
class ProUpgradeModal extends ImmutablePureComponent {
|
||||||
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
intl: PropTypes.object.isRequired,
|
intl: PropTypes.object.isRequired,
|
||||||
onClose: PropTypes.func.isRequired,
|
onClose: PropTypes.func.isRequired,
|
||||||
|
theme: PropTypes.string.isRequired,
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { intl, onClose } = this.props
|
const {
|
||||||
|
intl,
|
||||||
|
onClose,
|
||||||
|
theme,
|
||||||
|
} = this.props
|
||||||
|
|
||||||
|
const imgSuffix = (theme === 'light' || !theme) ? 'light' : 'dark'
|
||||||
|
|
||||||
|
const title = (
|
||||||
|
<span className={[_s.default, _s.flexRow, _s.justifyContentCenter, _s.alignItemsCenter].join(' ')}>
|
||||||
|
<span className={[_s.default, _s.mr2].join(' ')}>
|
||||||
|
Upgrade to Gab
|
||||||
|
</span>
|
||||||
|
<span className={[_s.bgPro, _s.colorBlack, _s.radiusSmall, _s.px5, _s.py5].join(' ')}>PRO</span>
|
||||||
|
</span>
|
||||||
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ModalLayout
|
<ModalLayout
|
||||||
title={intl.formatMessage(messages.title)}
|
title={title}
|
||||||
width={460}
|
width={540}
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
>
|
>
|
||||||
<Text>
|
<Text size='medium' weight='medium' className={_s.mb10}>
|
||||||
{intl.formatMessage(messages.text)}
|
{intl.formatMessage(messages.text)}
|
||||||
</Text>
|
</Text>
|
||||||
<Text>
|
<Text size='medium' color='secondary'>
|
||||||
{intl.formatMessage(messages.benefits)}
|
{intl.formatMessage(messages.benefits)}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
<div className={[_s.default, _s.my10].join(' ')}>
|
<div className={[_s.default, _s.my10].join(' ')}>
|
||||||
<Text>• Schedule Posts</Text>
|
<Image
|
||||||
<Text>• Get Verified</Text>
|
src={`/headers/pro-features-${imgSuffix}.png`}
|
||||||
<Text>• Create Groups</Text>
|
width='100%'
|
||||||
<Text>• Larger Video and Image Uploads</Text>
|
height='auto'
|
||||||
<Text>• Receive the PRO Badge</Text>
|
fit='cover'
|
||||||
<Text>• Remove in-feed promotions</Text>
|
className={_s.heightMin320PX}
|
||||||
<Text>• Compose Rich Text posts (Bold, Italic, Underline and more)</Text>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className={[_s.default, _s.flexRow, _s.py10].join(' ')}>
|
||||||
<Button
|
<Button
|
||||||
href='https://pro.gab.com'
|
isOutline
|
||||||
|
color='brand'
|
||||||
|
backgroundColor='none'
|
||||||
|
href={URL_GAB_PRO}
|
||||||
|
className={[_s.flexRow, _s.alignItemsCenter, _s.justifyContentCenter, _s.mr10].join(' ')}
|
||||||
>
|
>
|
||||||
<Text color='inherit' weight='bold' align='center'>
|
<Text color='inherit' weight='medium' align='center'>
|
||||||
{intl.formatMessage(messages.title)}
|
{intl.formatMessage(messages.learnMore)}
|
||||||
</Text>
|
</Text>
|
||||||
</Button>
|
</Button>
|
||||||
|
<Button
|
||||||
|
href={URL_GAB_PRO}
|
||||||
|
className={[_s.flexRow, _s.flexGrow1, _s.alignItemsCenter, _s.justifyContentCenter].join(' ')}
|
||||||
|
>
|
||||||
|
<Text color='inherit' size='large' weight='bold' align='center'>
|
||||||
|
{intl.formatMessage(messages.upgrade)}
|
||||||
|
</Text>
|
||||||
|
<Icon id='arrow-right' size='20px' className={[_s.fillWhite, _s.ml5].join(' ')} />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
</ModalLayout>
|
</ModalLayout>
|
||||||
)
|
)
|
||||||
|
BIN
public/headers/pro-features-dark.png
Normal file
BIN
public/headers/pro-features-dark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
BIN
public/headers/pro-features-light.png
Normal file
BIN
public/headers/pro-features-light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
Loading…
Reference in New Issue
Block a user