Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | import React from 'react';
import {View} from 'react-native';
import type {GestureResponderEvent} from 'react-native';
import useTheme from '@hooks/useTheme';
import useThemeStyles from '@hooks/useThemeStyles';
import CONST from '@src/CONST';
import Icon from './Icon';
import * as Expensicons from './Icon/Expensicons';
import PressableWithFeedback from './Pressable/PressableWithFeedback';
type PrevNextButtonsProps = {
/** Should the previous button be disabled */
isPrevButtonDisabled?: boolean;
/** Should the next button be disabled */
isNextButtonDisabled?: boolean;
/** Moves a user to the next item */
onNext?: (event?: GestureResponderEvent | KeyboardEvent) => void;
/** Moves a user to the previous item */
onPrevious?: (event?: GestureResponderEvent | KeyboardEvent) => void;
};
function PrevNextButtons({isPrevButtonDisabled, isNextButtonDisabled, onNext, onPrevious}: PrevNextButtonsProps) {
const styles = useThemeStyles();
const theme = useTheme();
return (
<View style={styles.flexRow}>
<PressableWithFeedback
accessible
accessibilityRole={CONST.ROLE.BUTTON}
accessibilityLabel={CONST.ROLE.BUTTON}
disabled={isPrevButtonDisabled}
style={[styles.h10, styles.mr1, styles.alignItemsCenter, styles.justifyContentCenter]}
onPress={onPrevious}
>
<View style={[styles.reportActionContextMenuMiniButton, {backgroundColor: theme.borderLighter}, isPrevButtonDisabled && styles.buttonOpacityDisabled]}>
<Icon
src={Expensicons.BackArrow}
small
fill={theme.icon}
isButtonIcon
/>
</View>
</PressableWithFeedback>
<PressableWithFeedback
accessible
accessibilityRole={CONST.ROLE.BUTTON}
accessibilityLabel={CONST.ROLE.BUTTON}
disabled={isNextButtonDisabled}
style={[styles.h10, styles.alignItemsCenter, styles.justifyContentCenter]}
onPress={onNext}
>
<View style={[styles.reportActionContextMenuMiniButton, {backgroundColor: theme.borderLighter}, isNextButtonDisabled && styles.buttonOpacityDisabled]}>
<Icon
src={Expensicons.ArrowRight}
small
fill={theme.icon}
isButtonIcon
/>
</View>
</PressableWithFeedback>
</View>
);
}
export default PrevNextButtons;
|