Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-sketch-3.0

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-sketch-3.0

Sketch Element for React based applications, backed-up by fabricjs as its core

  • 0.13.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

react-sketch

GitHub release NPM release NPM downloads Build status

A Sketch tool for React based applications, backed-up by FabricJS

This tool is based on react-sketch and react-sketch2. I've modified it to fix some bugs.

idea-image Please note that this module is still in development! Feel free to send me enhancements and ideas :)

Installation

npm install react-sketch-3.0 --save

Source installation

In order to build from source, read the relevant instructions first.

Tested with node versions 6,7,8.

Usage

Import the relevant SketchField component and use it, you can find more on the examples folder of the project

import {SketchField, Tools} from 'react-sketch';

class SketchFieldDemo extends React.Component {
     render() {
        return (
            <SketchField width='1024px' 
                         height='768px' 
                         tool={Tools.Pencil} 
                         lineColor='black'
                         lineWidth={3}/>
        )
     }
}

Configuration Options

OptionTypeDefaultDescription
toolEnumeration (string)pencilThe tool to use, can be select, pencil, circle, rectangle, pan
lineColorStringblackThe color of the line
lineWidthNumber1The width of the line
fillColorStringtransparentThe fill color (hex format) of the shape when applicable (e.g. circle)
backgroundColorStringtransparentThe the background color of the sketch in hex or rgba
undoStepsNumber15number of undo/redo steps to maintain
imageFormatStringpngimage format when calling toDataURL, can be png or jpeg
widthNumberNo Value(null)Set/control the canvas width, if left empty the sketch will scale to parent element
heightNumber512Set/control the canvas height, if left empty the sketch will take a reasonable default height
valueJSONProperty to utilize and handle the sketch data as controlled component
defaultValueJSONDefault initial data, to load. If value is set then value will be loaded instead
widthCorrectionNumber2Specify some width correction which will be applied on resize of canvas, this will help to correct some possible border on the canvas style
heightCorrectionNumber0Specify some height correction which will be applied on resize of canvas, this will help to correct some possible border on the canvas style

Available tools

ToolDescription
PencilFree drawing pencil
LineGives you the ability to draw lines
RectangleCreate rectangles
CircleCreate circles
RectangleCreate Rectangles
SelectDisables drawing and gives you the ability to modify existing elements in the canvas
PanDisables drawing and gives you the ability to move the complete canvas at will, useful to adjust the canvas when zooming in or out (thank you wmaillard)

Examples from tbolis project

The project includes a webpack server for running the examples, just run:

git clone https://github.com/tbolis/react-sketch.git
yarn install
npm start

and navigate to http://localhost:23000

You can as well check the live showcase here: http://tbolis.github.io/showcase/react-sketch/

Issues

See https://github.com/tbolis/react-sketch/issues

Changelog

See https://github.com/tbolis/react-sketch/blob/master/CHANGELOG.md

License

MIT, do remember to add a reference if you find it useful :)

Keywords

FAQs

Package last updated on 23 Jun 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc