* fix display clock * implemented help functionality * skelton for adv settings * added rightComponent to menuItem * added advanced settings * adv settings delete * Update en.json * clean up * Update index.tsx * fix for camera-roll on android > 30 * undo delete camera-roll images * Update app/screens/settings/index.tsx Co-authored-by: Daniel Espino García <larkox@gmail.com> * refactoring * removed menu item * refactored imports and getAllFilesInCachesDirectory transferred into util/files * corrections after review * ts fix Co-authored-by: Daniel Espino García <larkox@gmail.com>
222 lines
6.8 KiB
TypeScript
222 lines
6.8 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useCallback, useMemo} from 'react';
|
|
import {Platform, StyleProp, Switch, Text, TouchableOpacity, View, ViewStyle} from 'react-native';
|
|
|
|
import CompassIcon from '@components/compass_icon';
|
|
import {useTheme} from '@context/theme';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
type Props = {
|
|
action?: (value: string | boolean) => void;
|
|
description?: string;
|
|
inline?: boolean;
|
|
destructive?: boolean;
|
|
icon?: string;
|
|
info?: string;
|
|
label: string;
|
|
selected?: boolean;
|
|
testID?: string;
|
|
type: OptionType;
|
|
value?: string;
|
|
containerStyle?: StyleProp<ViewStyle>;
|
|
}
|
|
|
|
const OptionType = {
|
|
ARROW: 'arrow',
|
|
DEFAULT: 'default',
|
|
TOGGLE: 'toggle',
|
|
SELECT: 'select',
|
|
NONE: 'none',
|
|
} as const;
|
|
|
|
type OptionType = typeof OptionType[keyof typeof OptionType];
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
actionContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
marginLeft: 16,
|
|
},
|
|
container: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
minHeight: 48,
|
|
},
|
|
destructive: {
|
|
color: theme.dndIndicator,
|
|
},
|
|
description: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.64),
|
|
...typography('Body', 75),
|
|
marginTop: 2,
|
|
},
|
|
iconContainer: {marginRight: 16},
|
|
infoContainer: {marginRight: 2},
|
|
info: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.56),
|
|
...typography('Body', 100),
|
|
},
|
|
inlineLabel: {
|
|
flexDirection: 'row',
|
|
flexShrink: 1,
|
|
justifyContent: 'center',
|
|
},
|
|
inlineLabelText: {
|
|
color: theme.centerChannelColor,
|
|
...typography('Body', 200, 'SemiBold'),
|
|
},
|
|
inlineDescription: {
|
|
color: theme.centerChannelColor,
|
|
...typography('Body', 200),
|
|
},
|
|
label: {
|
|
flexShrink: 1,
|
|
justifyContent: 'center',
|
|
},
|
|
labelContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
},
|
|
labelText: {
|
|
color: theme.centerChannelColor,
|
|
...typography('Body', 200),
|
|
},
|
|
row: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
},
|
|
};
|
|
});
|
|
|
|
const OptionItem = ({
|
|
action, description, destructive, icon,
|
|
info, inline = false, label, selected,
|
|
testID = 'optionItem', type, value, containerStyle,
|
|
}: Props) => {
|
|
const theme = useTheme();
|
|
const styles = getStyleSheet(theme);
|
|
|
|
const isInLine = inline && Boolean(description);
|
|
|
|
const labelStyle = useMemo(() => {
|
|
return isInLine ? styles.inlineLabel : styles.label;
|
|
}, [inline, styles, isInLine]);
|
|
|
|
const labelTextStyle = useMemo(() => {
|
|
return [
|
|
isInLine ? styles.inlineLabelText : styles.labelText,
|
|
destructive && styles.destructive,
|
|
];
|
|
}, [destructive, styles, isInLine]);
|
|
|
|
const descriptionTextStyle = useMemo(() => {
|
|
return [
|
|
isInLine ? styles.inlineDescription : styles.description,
|
|
destructive && styles.destructive,
|
|
];
|
|
}, [destructive, styles, isInLine]);
|
|
|
|
let actionComponent;
|
|
if (type === OptionType.SELECT && selected) {
|
|
actionComponent = (
|
|
<CompassIcon
|
|
color={theme.linkColor}
|
|
name='check'
|
|
size={24}
|
|
testID={`${testID}.selected`}
|
|
/>
|
|
);
|
|
} else if (type === OptionType.TOGGLE) {
|
|
const trackColor = Platform.select({
|
|
ios: {true: theme.buttonBg, false: changeOpacity(theme.centerChannelColor, 0.16)},
|
|
default: {true: changeOpacity(theme.buttonBg, 0.32), false: changeOpacity(theme.centerChannelColor, 0.24)},
|
|
});
|
|
const thumbColor = Platform.select({
|
|
android: selected ? theme.buttonBg : '#F3F3F3', // Hardcoded color specified in ticket MM-45143
|
|
});
|
|
actionComponent = (
|
|
<Switch
|
|
onValueChange={action}
|
|
value={selected}
|
|
trackColor={trackColor}
|
|
thumbColor={thumbColor}
|
|
testID={`${testID}.toggled.${selected}`}
|
|
/>
|
|
);
|
|
} else if (type === OptionType.ARROW) {
|
|
actionComponent = (
|
|
<CompassIcon
|
|
color={changeOpacity(theme.centerChannelColor, 0.32)}
|
|
name='chevron-right'
|
|
size={24}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const onPress = useCallback(() => {
|
|
action?.(value || '');
|
|
}, [value, action]);
|
|
|
|
const component = (
|
|
<View
|
|
testID={testID}
|
|
style={[styles.container, containerStyle]}
|
|
>
|
|
<View style={styles.row}>
|
|
<View style={styles.labelContainer}>
|
|
{Boolean(icon) && (
|
|
<View style={styles.iconContainer}>
|
|
<CompassIcon
|
|
name={icon!}
|
|
size={24}
|
|
color={destructive ? theme.dndIndicator : changeOpacity(theme.centerChannelColor, 0.64)}
|
|
/>
|
|
</View>
|
|
)}
|
|
<View style={labelStyle}>
|
|
<Text
|
|
style={labelTextStyle}
|
|
testID={`${testID}.label`}
|
|
>
|
|
{label}
|
|
</Text>
|
|
{Boolean(description) &&
|
|
<Text
|
|
style={descriptionTextStyle}
|
|
testID={`${testID}.description`}
|
|
>
|
|
{description}
|
|
</Text>
|
|
}
|
|
</View>
|
|
</View>
|
|
</View>
|
|
{Boolean(actionComponent || info) &&
|
|
<View style={styles.actionContainer}>
|
|
{Boolean(info) &&
|
|
<View style={styles.infoContainer}>
|
|
<Text style={styles.info}>{info}</Text>
|
|
</View>
|
|
}
|
|
{actionComponent}
|
|
</View>
|
|
}
|
|
</View>
|
|
);
|
|
|
|
if (type === OptionType.DEFAULT || type === OptionType.SELECT || type === OptionType.ARROW) {
|
|
return (
|
|
<TouchableOpacity onPress={onPress}>
|
|
{component}
|
|
</TouchableOpacity>
|
|
);
|
|
}
|
|
|
|
return component;
|
|
};
|
|
|
|
export default OptionItem;
|