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-konva-editor-copy

v0.1.3

Published

An image editor which is built by konva and react.

Downloads

5

Readme

react-konva-editor

A fundamental image editor component based on react and konva.You can use it with react-konva-editor-kit which supplies some tools about transforming and styling of text and image on canvas.

中文

Installation

$ npm install react-konva-editor

or

$ yarn add react-konva-editor

Usage

<KonvaCanvas
  backgroundStyle={{
    backgroundColor: '#F1F3F7',
    display: 'flex',
    justifyContent: 'center',
    alignItems: 'center',
  }}
  onChangeSelected={store.setSelected}
  width={store.width}
  height={store.height}
  backgroundColor={store.backgroundColor}
  addItem={addedItem}
  selectedItemChange={changedItem}
  maxStep={10}
  setWithdraw={setWithdraw}
  setRedo={setRedo}
  bindRef={store.setCurrentRef}
  stepInfo={stepInfo}
  onChangeStep={onChangeStep}
/>

Props

| propName | type | required | description | | ------------------ | ------------------------- | -------- | --------------------------------------------------------------------------------------------------------- | | backgroundStyle | Object | √ | canvas component background style | | width | number | √ | canvas width | | height | number | √ | canvas height | | backgroundColor | string | - | canvas background color | | addItem | ItemProp | - | when you need to add something on canvas,you should change addItem | | onChangeSelected | (ItemProp)=>void | √ | return selected item data when you click a layer on canvas | | selectedItemChange | Object | - | when you need to change the selected item,you should put a object with properties in selectedItemChange | | maxStep | number | - | max length of withdraw/redo queue (default is 10) | | stepInfo | Array<ItemProp> | √ | A series of ItemProp which had been shown on your canvas | | bindRef | (ReactRef)=>void | √ | A function bind React Ref | | setWithdraw | ()=>void | - | A callback when you withdraw operation | | setRedo | ()=>void | - | A callback when you redo operation | | onChangeStep | (Array<ItemProp> )=>void | √ | A callback when you change anything on canvas,it will return ItemProps which means infomations on canvas |

StepInfo

example

[
  {
    "type": "shape",
    "value": "star",
    "fill": "red",
    "id": 1001,
    "scaleX": 1,
    "scaleY": 1,
    "rotation": 0,
    "skewX": 0,
    "skewY": 0,
    "x": 195,
    "y": 345
  },
  {
    "type": "text",
    "value": "可定义内外径、角数量",
    "fontFamily": "默认",
    "id": 1002,
    "scaleX": 1.1925926495341033,
    "scaleY": 1.192592649534104,
    "rotation": 0,
    "skewX": 0,
    "skewY": 0,
    "x": 63,
    "y": 168,
    "fontSize": 25
  },
  {
    "type": "image",
    "value": "https://image.yonghuivip.com/jimu/1/1638943345035942610",
    "elementName": "上传人",
    "id": 1003,
    "x": 19,
    "y": 436,
    "width": 400,
    "height": 400,
    "scaleX": 1,
    "scaleY": 1,
    "rotation": 0,
    "skewX": 0,
    "skewY": 0
  }
]

demo

ItemProp

API

| API name | type | description | | ------------------- | ------------------------------------------------------------------------- | --------------------------------------------------------------------- | | exportToImage | (fileName:string,options?:ImageExportProps)=>void | export image can be customized | | exportToBASE64 | ()=>void | export BASE64 of the canvas | | withdraw | ()=>void | withdraw action | | redo | ()=>void | redo action | | canvasScale | (ratio:number)=>void | zoom ratio of the canvas (ratio is (0,2.75]) | | deleteItem | ()=>void | delete selected item on canvas | | moveLayerLevel | (i: number)=>void | When i is less than 0, the selected layer will move to the next layer | | moveLayer | (direction: 'right' \| 'left' \| 'top'\| 'bottom', delta: number)=>void | move delta unit on canvas on specific direction | | setSelectedIndex | (id:number)=>void | Select the selected layers in order | | clearSelected | ()=>void | Unselected layer | | toggleMultiSelected | (state:boolean)=>void | switch multi-selected mode | | toogleLock | (index:number)=>void | toggle the lock state of specific layer | | madeGroup | (layers:Array\<ItemProp>)=>void | Group the selected layers | | divideGroup | (groupId:string)=>void | Ungroup by a specific groupId |

| propName | type | required | description | | -------- | --------------------------- | -------- | ------------------------------------------------- | | scale | number[0.1-3] | - | Scale ratio of output image (default is 1) | | quality | number [0.1-1] | - | quality of export image(default is 1) | | fileType | 'image/png' | 'image/jpeg' | - | filetype of export image(default is 'image/png' ) |

Tips

  1. How to switch on multi-select Mode?
const handler = useCallback((e: KeyboardEvent) => {
  if (e.keyCode === 16) {
    // 开启多选模式
    KonvaCanvas.toggleMultiSelected(true);
    store.setMultiSelected(true);
  }
}, []);

useEffect(() => {
  window.addEventListener('keydown', handler);
  return () => {
    window.removeEventListener('keydown', handler);
  };
}, []);

Timeline

23-2-20 支持多选图层,拆组和解组-可配合 toolkit 使用

reference

  1. build reference
  2. react-konva

Todos

| 序号 | 内容 | 完成情况 | | ---- | -------------- | -------- | | 1 | js 环境调通 | √ | | 2 | ts type 规范化 | delay | | 3 | ts 环境调通 | √ | | 4 | 依赖库配置 | delay | | 5 | 使用文档 | ing | | 6 | 线上示例 | - |