BLUE
PHP 7.4.33
Path:
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/react-native/Libraries/Debugging
Run
Logout
Edit File
Size: 2.67 KB
Close
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/react-native/Libraries/Debugging/DebuggingOverlay.js
Text
Base64
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ import type { ElementRectangle, TraceUpdate, } from './DebuggingOverlayNativeComponent'; import View from '../Components/View/View'; import UIManager from '../ReactNative/UIManager'; import StyleSheet from '../StyleSheet/StyleSheet'; import DebuggingOverlayNativeComponent, { Commands, } from './DebuggingOverlayNativeComponent'; import * as React from 'react'; const {useRef, useImperativeHandle} = React; const isNativeComponentReady = UIManager.hasViewManagerConfig('DebuggingOverlay'); type DebuggingOverlayHandle = { highlightTraceUpdates(updates: TraceUpdate[]): void, highlightElements(elements: ElementRectangle[]): void, clearElementsHighlight(): void, }; function DebuggingOverlay( _props: {}, ref: React.RefSetter<DebuggingOverlayHandle>, ): React.Node { useImperativeHandle( ref, () => ({ highlightTraceUpdates(updates) { if (!isNativeComponentReady) { return; } const nonEmptyRectangles = updates.filter( ({rectangle, color}) => rectangle.width >= 0 && rectangle.height >= 0, ); if (nativeComponentRef.current != null) { Commands.highlightTraceUpdates( nativeComponentRef.current, nonEmptyRectangles, ); } }, highlightElements(elements) { if (!isNativeComponentReady) { return; } if (nativeComponentRef.current != null) { Commands.highlightElements(nativeComponentRef.current, elements); } }, clearElementsHighlight() { if (!isNativeComponentReady) { return; } if (nativeComponentRef.current != null) { Commands.clearElementsHighlights(nativeComponentRef.current); } }, }), [], ); const nativeComponentRef = useRef<React.ElementRef< typeof DebuggingOverlayNativeComponent, > | null>(null); return ( isNativeComponentReady && ( <View pointerEvents="none" style={styles.overlay}> <DebuggingOverlayNativeComponent ref={nativeComponentRef} style={styles.overlay} /> </View> ) ); } const styles = StyleSheet.create({ overlay: { position: 'absolute', top: 0, bottom: 0, left: 0, right: 0, }, }); const DebuggingOverlayWithForwardedRef: component( ref: React.RefSetter<DebuggingOverlayHandle>, ...props: {} ) = React.forwardRef(DebuggingOverlay); export default DebuggingOverlayWithForwardedRef;
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
DebuggingOverlay.js
2.67 KB
lrw-r--r--
2025-03-28 11:04:42
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
DebuggingOverlayNativeComponent.js
474 B
lrw-r--r--
2025-03-28 11:04:42
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
DebuggingOverlayRegistry.js
16.92 KB
lrw-r--r--
2025-03-28 11:04:42
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useSubscribeToDebuggingOverlayRegistry.js
900 B
lrw-r--r--
2025-03-28 11:04:42
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).