forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Expensify#43951 from Expensify/cmartins-addDonePai…
…dBadges Display Done and Paid badges in Search
- Loading branch information
Showing
19 changed files
with
211 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import React from 'react'; | ||
import {View} from 'react-native'; | ||
import Badge from '@components/Badge'; | ||
import Button from '@components/Button'; | ||
import * as Expensicons from '@components/Icon/Expensicons'; | ||
import useLocalize from '@hooks/useLocalize'; | ||
import useStyleUtils from '@hooks/useStyleUtils'; | ||
import useTheme from '@hooks/useTheme'; | ||
import useThemeStyles from '@hooks/useThemeStyles'; | ||
import variables from '@styles/variables'; | ||
import CONST from '@src/CONST'; | ||
|
||
type ActionCellProps = { | ||
onButtonPress: () => void; | ||
action?: string; | ||
isLargeScreenWidth?: boolean; | ||
}; | ||
|
||
function ActionCell({onButtonPress, action = CONST.SEARCH.ACTION_TYPES.VIEW, isLargeScreenWidth = true}: ActionCellProps) { | ||
const {translate} = useLocalize(); | ||
const styles = useThemeStyles(); | ||
const theme = useTheme(); | ||
const StyleUtils = useStyleUtils(); | ||
|
||
if (action === CONST.SEARCH.ACTION_TYPES.PAID || action === CONST.SEARCH.ACTION_TYPES.DONE) { | ||
const buttonTextKey = action === CONST.SEARCH.ACTION_TYPES.PAID ? 'iou.settledExpensify' : 'common.done'; | ||
return ( | ||
<View style={[StyleUtils.getHeight(variables.h28), styles.justifyContentCenter]}> | ||
<Badge | ||
text={translate(buttonTextKey)} | ||
icon={Expensicons.Checkmark} | ||
badgeStyles={[ | ||
styles.ml0, | ||
styles.ph2, | ||
styles.gap1, | ||
isLargeScreenWidth ? styles.alignSelfCenter : styles.alignSelfEnd, | ||
StyleUtils.getBorderColorStyle(theme.border), | ||
StyleUtils.getHeight(variables.h20), | ||
StyleUtils.getMinimumHeight(variables.h20), | ||
]} | ||
textStyles={StyleUtils.getFontSizeStyle(variables.fontSizeExtraSmall)} | ||
iconStyles={styles.mr0} | ||
success | ||
/> | ||
</View> | ||
); | ||
} | ||
|
||
return ( | ||
<Button | ||
text={translate('common.view')} | ||
onPress={onButtonPress} | ||
small | ||
pressOnEnter | ||
style={[styles.w100]} | ||
/> | ||
); | ||
} | ||
|
||
ActionCell.displayName = 'ActionCell'; | ||
|
||
export default ActionCell; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.