Search results
183 packages found
Custom React Hook for initializing IntersectionObserver on any node ref
curried ref helper for react components
Replace string value of the ref attribute to function
React component to highlight words within a larger body of text
custom map function ref: dev.io/dhilipkmr/implementing-our-own-array-map-method-in-javascript-553m
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fiddan%2Freactive-material.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fiddan%2Freactive-material?ref=badge_shield)
Core utilities built for AppBuckets React UI Framework
> ###### <a name="default-return-value">Default Action Result</a> >> Represent the value that is returned in actions like (validation ....) >> ```typescript >> export interface IFieldsRefs { >> field : string, >> ref : RefObject<any> >>
Ref: [how to create and publish react npm package](https://betterprogramming.pub/how-to-create-and-publish-react-typescript-npm-package-with-demo-and-automated-build-80c40ec28aca)
Utils to handle various scrolling needs. It attaches to ref inside component, handles touch, scroll and wheel events consistently.
React hook to use size of dom element via ref
Standard React Components For Efficient JSX Syntax. Inline and Render Props Tools.
An easy to use and customisable parallax implementation
An easy to use and customisable parallax implementation
React refs context manager
基于React开发方式,jsx对象一旦生成将无法修改。但如果你有对jsx生成对象二次修改的需求时,ReactDOM可以通过ref获取到Element引用进行修改,但ReactNative则无能为力……ReactNativeVisitor便是提供你对jsx产生的对象进行二次修改的能力,想改啥就改啥!
```tsx <Player ref={videoRef} src={videoUrl} onPause={handleVideoonPause} onPlay={handleVideoPlay} poster={videoImgUrl} onTouch={handleVideoTouch} progressStyle={fullscreen ? {} : progressStyle}
1. 使用forwardRef、useImperativeHandle使用ref暴露组件中的方法。 2. 组件库样式、样式编写的习惯。 3. ts+React编码的思考 4. 单元测试的重要性(虽然我真不想写....) 5. 复杂的组件数据流,参考redux的单向数据流进行编写,比如form组件