Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3500112
D13079.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D13079.diff
View Options
diff --git a/native/tooltip/nux-tips-overlay.react.js b/native/tooltip/nux-tips-overlay.react.js
--- a/native/tooltip/nux-tips-overlay.react.js
+++ b/native/tooltip/nux-tips-overlay.react.js
@@ -12,6 +12,10 @@
type ExitAnimationsValues,
} from 'react-native-reanimated';
+import {
+ NUXTipsContext,
+ type NUXTip,
+} from '../components/nux-tips-context.react.js';
import type { AppNavigationProp } from '../navigation/app-navigator.react.js';
import { OverlayContext } from '../navigation/overlay-context.js';
import type {
@@ -20,10 +24,6 @@
} from '../navigation/route-names.js';
import { useSelector } from '../redux/redux-utils.js';
import { useStyles } from '../themes/colors.js';
-import type {
- LayoutCoordinates,
- VerticalBounds,
-} from '../types/layout-types.js';
import type { LayoutEvent } from '../types/react-native.js';
import { AnimatedView } from '../types/styles.js';
import type { WritableAnimatedStyleObj } from '../types/styles.js';
@@ -89,8 +89,7 @@
};
export type NUXTipsOverlayParams = {
- +initialCoordinates: LayoutCoordinates,
- +verticalBounds: VerticalBounds,
+ +tipKey: NUXTip,
+tooltipLocation: 'above' | 'below',
};
@@ -119,19 +118,30 @@
tipText: string,
): React.ComponentType<NUXTipsOverlayProps<Route>> {
function NUXTipsOverlay(props: NUXTipsOverlayProps<Route>) {
+ const nuxTipContext = React.useContext(NUXTipsContext);
+ const { navigation, route } = props;
+
+ const { initialCoordinates, verticalBounds } = React.useMemo(() => {
+ const tipsProps = nuxTipContext?.getTipsProps();
+ invariant(tipsProps, 'tips props should be defined in nux tips overlay');
+ const { pageX, pageY, width, height } = tipsProps[route.params.tipKey];
+
+ return {
+ initialCoordinates: { height, width, x: pageX, y: pageY },
+ verticalBounds: { height, y: pageY },
+ };
+ }, [nuxTipContext, route.params.tipKey]);
+
const dimensions = useSelector(state => state.dimensions);
const overlayContext = React.useContext(OverlayContext);
invariant(overlayContext, 'NUXTipsOverlay should have OverlayContext');
const { onExitFinish } = overlayContext;
- const { navigation, route } = props;
-
const { goBackOnce } = navigation;
const styles = useStyles(unboundStyles);
const contentContainerStyle = React.useMemo(() => {
- const { verticalBounds } = route.params;
const fullScreenHeight = dimensions.height;
const top = verticalBounds.y;
const bottom =
@@ -141,9 +151,12 @@
marginTop: top,
marginBottom: bottom,
};
- }, [dimensions.height, route.params, styles.contentContainer]);
-
- const { initialCoordinates, verticalBounds } = props.route.params;
+ }, [
+ dimensions.height,
+ styles.contentContainer,
+ verticalBounds.height,
+ verticalBounds.y,
+ ]);
const buttonStyle = React.useMemo(() => {
const { x, y, width, height } = initialCoordinates;
@@ -369,7 +382,6 @@
function NUXTipsOverlayWrapper(props: NUXTipsOverlayProps<Route>) {
const overlayContext = React.useContext(OverlayContext);
invariant(overlayContext, 'NUXTipsOverlay should have OverlayContext');
-
const { shouldRenderScreenContent } = overlayContext;
return shouldRenderScreenContent ? <NUXTipsOverlay {...props} /> : null;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 21, 12:57 AM (14 h, 13 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2684281
Default Alt Text
D13079.diff (3 KB)
Attached To
Mode
D13079: [native] Fetch coordinates from context in nux tips overlay
Attached
Detach File
Event Timeline
Log In to Comment