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-anchors

v0.2.9

Published

A helping package for positioning, and sizing react-konva objects. HTML and CSS provide an easy solution for this, but for canvas, it is more painful. This library aims to ease your work with react-konva.

Downloads

25

Readme

react-konva-anchros

A helping package for positioning, and sizing react-konva objects. HTML and CSS provide an easy solution for this, but for canvas, it is more painful. This library aims to ease your work with react-konva.

Installation

npm i react-konva-anchors

Example

<Group ref={this.entity}>

            <Rect
                ref={this.bg}
                width={this.state.bgWidth}
                height={50}
                cornerRadius={10}
                x={this.state.bgPos.x}
                y={this.state.bgPos.y}
                fill="#2f2f2f" />

            <Text
                ref={this.text}
                x={this.state.textPos.x}
                y={this.state.textPos.y}
                text={this.props.name}
                fontSize={22}
                fill="#fff"
                fontFamily="Open Sans" />

            <Group
                ref={this.deleteButton}
                x={this.state.deleteButtonPos.x}
                y={this.state.deleteButtonPos.y}>
                <DeleteButton />
            </Group>

            <Group
                ref={this.addButton}
                x={this.state.addButtonPos.x}
                y={this.state.addButtonPos.y}>
                <AddButton />
            </Group>

            <CenterAnchor
                element={() => this.bg.current}
                change={(x, y) => this.setState({ bgPos: { x, y } })} />

            <PositionAnchor
                
                element={() => this.text.current}
                elementOrigin={{x:0,y:0}}
                elementDesiredOrigin={{x:0.5, y:0.5}}

                reference={() => this.bg.current}
                referenceOrigin={{x:0,y:0}}
                referenceDesiredOrigin={{x:0.5, y:0.5}}

                change={(x, y) => this.setState({ textPos: { x, y } })} />


            <PositionAnchor
                
                element={() => this.deleteButton.current}
                elementOrigin={{x:0.5,y:0.5}}
                elementDesiredOrigin={{x:0.5, y:0.5}}

                reference={() => this.bg.current}
                referenceOrigin={{x:0,y:0}}
                referenceDesiredOrigin={{x:1, y:0}}

                change={(x, y) => this.setState({ deleteButtonPos: { x, y } })} />
            
            <PositionAnchor
                
                element={() => this.addButton.current}
                elementOrigin={{x:0.5,y:0.5}}
                elementDesiredOrigin={{x:0.5, y:0.5}}

                reference={() => this.bg.current}
                referenceOrigin={{x:0,y:0}}
                referenceDesiredOrigin={{x:1, y:0}}

                shift={{x:-25, y:0}}

                change={(x, y) => this.setState({ addButtonPos: { x, y } })} />
            
            <WidthAnchor
                reference={() => this.text.current}
                element={() => this.bg.current}
                padding={25}
                change={width => this.setState({ bgWidth: width })} />

        </Group>

Usage

CenterAnchor

<CenterAnchor
    element={() => this.A_KONVA_ELEMENT_REGERENCE.current}
    change={(x, y) => this.setState({ A_KONVA_ELEMENT_POSITION: { x, y } })} />

There are some konva objects where the origin is not at the center of the object for e.g Rect, Text. If you want to center it, you can use CenterAnchor. This will query the size of the shape and returns a new position for that. (Basically x=width / 2 , y=height / 2). So ensure that you won't move this element, If you want to move, drop into a group and move the group instead.

Use case: If you want to place a rectangle where you click, But you won't know the size of the rectangle, and you want to place in the middle of the pointer. Then this anchor will be a perfect choice.

See: [konvajs/konva#487].

WidthAnchor

<WidthAnchor
    reference={() => this.KONVA_ELEMENT_REFERENCE_TO_WATCH.current}
    element={() => this.KONVA_ELEMENT_REFERENCE_TO_CHANGE.current}
    padding={25}
    change={width => this.setState({ KONVA_ELEMENT_WIDTH: width })} />

Sets the width of an element based on another element's width. Use case: If you have a text, and you want to make a rectangle background for that, this will fit perfectly.

PositionAnchor

<PositionAnchor            
    element={() => this.KONVA_ELEMENT_REFERENCE_TO_MOVE.current}
    elementOrigin={{x:0.5,y:0.5}} // the element is centered originally
    elementDesiredOrigin={{x:0.5, y:0.5}} // we don't want to change it so we keep it centered
    
    reference={() => this.KONVA_ELEMENT_REFERENCE_TO_WATCH.current}
    referenceOrigin={{x:0,y:0}}  // the reference element starts from the left top corner
    referenceDesiredOrigin={{x:1, y:0}} // we want to move the element to the top right corner
    // basically it will just move the element origin to the desired reference origin
    
    shift={{x:-25, y:0}} // then we shift it by -25 on x
    
    change={(x, y) => this.setState({ KONVA_ELEMENT_POSITION: { x, y } })} />

The elementOrigin is the original origin usually {x:0,y:0} or if it is centered then {x:0.5,y:0.5}, but you can set it to anywhere in your shape like: top right corner: {x:1,y:0}. The elementDesiredOrigin is the origin where you want to grab the element. The referenceOrigin is the same as elementOrigin but for the reference element. The referenceDesiredOrigin is the origin point where you want to place the element. The shift is a final transformation.

With origins you can reach percentage based positioning. With shifts you can move by pixels.

Use case: For example, you can use it to pose a button to the top right corner of a rectangle.

CustomAnchor

    <CustomAnchor 
        reference={ () => this.KONVA_ELEMENT_REFERENCE_TO_WATCH.current }
        element={ () => this.KONVA_ELEMENT_REFERENCE_TO_CHANGE.current }
        result={ (ref) => ({ x: ref.width(), y:0 }) }
        isUpdateNeeded={ (el, res) => el.x() !== res.x || el.y() !== res.y  }
        change={ (res) => { this.setState({ KONVA_ELEMENT_PROPERTY: res }) } }
    />   

The result is a function which returns a computed result from the reference object for example a position. The isUpdateNeeded is a function that receives the element and the result and returns a boolean. If it is true the change function will be called. Hint: use Math.round when you compare numbers.

Use case: If you can't find right solution from the anchors above, you can use this.

Contributing

If you want to help me, form an issue, or send pull requests.