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-advanced-cropper

v0.20.0

Published

The react cropper library that gives the possibility to create croppers exactly suited for your website design

Downloads

106,986

Readme


:warning: It's the beta version. The API can be changed in the future. Therefore, it's recommended to fix the version with ~.


React Advanced Cropper is the advanced library that gives you opportunity to create your own croppers suited for any website design. It means that you are able to change not only the cropper appearance, you area able to customize its behavior also.

Features:

  • full mobile / desktop support
  • support all three main types of croppers right out of the box
  • support both canvas and coordinates modes, minimum and maximum aspect ratios, custom size restrictions
  • zoom, rotate, resize image
  • auto-zoom, transitions

Install

npm install --save react-advanced-cropper
yarn add react-advanced-cropper

Usage

import React, { useState } from 'react';
import { CropperRef, Cropper } from 'react-advanced-cropper';
import 'react-advanced-cropper/dist/style.css'

export const GettingStartedExample = () => {
	const [image, setImage] = useState(
		'https://images.unsplash.com/photo-1599140849279-1014532882fe?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1300&q=80',
	);

	const onChange = (cropper: CropperRef) => {
		console.log(cropper.getCoordinates(), cropper.getCanvas());
	};

	return (
		<Cropper
			src={image}
			onChange={onChange}
			className={'cropper'}
		/>
	)
};
/*
  Maybe you need to set the limits for the cropper sizes or its container sizes
  otherwise a cropping image will try to fill all available space
*/
.cropper {
  height: 600px;
  background: #DDD;
}

Cropper

| Prop | Type | Description | Default | ------------------------- | ------------------ | --------------------------------------------------------------------------- | --------------- | src | string | The cropping image (link / base64) | | stencilComponent | Component | The stencil component | RectangleStencil | stencilProps | object | The props for the stencil component | {} | className | string | The optional class for the root cropper block | | imageClassName | string | The optional class for the cropping image | | boundariesClassName | string | The optional class for the area. | | backgroundClassName | string | The optional class for the background under the image | | autoZoom | boolean | Enable / disable transitions | true | transitions | boolean, object | Enable / disable auto zoom | false | stencilSize | object | The size of the stencil in pixels | | canvas | boolean | The flag that indicates if canvas should be used | true | minWidth | number | The minimum width of the stencil (percents) | | minHeight | number | The minimum height of the stencil (percents) | | maxWidth | number | The maximum width of the stencil (percents) | | maxHeight | number | The maximum height of the stencil (percents) | | checkOrientation | boolean | Check if EXIF orientation should be checked | true | resizeImage | boolean, object | The options for the image resizing (details) | true | moveImage | boolean, object | The options for the image moving (details) | true | rotateImage | boolean, object | The options for the image moving (details) | false | imageRestriction | string | Set restrictions for image position ('fillArea' 'fitArea', 'stencil', 'none') | 'fillArea' | defaultSize | object, Function | The function that returns the default size of the stencil or object | | defaultPosition | object, Function | The function that returns the default position of the stencil or object | | defaultTransforms | object, Function | The function that returns the default image transforms or object | | wrapperComponent | Component | The wrapper component | CropperWrapper | wrapperProps | object | The props for the wrapper component | {} | backgroundWrapperComponent| Component | The background wrapper component | CropperBackgroundWrapper | backgroundWrapperProps | object | The props for the background wrapper component | {}

See the documentation for more props and details.

RectangleStencil

| Prop | Type | Description | Default | ------------------------ | ------------------- | -------------------------------------------------------------- | --------------- | aspectRatio | number | The aspect ratio | | minAspectRatio | number | The minimum aspect ratio | | maxAspectRatio | number | The maximum aspect ratio | | className | string | The class for root block of the stencil component | | previewClassName | string | The class for the preview component | | movingClassName | string | The class applied when user drag the stencil | | resizingClassName | string | The class applied when user resize the stencil | | boundingBoxClass | string | The class for the bounding box component | | handlerComponent | Component | The handler component | | handlers | object | The object of handlers that should be visible or hidden. | | handlerClassNames | object | The object of custom handler classes | | handlerWrapperClassNames | object | The object of custom handler wrapper classes | | lineComponent | Component | The handler component | | lines | object | The object of lines that should be visible or hidden. | | lineClassNames | object | The object of custom line classes | | lineWrapperClassNames | object | The object of custom line wrapper classes |

See the documentation for more props and details.

License

The source code of this library is licensed under MIT, the documentation content belongs to Norserium, except the photos that belong to their respective owners.