1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-mobile/components/screens/ConfigScreen/SettingsButton.tsx

41 lines
1.0 KiB
TypeScript
Raw Normal View History

2023-07-18 15:58:06 +02:00
import * as React from 'react';
import { FunctionComponent, ReactNode } from 'react';
import { View, Text, Button } from 'react-native';
import { ConfigScreenStyles } from './configScreenStyles';
interface Props {
title: string;
description?: string;
2023-07-18 15:58:06 +02:00
clickHandler: ()=> void;
styles: ConfigScreenStyles;
disabled?: boolean;
statusComponent?: ReactNode;
}
const SettingsButton: FunctionComponent<Props> = props => {
const styles = props.styles.styleSheet;
2023-07-18 15:58:06 +02:00
let descriptionComp = null;
if (props.description) {
descriptionComp = (
<View style={{ flex: 1, marginTop: 10 }}>
<Text style={styles.descriptionText}>{props.description}</Text>
2023-07-18 15:58:06 +02:00
</View>
);
}
return (
<View style={styles.settingContainer}>
2023-07-18 15:58:06 +02:00
<View style={{ flex: 1, flexDirection: 'column' }}>
<View style={{ flex: 1 }}>
<Button title={props.title} onPress={props.clickHandler} disabled={!!props.disabled} />
</View>
{props.statusComponent}
{descriptionComp}
</View>
</View>
);
};
export default SettingsButton;