2022-01-22 12:57:05 +05:00
|
|
|
import React, { useState } from 'react';
|
|
|
|
|
import { 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';
|
2022-01-20 00:13:33 +05:00
|
|
|
import umami from '../../utils/umami';
|
2022-01-22 12:57:05 +05:00
|
|
|
import { ActionIcon } from '../ActionIcon';
|
|
|
|
|
import { Button } from '../Button';
|
2021-11-11 13:08:28 +05:00
|
|
|
import GeneralSheet from '../GeneralSheet';
|
2022-01-22 12:57:05 +05:00
|
|
|
import { SvgToPngView } from '../ListPlaceholders';
|
2021-11-11 13:08:28 +05:00
|
|
|
import Seperator from '../Seperator';
|
2022-01-22 12:57:05 +05:00
|
|
|
import { Toast } from '../Toast';
|
2021-11-11 13:08:28 +05:00
|
|
|
import Heading from '../Typography/Heading';
|
|
|
|
|
import Paragraph from '../Typography/Paragraph';
|
2022-01-22 12:57:05 +05:00
|
|
|
import { features } from './features';
|
|
|
|
|
import { Group } from './group';
|
|
|
|
|
import { PricingPlans } from './pricing-plans';
|
2021-11-11 13:08:28 +05:00
|
|
|
|
2022-01-22 12:57:05 +05:00
|
|
|
export const Component = ({ close, promo, getRef }) => {
|
2021-11-11 13:08:28 +05:00
|
|
|
const [state, dispatch] = useTracked();
|
|
|
|
|
const colors = state.colors;
|
2021-11-15 11:13:53 +05:00
|
|
|
const user = useUserStore(state => state.user);
|
2021-11-11 13:08:28 +05:00
|
|
|
const [floatingButton, setFloatingButton] = useState(false);
|
|
|
|
|
|
|
|
|
|
const onPress = async () => {
|
|
|
|
|
if (user) {
|
2022-01-20 00:13:33 +05:00
|
|
|
umami.pageView('/pro-plans', `/pro-screen`);
|
2021-11-11 13:08:28 +05:00
|
|
|
presentSheet({
|
|
|
|
|
context: 'pricing_plans',
|
2022-01-20 00:13:33 +05:00
|
|
|
component: <PricingPlans marginTop={1} promo={promo} />
|
2021-11-11 13:08:28 +05:00
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
close();
|
2022-01-20 00:13:33 +05:00
|
|
|
umami.pageView('/signup', `/pro-screen`);
|
2021-11-11 13:08:28 +05:00
|
|
|
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,
|
2021-11-20 10:45:11 +05:00
|
|
|
maxHeight: '100%'
|
2022-01-22 12:57:05 +05:00
|
|
|
}}
|
|
|
|
|
>
|
2021-11-11 13:08:28 +05:00
|
|
|
<GeneralSheet context="pricing_plans" />
|
|
|
|
|
<ActionIcon
|
|
|
|
|
onPress={() => {
|
|
|
|
|
close();
|
|
|
|
|
}}
|
|
|
|
|
customStyle={{
|
|
|
|
|
position: 'absolute',
|
2021-11-20 10:45:11 +05:00
|
|
|
right: DDS.isTab ? 30 : 15,
|
2021-11-11 13:08:28 +05:00
|
|
|
top: 30,
|
|
|
|
|
zIndex: 10,
|
|
|
|
|
width: 50,
|
|
|
|
|
height: 50
|
|
|
|
|
}}
|
|
|
|
|
color={colors.pri}
|
|
|
|
|
name="close"
|
|
|
|
|
/>
|
|
|
|
|
|
2021-11-18 14:52:29 +05:00
|
|
|
<ScrollView
|
2021-11-20 10:45:11 +05:00
|
|
|
style={{
|
|
|
|
|
paddingHorizontal: DDS.isTab ? DDS.width / 5 : 0
|
|
|
|
|
}}
|
2021-12-02 21:21:00 +05:00
|
|
|
keyboardDismissMode="none"
|
|
|
|
|
keyboardShouldPersistTaps="always"
|
2022-01-22 12:57:05 +05:00
|
|
|
onScroll={onScroll}
|
|
|
|
|
>
|
2021-11-16 12:16:33 +05:00
|
|
|
<View
|
2022-01-07 23:50:19 +05:00
|
|
|
key="top-banner"
|
2021-11-11 13:08:28 +05:00
|
|
|
style={{
|
|
|
|
|
width: '100%',
|
2021-11-16 12:16:33 +05:00
|
|
|
alignItems: 'center',
|
2021-11-20 10:45:11 +05:00
|
|
|
height: 400,
|
|
|
|
|
justifyContent: 'center'
|
2022-01-22 12:57:05 +05:00
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<SvgToPngView width={350} height={350} src={LAUNCH_ROCKET(colors.accent)} />
|
2021-11-16 12:16:33 +05:00
|
|
|
</View>
|
|
|
|
|
|
2021-11-11 13:08:28 +05:00
|
|
|
<Heading
|
2022-01-07 23:50:19 +05:00
|
|
|
key="heading"
|
2021-11-11 13:08:28 +05:00
|
|
|
size={SIZE.lg}
|
|
|
|
|
style={{
|
|
|
|
|
alignSelf: 'center',
|
|
|
|
|
paddingTop: 20
|
2022-01-22 12:57:05 +05:00
|
|
|
}}
|
|
|
|
|
>
|
2021-11-11 13:08:28 +05:00
|
|
|
Notesnook{' '}
|
|
|
|
|
<Heading size={SIZE.lg} color={colors.accent}>
|
|
|
|
|
Pro
|
|
|
|
|
</Heading>
|
|
|
|
|
</Heading>
|
|
|
|
|
<Paragraph
|
2022-01-07 23:50:19 +05:00
|
|
|
key="description"
|
2021-11-11 13:08:28 +05:00
|
|
|
size={SIZE.md}
|
|
|
|
|
style={{
|
|
|
|
|
paddingHorizontal: 12,
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
alignSelf: 'center',
|
|
|
|
|
paddingBottom: 20,
|
|
|
|
|
width: '90%'
|
2022-01-22 12:57:05 +05:00
|
|
|
}}
|
|
|
|
|
>
|
2021-11-11 13:08:28 +05:00
|
|
|
Ready to take the next step on your private note taking journey?
|
|
|
|
|
</Paragraph>
|
|
|
|
|
|
|
|
|
|
<Button
|
2022-01-07 23:50:19 +05:00
|
|
|
key="calltoaction"
|
2021-11-11 13:08:28 +05:00
|
|
|
onPress={onPress}
|
2022-01-22 12:57:05 +05:00
|
|
|
title={promo ? promo.text : user ? `See all plans` : 'Try free for 14 days'}
|
2021-11-11 13:08:28 +05:00
|
|
|
type="accent"
|
|
|
|
|
style={{
|
|
|
|
|
paddingHorizontal: 24,
|
|
|
|
|
marginBottom: 10
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
|
2022-01-07 23:50:19 +05:00
|
|
|
<Seperator key="seperator" />
|
2021-11-11 13:08:28 +05:00
|
|
|
|
|
|
|
|
{features.map((item, index) => (
|
2022-01-07 23:50:19 +05:00
|
|
|
<Group key={item.title} item={item} index={index} />
|
2021-11-11 13:08:28 +05:00
|
|
|
))}
|
|
|
|
|
|
|
|
|
|
<View
|
2022-01-07 23:50:19 +05:00
|
|
|
key="plans"
|
2021-11-11 13:08:28 +05:00
|
|
|
style={{
|
|
|
|
|
paddingHorizontal: 12
|
2022-01-22 12:57:05 +05:00
|
|
|
}}
|
|
|
|
|
>
|
2021-11-11 13:08:28 +05:00
|
|
|
<PricingPlans promo={promo} />
|
|
|
|
|
</View>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
{floatingButton ? (
|
|
|
|
|
<Button
|
|
|
|
|
onPress={onPress}
|
2022-01-22 12:57:05 +05:00
|
|
|
title={promo ? promo.text : user ? `See all plans` : 'Try free for 14 days'}
|
2021-11-11 13:08:28 +05:00
|
|
|
type="accent"
|
|
|
|
|
style={{
|
|
|
|
|
paddingHorizontal: 24,
|
|
|
|
|
position: 'absolute',
|
|
|
|
|
bottom: 30,
|
|
|
|
|
...getElevation(10)
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
) : null}
|
|
|
|
|
|
|
|
|
|
<Toast context="local" />
|
|
|
|
|
<View
|
|
|
|
|
style={{
|
|
|
|
|
paddingBottom: 10
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
};
|