Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/farazzshaikh/react-three-paper
A paper-thin (~800 bytes) and position-aware wrapper for ThreeJS in React.
https://github.com/farazzshaikh/react-three-paper
component component-library npm react threejs wrapper
Last synced: about 2 months ago
JSON representation
A paper-thin (~800 bytes) and position-aware wrapper for ThreeJS in React.
- Host: GitHub
- URL: https://github.com/farazzshaikh/react-three-paper
- Owner: FarazzShaikh
- Created: 2021-07-27T15:31:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-04T05:13:54.000Z (over 3 years ago)
- Last Synced: 2024-10-02T08:42:20.780Z (3 months ago)
- Topics: component, component-library, npm, react, threejs, wrapper
- Language: TypeScript
- Homepage: https://farazzshaikh.github.io/react-three-paper/
- Size: 4.1 MB
- Stars: 86
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
react-three-paper
A paper-thin (~800 bytes*) and position-aware wrapper for ThreeJS in React.
View Demo
ยท
Report Bug
My work is for and funded by the community. If you used this or found this helpful consider supporting me.
65k particles in React using Three.js viareact-three-paper
.
* Not including the Source Map and types.
## But why?
I use this component a lot when creating React-based apps. A prominent example is [my blog](https://github.com/FarazzShaikh/blog) and I am kinda sick of rewriting it again and again.
But other than that, here are some actual uses over using something like `react-three-fiber`:
- Very easily port Vanilla-JS scripts to React.
- No special declarative syntax to learn.
- Separate your UI logic from your core ThreeJS app.
- It is **TINY**.In theory, all you have to do to convert Vanilla-JS examples to React ones via this library is wrap them in a `main()` function, tell ThreeJS to render on the given canvas, and return the render loop as a function. [Read more.](#your-script)
## Position aware...what?
Yes, the canvas knows when it is out of the viewport and will pause your render loop. It will resume it when it is back in the viewport. This is **TREMENDOUSLY** helpful with performance.
For example, when creating long pages where you have multiple ThreeJS canvas components coming in and going out of the viewport.
You can also tap these events and define custom behavior.
## Installation
```bash
npm install react-three-paper
# or
yarn add react-three-paper
```**`react-three-paper` requires `react >=16.8.0`**
```bash
npm install react
# or
yarn add react
```## Usage
Import the `Paper` component and use it like this:
```jsx
import { Paper } from "paper";
import { main } from "./main.js"; // ๐ Your ThreeJS scriptexport default function App() {
return (
)
}
```### Your script
The `script` prop accepts a function, here is how that function should look.
```js
export async function main(canvas) {
//...Do ThreeJS stuff
const renderer = new THREE.WebGLRenderer({
canvas: canvas, // ๐ Use canvas as the ThreeJS canvas
});// ๐ Use canavs dimentions insted of window
const aspectRatio = canvas.clientWidth / canvas.clientHeight;
renderer.setSize(canvas.clientWidth, canvas.clientHeight);function render() {...} //...Render loop without requestAnimationFrame()
function cleanup() {...} //...Any cleanup youd like (optional)return { render, cleanup }
}
```Essentially, a function that receives a `canvas` element (that is used as the ThreeJS canvas) and returns a promise which resolves to a couple of functions.
- `render`: Your render loop without `requestAnimationFrame` as this is handled by `react-three-paper`.
- `cleanup`: An optional cleanup function without `cancleAnimationFrame`.**Pass this function directly into the `script` prop.**
### Example
An example app can be found within the `example` directory. It is also hosted [here](https://farazzshaikh.github.io/react-three-paper/example). See:
- `example/src/App.js`: For `Paper` component usage.
- `example/src/three/main.js`: For an example of how to format your main function.### Advanced Usage
Here are some other props that `react-three-paper` provides.
```jsx
import { Paper } from "../../build/index";
import { main } from "./three/main.js";export default function App() {
return (
// ๐ Events
onExit={(entry, ID) => {...}} // ๐ Fired when canvas exits the viewport
onEntry={(entry, ID) => {...}} // ๐ Fired when canvas enters the viewport
onError={(error, ID) => {...}} // ๐ Fired when there is a error
/>
)
}
```| Prop | Required | Type | Discription | Default |
|-|-|-|-|-|
| script | Yes | [`tPaperScript`](#tpaperscript) | Your ThreeJS script | No default behaviour |
| style | No | [`React.CSSProperties`](https://reactjs.org/docs/faq-styling.html) | CSS styles for the underlying `` | Makes the canvas dimensions 100% of its container. |
| onExit | No | [`tPaperPositionEvent`](#tpaperpositionevent) | Fired when canvas exits the viewport | Stops the render loop when canvas exits viewport. |
| onEntry | No | [`tPaperPositionEvent`](#tpaperpositionevent) | Fired when canvas enters the viewport | Start the render loop when canvas enters viewport. |
| onError | No | [`tPaperErrorEvent`](#tpapererrorevent) | Fired when there is a error | Logs the error and stops the render loop. |**Note: Default behaviour cannot be overwritten, only extended.**
### Types
#### `tPaperRenderLoop`
A function that receives current time. By default, it is run every frame.
```js
(time?: number) => void
```#### `tPaperCleanup`
An optional cleanup function.
```js
() => void
```#### `tPaperScriptReturn`
The return value of the function is passed to the `script` prop.
```ts
type tPaperScriptReturn = {
render: tPaperRenderLoop;
cleanup: tPaperCleanup;
};
```#### `tPaperScript`
A function that recieves a HTML canvas and returns a promise that resolves to [tPaperScriptReturn](#tpaperscriptreturn) (your render loop).
```js
(canvas?: HTMLCanvasElement) => Promise
```#### `tPaperPositionEvent`
A function that receives the Intersection observer event's entry object. Use this to have custom behavior when the canvas goes out of and comes into the viewport. This function is called when the canvas enters or leaves the viewport.
```js
(entry: IntersectionObserverEntry) => void;
```#### `tPaperErrorEvent`
This function is called when an error occurs. It receives the error.
```js
(error: Error) => void;
```This module provides TypeScript type definitions.