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

81 lines
2.4 KiB
JavaScript
Raw Normal View History

2022-08-30 16:13:11 +05:00
/* 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-29 16:19:17 +05:00
import React from "react";
import { ScrollView, View } from "react-native";
import { useThemeStore } from "../../stores/use-theme-store";
import { SIZE } from "../../utils/size";
import Heading from "../ui/typography/heading";
import Paragraph from "../ui/typography/paragraph";
import { FeatureBlock } from "./feature";
import { ProTag } from "./pro-tag";
2021-11-11 13:08:28 +05:00
2022-01-22 12:57:05 +05:00
export const Group = ({ item, index }) => {
const colors = useThemeStore((state) => state.colors);
2021-11-11 13:08:28 +05:00
return (
<View
style={{
2021-11-19 11:18:30 +05:00
paddingHorizontal: 12,
2021-11-11 13:08:28 +05:00
backgroundColor: index % 2 !== 0 ? colors.bg : colors.nav,
paddingVertical: 40
2022-01-22 12:57:05 +05:00
}}
>
2021-12-03 09:34:44 +05:00
{item?.pro ? (
<ProTag
size={SIZE.sm}
background={index % 2 === 0 ? colors.bg : colors.nav}
/>
2021-12-03 09:34:44 +05:00
) : null}
2021-11-11 13:08:28 +05:00
<Heading>{item.title}</Heading>
<Paragraph size={SIZE.md}>{item.detail}</Paragraph>
{item.features && (
<ScrollView
style={{
marginTop: 20
}}
horizontal
2022-01-22 12:57:05 +05:00
showsHorizontalScrollIndicator={false}
>
{item.features?.map((item) => (
2021-11-11 13:08:28 +05:00
<FeatureBlock
2022-01-22 12:57:05 +05:00
key={item.detail}
2021-11-11 13:08:28 +05:00
{...item}
detail={item.detail}
pro={item.pro}
proTagBg={index % 2 === 0 ? colors.bg : colors.nav}
/>
))}
</ScrollView>
)}
{item.info ? (
<Paragraph
style={{
marginTop: 10
}}
2021-12-16 10:20:34 +05:00
size={SIZE.xs}
2022-01-22 12:57:05 +05:00
color={colors.icon}
>
2021-11-11 13:08:28 +05:00
{item.info}
</Paragraph>
) : null}
</View>
);
};