Socket
Socket
Sign inDemoInstall

react-native-skia-handler

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-skia-handler

A detection system for React Native Skia components


Version published
Maintainers
1
Created

Readme

Source

React Native Skia Handler 🤌🏽

A detection system for React Native Skia components.

Motivation

React Native Skia, provides many declarative APIs for building screens using React Components. However, Skia components are not real components, but abstract representations of a part of a drawing. Therefore, they do not contain any information about location. Therefore direct interactions with individual Skia components can only be achieved indirectly from the Canvas (trying to figure out if the point on the screen that was clicked is within the element we want to interact with).

This package, simply provides a set of APIs to be able to interact directly with individual components.

Installation

You need to have already installed @shopify/react-native-skia (>= 0.1.157)

Open a Terminal in your project's folder and install the library using yarn:

yarn add react-native-skia-handler

or with npm:

npm install react-native-skia-handler

Usage

import {
  Circle,
  useValue,
} from '@shopify/react-native-skia';

import {
  withTouchableHandler,
  Canvas,
  useGestureHandler,
} from 'react-native-skia-handler';

const TouchableCircle = withTouchableHandler(Circle);

export default function App() {
  const cx = useValue(100);
  const cy = useValue(100);

  const circleGesture = useGestureHandler<{ x: number; y: number }>({
    onStart: (_, context) => {
      context.x = cx.current;
      context.y = cy.current;
    },
    onActive: ({ translationX, translationY }, context) => {
      cx.current = context.x + translationX;
      cy.current = context.y + translationY;
    },
  });

  return (
    <Canvas style={styles.fill}>
      <TouchableCircle cx={cx} cy={cy} r={50} color="red" {...circleGesture} />
    </Canvas>
  );
}

If the element is a Circle, Rect or RoundedRect, the package will automatically derive its touchablePath. Alternatively it will have to be passed as a parameter to the TouchableComponent.

...
const touchablePath = useComputed(() => {
  const path = new Path();
  path.addCircle(cx.current, cy.current, 50);
  return path;
});

return (
  <Canvas style={styles.fill}>
    <TouchableCircle cx={cx} cy={cy} r={50} color="red" touchablePath={touchablePath} {...circleGesture} />
  </Canvas>
);
...

Ingredients

Canvas

It's simply a Wrapper of Skia's Canvas.


withTouchableHandler

It's a HOC with which to wrap all Skia components with which you want to interact directly.


useGestureHandler

It's a hook from which onStart, onActive, onEnd interactions can be managed. The hook provides as the second parameter of each callback a context that can be optionally used (strongly inspired by the useAnimatedGestureHandler hook).


Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library

Keywords

FAQs

Last updated on 06 Dec 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc