import { _ } from '@joplin/lib/locale'; import { themeStyle } from '../../../global-style'; import * as React from 'react'; import { useMemo } from 'react'; import { Linking, View, StyleSheet, ViewStyle, TextStyle } from 'react-native'; import { Card, Divider, Icon, List, Text } from 'react-native-paper'; import { LinkButton, PrimaryButton } from '../../../buttons'; interface Props { themeId: number; onEnablePluginSupport: ()=> void; } const onLearnMorePress = () => { void Linking.openURL('https://joplinapp.org/help/apps/plugins'); }; const useStyles = (themeId: number) => { return useMemo(() => { const theme = themeStyle(themeId); const basePrecautionCard: ViewStyle = { margin: theme.margin, }; const baseTitleStyle: TextStyle = { fontWeight: 'bold', color: theme.color, fontSize: theme.fontSize, }; const styles = StyleSheet.create({ descriptionText: { padding: theme.margin, paddingTop: 0, }, firstPrecautionCard: { ...basePrecautionCard, }, precautionCard: { ...basePrecautionCard, marginTop: 0, }, cardContent: { paddingTop: theme.itemMarginTop, paddingBottom: theme.itemMarginBottom, }, title: baseTitleStyle, header: { ...baseTitleStyle, margin: theme.margin, marginBottom: 0, }, actionButton: { marginLeft: theme.marginLeft * 2, marginRight: theme.marginRight * 2, marginBottom: theme.margin, }, }); const themeOverride = { card: { colors: { outline: theme.codeBorderColor, }, }, }; return { styles, themeOverride }; }, [themeId]); }; const EnablePluginSupportPage: React.FC = props => { const { styles, themeOverride } = useStyles(props.themeId); let isFirstCard = true; const renderCard = (icon: string, title: string, description: string) => { const style = isFirstCard ? styles.firstPrecautionCard : styles.precautionCard; isFirstCard = false; return ( } /> ); }; return ( {_('Plugins extend Joplin with features that are not present by default. Plugins can extend Joplin\'s editor, viewer, and more.')} {_('Like any software you install, plugins can potentially cause security issues or data loss.')} {_('Here\'s what we do to make plugins safer:')} {renderCard('crown', _('Recommended plugins'), _('We mark plugins developed by trusted Joplin community members as "recommended".'))} {renderCard('source-branch-check', _('Open Source'), _('Most plugins have source code available for review on the plugin website.'))} {renderCard('flag-remove', _('Report system'), _('We have a system for reporting and removing problematic plugins.'))} {_('Learn more')} {_('Enable plugin support')} ); }; export default EnablePluginSupportPage;