Files
notesnook/apps/mobile/src/components/Premium/component.js

172 lines
4.4 KiB
JavaScript
Raw Normal View History

2021-11-16 12:16:33 +05:00
import React, {useState} from 'react';
import {Image, ScrollView, View} from 'react-native';
import {LAUNCH_ROCKET} from '../../assets/images/assets';
import {useTracked} from '../../provider';
import {useUserStore} from '../../provider/stores';
import {DDS} from '../../services/DeviceDetection';
import {eSendEvent, presentSheet} from '../../services/EventManager';
import {getElevation} from '../../utils';
import {eOpenLoginDialog} from '../../utils/Events';
import {SIZE} from '../../utils/SizeUtils';
import {ActionIcon} from '../ActionIcon';
import {Button} from '../Button';
2021-11-11 13:08:28 +05:00
import GeneralSheet from '../GeneralSheet';
2021-11-16 12:16:33 +05:00
import {SvgToPngView} from '../ListPlaceholders';
2021-11-11 13:08:28 +05:00
import Seperator from '../Seperator';
2021-11-16 12:16:33 +05:00
import {Toast} from '../Toast';
2021-11-11 13:08:28 +05:00
import Heading from '../Typography/Heading';
import Paragraph from '../Typography/Paragraph';
2021-11-16 12:16:33 +05:00
import {features} from './features';
import {Group} from './group';
import {PricingPlans} from './pricing-plans';
2021-11-11 13:08:28 +05:00
export const Component = ({close, promo, getRef}) => {
const [state, dispatch] = useTracked();
const colors = state.colors;
const user = useUserStore(state => state.user);
2021-11-11 13:08:28 +05:00
const [floatingButton, setFloatingButton] = useState(false);
const onPress = async () => {
if (user) {
presentSheet({
context: 'pricing_plans',
component: <PricingPlans marginTop={1} promo={promo} />,
noIcon: true,
noProgress: true
});
} else {
close();
setTimeout(() => {
eSendEvent(eOpenLoginDialog, 1);
}, 400);
}
};
const onScroll = event => {
let contentSize = event.nativeEvent.contentSize.height;
contentSize = contentSize - event.nativeEvent.layoutMeasurement.height;
let yOffset = event.nativeEvent.contentOffset.y;
if (yOffset > 600 && yOffset < contentSize - 400) {
setFloatingButton(true);
} else {
setFloatingButton(false);
}
};
return (
<View
style={{
width: '100%',
backgroundColor: colors.bg,
justifyContent: 'space-between',
borderRadius: 10,
maxHeight: DDS.isTab ? '90%' : '100%'
}}>
<GeneralSheet context="pricing_plans" />
<ActionIcon
onPress={() => {
close();
}}
customStyle={{
position: 'absolute',
right: 15,
top: 30,
zIndex: 10,
width: 50,
height: 50
}}
color={colors.pri}
name="close"
/>
<ScrollView onScroll={onScroll}>
2021-11-16 12:16:33 +05:00
<View
2021-11-11 13:08:28 +05:00
style={{
width: '100%',
2021-11-16 12:16:33 +05:00
alignItems: 'center',
height:400,
justifyContent:'center'
}}>
<SvgToPngView
width={350}
height={350}
src={LAUNCH_ROCKET(colors.accent)}
/>
</View>
2021-11-11 13:08:28 +05:00
<Heading
size={SIZE.lg}
style={{
alignSelf: 'center',
paddingTop: 20
}}>
Notesnook{' '}
<Heading size={SIZE.lg} color={colors.accent}>
Pro
</Heading>
</Heading>
<Paragraph
size={SIZE.md}
style={{
paddingHorizontal: 12,
textAlign: 'center',
alignSelf: 'center',
paddingBottom: 20,
width: '90%'
}}>
Ready to take the next step on your private note taking journey?
</Paragraph>
<Button
onPress={onPress}
title={
promo ? promo.text : user ? `See all plans` : 'Try free for 14 days'
}
type="accent"
style={{
paddingHorizontal: 24,
marginBottom: 10
}}
/>
<Seperator />
{features.map((item, index) => (
<Group item={item} index={index} />
))}
<View
style={{
paddingHorizontal: 12
}}>
<PricingPlans promo={promo} />
</View>
</ScrollView>
{floatingButton ? (
<Button
onPress={onPress}
title={
promo ? promo.text : user ? `See all plans` : 'Try free for 14 days'
}
type="accent"
style={{
paddingHorizontal: 24,
position: 'absolute',
bottom: 30,
...getElevation(10)
}}
/>
) : null}
<Toast context="local" />
<View
style={{
paddingBottom: 10
}}
/>
</View>
);
};