-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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 #30907 from software-mansion-labs/ts-migration/Tex…
…tLink [TS migration] Migrate TextLink to Typescript
- Loading branch information
Showing
3 changed files
with
97 additions
and
115 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 was deleted.
Oops, something went wrong.
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,79 @@ | ||
import React, {ForwardedRef, forwardRef, KeyboardEventHandler, MouseEventHandler} from 'react'; | ||
import {GestureResponderEvent, Text as RNText, StyleProp, TextStyle} from 'react-native'; | ||
import useEnvironment from '@hooks/useEnvironment'; | ||
import useThemeStyles from '@styles/useThemeStyles'; | ||
import * as Link from '@userActions/Link'; | ||
import CONST from '@src/CONST'; | ||
import Text, {TextProps} from './Text'; | ||
|
||
type LinkProps = { | ||
/** Link to open in new tab */ | ||
href: string; | ||
|
||
onPress?: undefined; | ||
}; | ||
|
||
type PressProps = { | ||
href?: undefined; | ||
|
||
/** Overwrites the default link behavior with a custom callback */ | ||
onPress: () => void; | ||
}; | ||
|
||
type TextLinkProps = (LinkProps | PressProps) & | ||
TextProps & { | ||
/** Additional style props */ | ||
style?: StyleProp<TextStyle>; | ||
|
||
/** Callback that is called when mousedown is triggered */ | ||
onMouseDown?: MouseEventHandler; | ||
}; | ||
|
||
function TextLink({href, onPress, children, style, onMouseDown = (event) => event.preventDefault(), ...rest}: TextLinkProps, ref: ForwardedRef<RNText>) { | ||
const {environmentURL} = useEnvironment(); | ||
const styles = useThemeStyles(); | ||
|
||
const openLink = () => { | ||
if (onPress) { | ||
onPress(); | ||
} else { | ||
Link.openLink(href, environmentURL); | ||
} | ||
}; | ||
|
||
const openLinkOnTap = (event: GestureResponderEvent) => { | ||
event.preventDefault(); | ||
|
||
openLink(); | ||
}; | ||
|
||
const openLinkOnEnterKey: KeyboardEventHandler = (event) => { | ||
if (event.key !== 'Enter') { | ||
return; | ||
} | ||
event.preventDefault(); | ||
|
||
openLink(); | ||
}; | ||
|
||
return ( | ||
<Text | ||
style={[styles.link, style]} | ||
role={CONST.ACCESSIBILITY_ROLE.LINK} | ||
href={href} | ||
onPress={openLinkOnTap} | ||
onKeyDown={openLinkOnEnterKey} | ||
onMouseDown={onMouseDown} | ||
ref={ref} | ||
suppressHighlighting | ||
// eslint-disable-next-line react/jsx-props-no-spreading | ||
{...rest} | ||
> | ||
{children} | ||
</Text> | ||
); | ||
} | ||
|
||
TextLink.displayName = 'TextLink'; | ||
|
||
export default forwardRef(TextLink); |