npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-hsv-picker

v1.1.0

Published

A React-Native HSV (Hue, Saturation & Value) color picker

Downloads

5

Readme

react-native-hsv-picker

a react native HSV(hue, saturation, value) color picker

Originally authored by Yuan Fu react-native-hsv-color-picker Forked and converted to TypeScript : 04/2021

TypeScript

Preview

View Live Demo

react-native-hsv-picker is a React Native component for selection of an HSV (hue, saturation, value) color value.

Highlighted Features:

  1. Real Rendering - no image involved / all colors are truly rendered
  2. Performance - empowered by native gradient lib
  3. Fully Controlled - no inner state involved
  4. Fully Supported - support both React Native & Expo projects

Install

$ npm install react-native-hsv-picker --save

Use with Expo Project

You are all set.

Use with React Native Project

react-native-hsv-picker is powered by expo-linear-gradient. If you're not using a Managed Expo project, you have to follow these instructions to properly install it.

Usage

a minimally-configured HSV color picker

import React from 'react';
import { StyleSheet, View } from 'react-native';
import HsvColorPicker from 'react-native-hsv-picker';

type ExampleProps = {}; 
type ExampleState = {hue: number, sat: number, val: number };
export default class Example extends React.Component<ExampleProps, ExampleState> {
  constructor(props) {
    super(props);
    this.state = {
      hue: 0,
      sat: 0,
      val: 1,
    };
    this.onSatValPickerChange = this.onSatValPickerChange.bind(this);
    this.onHuePickerChange = this.onHuePickerChange.bind(this);
  }

  onSatValPickerChange({ saturation, value }: { saturation: number, value: number }) {
    this.setState({
      sat: saturation,
      val: value,
    });
  }

  onHuePickerChange({ hue }: { hue: number }) {
    this.setState({
      hue,
    });
  }

  render() {
    const { hue, sat, val } = this.state;
    return (
      <View style={styles.container}>
        <HsvColorPicker
          huePickerHue={hue}
          onHuePickerDragMove={this.onHuePickerChange}
          onHuePickerPress={this.onHuePickerChange}
          satValPickerHue={hue}
          satValPickerSaturation={sat}
          satValPickerValue={val}
          onSatValPickerDragMove={this.onSatValPickerChange}
          onSatValPickerPress={this.onSatValPickerChange}
        />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
});

Props

Basic Props

| Prop | Type | Default | Description | |--|--|--| -- | | containerStyle | StyleProp | {} | style for the outmost container | | huePickerContainerStyle | StyleProp | {} | style for the hue picker container | | huePickerBorderRadius | number | 0 | border radius for the hue picker | | huePickerHue | number | 0 | hue value(h in hsv, ranged in [0, 360]) for the hue picker | | huePickerBarWidth | number | 12 | bar width for the hue picker | | huePickerBarHeight | number | 200 | bar height for the hue picker | | huePickerSliderSize | number | 24 | slider diameter for the hue picker | | satValPickerContainerStyle | StyleProp | {} | style for the saturation & value picker container | | satValPickerBorderRadius | number | 0 | border radius for the saturation & value picker | | satValPickerSize | number | 200 | width / height for the saturation & value picker | | satValPickerSliderSize | number | 24 | slider diameter for the saturation & value picker | | satValPickerHue | number | 0 | hue value(h in hsv, ranged in [0, 360]) for the saturation & value picker | | satValPickerSaturation | number | 1 | saturation value(s in hsv, ranged in [0, 1]) for the saturation & value picker | | satValPickerValue | number | 1 | value(v in hsv, ranged in [0, 1]) for the saturation & value picker |

Callback Props

| Prop | Callback Params | Description | |--|--| -- | | onHuePickerDragStart | {    hue: number,    gestureState: gestureState} | called when hue picker starts to drag | | onHuePickerDragMove | {    hue: number,    gestureState: gestureState} | called when hue picker is dragging | | onHuePickerDragEnd | {    hue: number,    gestureState: gestureState} | called when hue picker stops dragging | | onHuePickerDragTerminate | {    hue: number,    gestureState: gestureState} | called when another component has become the responder | | onHuePickerPress | {    hue: number,    nativeEvent: nativeEvent} | called when hue picker is pressed | | onSatValPickerDragStart | {    saturation: number,    value: number,    gestureState: gestureState} | called when saturation & value picker starts to drag | | onSatValPickerDragMove | {    saturation: number,    value: number,    gestureState: gestureState} | called when saturation & value picker is dragging | | onSatValPickerDragEnd | {    saturation: number,    value: number,    gestureState: gestureState} | called when saturation & value picker stops dragging | | onSatValPickerDragTerminate | {    saturation: number,    value: number,    gestureState: gestureState} | called when another component has become the responder | | onSatValPickerPress | {    saturation: number,    value: number,    nativeEvent: nativeEvent} | called when saturation & value picker is pressed |

Methods

Instance Methods

Use ref to call instance methods

| Method | Params | Return Type| Description | |--|:--:|:--:| -- | | getCurrentColor | - | string | get current picked color in hex format |

Dev

The demo folder contains a standalone Expo project, which can be used for dev purposes.

react-native - 0.63 react - 16.13

License

MIT