Files
notesnook/apps/mobile/app/components/premium/component.js

291 lines
8.1 KiB
JavaScript
Raw Normal View History

/*
This file is part of the Notesnook project (https://notesnook.com/)
Copyright (C) 2022 Streetwriters (Private) Limited
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2022-08-30 16:13:11 +05:00
2022-08-29 16:19:17 +05:00
import React, { useState } from "react";
import { ActivityIndicator, ScrollView, View } from "react-native";
import { LAUNCH_ROCKET } from "../../assets/images/assets";
2022-08-29 16:19:17 +05:00
import umami from "../../common/analytics";
import { db } from "../../common/database";
import { usePricing } from "../../hooks/use-pricing";
import { DDS } from "../../services/device-detection";
import { eSendEvent, presentSheet } from "../../services/event-manager";
2022-08-29 16:19:17 +05:00
import { useThemeStore } from "../../stores/use-theme-store";
import { useUserStore } from "../../stores/use-user-store";
import { getElevation } from "../../utils";
2022-02-18 14:45:38 +05:00
import {
eClosePremiumDialog,
eCloseProgressDialog,
eOpenLoginDialog
} from "../../utils/events";
import { SIZE } from "../../utils/size";
import { sleep } from "../../utils/time";
import { AuthMode } from "../auth";
import SheetProvider from "../sheet-provider";
import { Toast } from "../toast";
2022-08-29 16:19:17 +05:00
import { Button } from "../ui/button";
import { IconButton } from "../ui/icon-button";
import Seperator from "../ui/seperator";
import { SvgView } from "../ui/svg";
import Heading from "../ui/typography/heading";
import Paragraph from "../ui/typography/paragraph";
import { Walkthrough } from "../walkthroughs";
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 }) => {
const colors = useThemeStore((state) => state.colors);
const user = useUserStore((state) => state.user);
2022-02-17 00:02:41 +05:00
const userCanRequestTrial =
user && (!user.subscription || !user.subscription.expiry) ? true : false;
2021-11-11 13:08:28 +05:00
const [floatingButton, setFloatingButton] = useState(false);
const pricing = usePricing("monthly");
2021-11-11 13:08:28 +05:00
const onPress = async () => {
if (user) {
umami.pageView("/pro-plans", "/pro-screen");
2021-11-11 13:08:28 +05:00
presentSheet({
context: "pricing_plans",
component: (
<PricingPlans showTrialOption={false} marginTop={1} promo={promo} />
)
2021-11-11 13:08:28 +05:00
});
} else {
close();
umami.pageView("/signup", "/pro-screen");
2021-11-11 13:08:28 +05:00
setTimeout(() => {
2022-02-17 00:02:41 +05:00
eSendEvent(eOpenLoginDialog, AuthMode.trialSignup);
2021-11-11 13:08:28 +05:00
}, 400);
}
};
const onScroll = (event) => {
2021-11-11 13:08:28 +05:00
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%",
2021-11-11 13:08:28 +05:00
backgroundColor: colors.bg,
justifyContent: "space-between",
2021-11-11 13:08:28 +05:00
borderRadius: 10,
maxHeight: "100%"
2022-01-22 12:57:05 +05:00
}}
>
2022-02-28 13:48:59 +05:00
<SheetProvider context="pricing_plans" />
<IconButton
2021-11-11 13:08:28 +05:00
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
}}
2022-04-05 00:50:02 +05:00
scrollEventThrottle={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%",
alignItems: "center",
2021-11-20 10:45:11 +05:00
height: 400,
justifyContent: "center"
2022-01-22 12:57:05 +05:00
}}
>
<SvgView
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",
2021-11-11 13:08:28 +05:00
paddingTop: 20
2022-01-22 12:57:05 +05:00
}}
>
Notesnook{" "}
2021-11-11 13:08:28 +05:00
<Heading size={SIZE.lg} color={colors.accent}>
Pro
</Heading>
</Heading>
2022-02-01 15:17:12 +05:00
2022-04-05 00:50:02 +05:00
{!pricing ? (
<ActivityIndicator
style={{
marginBottom: 20
}}
size={SIZE.md}
color={colors.accent}
/>
) : (
<Paragraph
style={{
alignSelf: "center",
2022-04-05 00:50:02 +05:00
marginBottom: 20
}}
size={SIZE.md}
>
({pricing?.product?.localizedPrice} / mo)
</Paragraph>
)}
2021-11-11 13:08:28 +05:00
<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",
2021-11-11 13:08:28 +05:00
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>
2022-02-17 00:02:41 +05:00
{userCanRequestTrial ? (
<Button
key="calltoaction"
2022-02-18 14:45:38 +05:00
onPress={async () => {
try {
await db.user.activateTrial();
eSendEvent(eClosePremiumDialog);
eSendEvent(eCloseProgressDialog);
await sleep(300);
Walkthrough.present("trialstarted", false, true);
} catch (e) {
console.error(e);
}
2022-02-17 00:02:41 +05:00
}}
title="Try free for 14 days"
type="accent"
width={250}
style={{
paddingHorizontal: 12,
marginBottom: 15,
borderRadius: 100
}}
/>
) : null}
2021-11-11 13:08:28 +05:00
<Button
2022-01-07 23:50:19 +05:00
key="calltoaction"
2021-11-11 13:08:28 +05:00
onPress={onPress}
title={
promo ? promo.text : user ? "See all plans" : "Sign up for free"
}
type={userCanRequestTrial ? "grayAccent" : "accent"}
2022-02-17 00:02:41 +05:00
width={250}
2021-11-11 13:08:28 +05:00
style={{
2022-02-17 00:02:41 +05:00
paddingHorizontal: 12,
marginBottom: 15,
borderRadius: 100
2021-11-11 13:08:28 +05:00
}}
/>
2022-02-17 00:02:41 +05:00
{!user || userCanRequestTrial ? (
2022-02-01 15:17:12 +05:00
<Paragraph
color={colors.icon}
size={SIZE.xs}
style={{
alignSelf: "center",
textAlign: "center",
2022-02-01 15:17:12 +05:00
marginTop: 10,
maxWidth: "80%"
2022-02-01 15:17:12 +05:00
}}
>
2022-02-17 00:02:41 +05:00
{user
? 'On clicking "Try free for 14 days", your free trial will be activated.'
: "After sign up you will be asked to activate your free trial."}{" "}
<Paragraph size={SIZE.xs} style={{ fontWeight: "bold" }}>
2022-02-01 15:17:12 +05:00
No credit card is required.
</Paragraph>
</Paragraph>
) : null}
<Seperator key="seperator_1" />
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
}}
>
2022-02-17 00:02:41 +05:00
<PricingPlans showTrialOption={false} promo={promo} />
2021-11-11 13:08:28 +05:00
</View>
</ScrollView>
{floatingButton ? (
<Button
onPress={onPress}
title={
promo ? promo.text : user ? "See all plans" : "Sign up for free"
}
2021-11-11 13:08:28 +05:00
type="accent"
style={{
paddingHorizontal: 24,
position: "absolute",
2022-02-17 00:02:41 +05:00
borderRadius: 100,
2021-11-11 13:08:28 +05:00
bottom: 30,
...getElevation(10)
}}
/>
) : null}
<Toast context="local" />
<View
style={{
paddingBottom: 10
}}
/>
</View>
);
};