@shopify/react-native-skia
Version:
High-performance React Native Graphics using Skia
77 lines (67 loc) • 2.18 kB
text/typescript
import Rea from "../external/reanimated/ReanimatedProxy";
import type { Skia, SkPicture } from "../skia/types";
import { HAS_REANIMATED_3 } from "../external/reanimated/renderHelpers";
import type { JsiRecorder } from "../skia/types/Recorder";
import { ReanimatedRecorder } from "./Recorder/ReanimatedRecorder";
import { Container, StaticContainer } from "./StaticContainer";
import { visit } from "./Recorder/Visitor";
import "../skia/NativeSetup";
import "../views/api";
// create local reference for `strictGlobal` option in Worklets
const { SkiaViewApi } = globalThis;
const nativeDrawOnscreen = (
nativeId: number,
recorder: JsiRecorder,
picture: SkPicture
) => {
"worklet";
//const start = performance.now();
recorder.play(picture);
//const end = performance.now();
//console.log("Recording time: ", end - start);
SkiaViewApi.setJsiProperty(nativeId, "picture", picture);
};
class NativeReanimatedContainer extends Container {
private mapperId: number | null = null;
private picture: SkPicture;
constructor(
Skia: Skia,
private nativeId: number
) {
super(Skia);
this.picture = Skia.Picture.MakePicture(null)!;
}
redraw() {
if (this.mapperId !== null) {
Rea.stopMapper(this.mapperId);
}
if (this.unmounted) {
return;
}
const recorder = new ReanimatedRecorder(this.Skia);
const { nativeId, picture } = this;
visit(recorder, this.root);
const sharedValues = recorder.getSharedValues();
const sharedRecorder = recorder.getRecorder();
// Draw first frame
Rea.runOnUI(() => {
"worklet";
nativeDrawOnscreen(nativeId, sharedRecorder, picture);
})();
// Animate
if (sharedValues.length > 0) {
this.mapperId = Rea.startMapper(() => {
"worklet";
sharedRecorder.applyUpdates(sharedValues);
nativeDrawOnscreen(nativeId, sharedRecorder, picture);
}, sharedValues);
}
}
}
export const createContainer = (Skia: Skia, nativeId: number) => {
if (HAS_REANIMATED_3 && nativeId !== -1) {
return new NativeReanimatedContainer(Skia, nativeId);
} else {
return new StaticContainer(Skia, nativeId);
}
};