mattermost-mobile/app/screens/settings/display_timezone_select/timezone_row.tsx
Daniel Espino García a27c82da90
Refactor and cleanup of option item (#9067)
* Refactor and cleanup of option item

* Fix tests and minor cleanup

* Fix bug and address feedback
2025-08-19 14:01:56 +02:00

80 lines
2.3 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useCallback} from 'react';
import {TouchableOpacity, View, Text} from 'react-native';
import CompassIcon from '@components/compass_icon';
import SettingSeparator from '@components/settings/separator';
import {useTheme} from '@context/theme';
import {makeStyleSheetFromTheme} from '@utils/theme';
import {typography} from '@utils/typography';
const ITEM_HEIGHT = 48;
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
itemContainer: {
flexDirection: 'column',
alignItems: 'center',
paddingHorizontal: 18,
height: ITEM_HEIGHT,
},
item: {
alignItems: 'center',
flex: 1,
flexDirection: 'row',
},
itemText: {
color: theme.centerChannelColor,
...typography('Body', 200, 'Regular'),
},
body: {
flexDirection: 'row',
},
};
});
type TimezoneRowProps = {
isSelected: boolean;
onPressTimezone: (timezone: string) => void;
timezone: string;
}
const TimezoneRow = ({onPressTimezone, isSelected, timezone}: TimezoneRowProps) => {
const theme = useTheme();
const styles = getStyleSheet(theme);
const onTimezoneSelect = useCallback(() => {
onPressTimezone(timezone);
}, [onPressTimezone, timezone]);
const timezoneRowTestId = isSelected ? `select_timezone.timezone_row.${timezone}.selected` : `select_timezone.timezone_row.${timezone}`;
return (
<TouchableOpacity
key={timezone}
onPress={onTimezoneSelect}
style={styles.itemContainer}
testID={timezoneRowTestId}
>
<View
style={styles.body}
>
<View style={styles.item}>
<Text style={styles.itemText}>
{timezone}
</Text>
</View>
{isSelected && (
<CompassIcon
color={theme.linkColor}
name='check'
size={24}
/>
)}
</View>
<SettingSeparator/>
</TouchableOpacity>
);
};
export default TimezoneRow;