-
Notifications
You must be signed in to change notification settings - Fork 3k
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 #29264 from kubabutkiewicz/ts-migration/useCurrent…
…ReportID/hook [TS migration] Migrate 'useCurrentReportID.js' hook to TypeScript
- Loading branch information
Showing
4 changed files
with
93 additions
and
81 deletions.
There are no files selected for viewing
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,87 @@ | ||
import {NavigationState} from '@react-navigation/native'; | ||
import PropTypes from 'prop-types'; | ||
import React, {ComponentType, createContext, ForwardedRef, forwardRef, RefAttributes, useCallback, useMemo, useState} from 'react'; | ||
import getComponentDisplayName from '@libs/getComponentDisplayName'; | ||
import Navigation from '@libs/Navigation/Navigation'; | ||
|
||
type CurrentReportIDContextValue = { | ||
updateCurrentReportID: (state: NavigationState) => void; | ||
currentReportID: string; | ||
}; | ||
type CurrentReportIDContextProviderProps = { | ||
/** Actual content wrapped by this component */ | ||
children: React.ReactNode; | ||
}; | ||
|
||
const CurrentReportIDContext = createContext<CurrentReportIDContextValue | null>(null); | ||
|
||
// TODO: Remove when depended components are migrated to TypeScript. | ||
const withCurrentReportIDPropTypes = { | ||
/** Function to update the state */ | ||
updateCurrentReportID: PropTypes.func.isRequired, | ||
|
||
/** The top most report id */ | ||
currentReportID: PropTypes.string, | ||
}; | ||
|
||
const withCurrentReportIDDefaultProps = { | ||
currentReportID: '', | ||
}; | ||
|
||
function CurrentReportIDContextProvider(props: CurrentReportIDContextProviderProps) { | ||
const [currentReportID, setCurrentReportID] = useState(''); | ||
|
||
/** | ||
* This function is used to update the currentReportID | ||
* @param state root navigation state | ||
*/ | ||
const updateCurrentReportID = useCallback( | ||
(state: NavigationState) => { | ||
setCurrentReportID(Navigation.getTopmostReportId(state) ?? ''); | ||
}, | ||
[setCurrentReportID], | ||
); | ||
|
||
/** | ||
* The context this component exposes to child components | ||
* @returns currentReportID to share between central pane and LHN | ||
*/ | ||
const contextValue = useMemo( | ||
(): CurrentReportIDContextValue => ({ | ||
updateCurrentReportID, | ||
currentReportID, | ||
}), | ||
[updateCurrentReportID, currentReportID], | ||
); | ||
|
||
return <CurrentReportIDContext.Provider value={contextValue}>{props.children}</CurrentReportIDContext.Provider>; | ||
} | ||
|
||
CurrentReportIDContextProvider.displayName = 'CurrentReportIDContextProvider'; | ||
|
||
export default function withCurrentReportID<TProps extends CurrentReportIDContextValue, TRef>( | ||
WrappedComponent: ComponentType<TProps & RefAttributes<TRef>>, | ||
): (props: Omit<TProps, keyof CurrentReportIDContextValue> & React.RefAttributes<TRef>) => React.ReactElement | null { | ||
function WithCurrentReportID(props: Omit<TProps, keyof CurrentReportIDContextValue>, ref: ForwardedRef<TRef>) { | ||
return ( | ||
<CurrentReportIDContext.Consumer> | ||
{(currentReportIDUtils) => ( | ||
<WrappedComponent | ||
// eslint-disable-next-line react/jsx-props-no-spreading | ||
{...currentReportIDUtils} | ||
// eslint-disable-next-line react/jsx-props-no-spreading | ||
{...(props as TProps)} | ||
ref={ref} | ||
/> | ||
)} | ||
</CurrentReportIDContext.Consumer> | ||
); | ||
} | ||
|
||
WithCurrentReportID.displayName = `withCurrentReportID(${getComponentDisplayName(WrappedComponent)})`; | ||
|
||
return forwardRef(WithCurrentReportID); | ||
} | ||
|
||
export {withCurrentReportIDPropTypes, withCurrentReportIDDefaultProps, CurrentReportIDContextProvider, CurrentReportIDContext}; | ||
export type {CurrentReportIDContextValue}; |
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,6 @@ | ||
import {useContext} from 'react'; | ||
import {CurrentReportIDContext, CurrentReportIDContextValue} from '@components/withCurrentReportID'; | ||
|
||
export default function useCurrentReportID(): CurrentReportIDContextValue | null { | ||
return useContext(CurrentReportIDContext); | ||
} |