traceit-react-hook
v1.0.1
Published
A custom hook for React implementing dynamic tracing of an element.
Downloads
5
Maintainers
Readme
traceit-react-hook
A lightweight npm package that provides a custom hook for React implementing dynamic tracing of an element.
Installation
You can install traceit-react-hook
using npm:
npm install traceit-react-hook
Usage
To trace an element on the screen using the traceit-react-hook
, follow these steps:
- Import the
useTrace
hook fromtraceit-react-hook
. - Create a ref using
useRef
for the element you want to trace. - Call the
useTrace
hook with the ref, hide and trace booleans, and any optional configuration. - Attach the ref to the element you want to trace.
Here's an example:
import React, { useRef, useState } from 'react';
import { useTrace } from 'traceit-react-hook';
function MyComponent() {
const elementRef = useRef(null);
const [trace, setTrace] = useState(true);
useTrace(elementRef, trace, {
strokeWidth: 3,
strokeColor: '#ff0000',
gapPoint: 'top_right'
});
return (
<>
<div ref={elementRef} style={{ width: 200, height: 100, background: '#f0f0f0' }}>
Element being traced
</div>
<button onClick={() => setTrace(!trace)}>Toggle Trace</button>
</>
);
}
API
useTrace(elementRef, trace, options);
elementRef: React ref object pointing to the element to be traced
options: (Optional) An object with the following properties:
strokeWidth: Width of the trace line (default: 2)
strokeColor: Color of the trace line (default: '#000000')
strokeDasharray: Dash pattern repeating [10, 5, 2, 5] 10px line, 5px gap, 2px line, and 5px gap (default: [])
lineCap: Style of line endings ('butt', 'round', or 'square', default: 'round')
gapPoint: Where the gap in the trace should be ('top', 'right', 'bottom', 'left', 'top_right', 'bottom_right', 'bottom_left', 'top_left', default: 'top')
redrawSpeed: Speed of the redraw animation in milliseconds (default: 2500)
fillOpacity: Opacity of the fill color (default: 0)
fillColor: Color of the fill (default: 'none')
canvasPadding: Padding around the traced element (default: 0)
hide: Boolean to hide/show the trace (default: false)
trace: Boolean to enable/disable tracing (default: true)
onEndTrace: Callback function called when tracing ends
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.
License
This project is licensed under the MIT License. See the LICENSE file for more details.