Coder Social home page Coder Social logo

biallo / react-resizable-box Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bokuweb/re-resizable

0.0 2.0 0.0 5.72 MB

Resizable component for React.

Home Page: http://bokuweb.github.io/react-resizable-box/example/

License: MIT License

HTML 10.63% JavaScript 88.96% CSS 0.41%

react-resizable-box's Introduction

react-resizable-box

Resizable component for React.

Build Status Code Climate License

Demo

screenshot

See demo: http://bokuweb.github.io/react-resizable-box/example/

Installation

npm i react-resizable-box

Overview

Basic

<Resizable
  customClass="item"
  width={320}
  height={200}
>
  Basic Sample
</Resizable>

With min/max width and height

<Resizable
  customClass="item"
  width={320}
  height={200}
  minWidth={160}
  minHeight={160}
  maxWidth={480}
  maxHeight={480}
>
  min size is 160px x 160px, max size is 480px x 480px.
</Resizable>

Props

width: PropTypes.oneOfType([PropTypes.number, PropTypes.string])

The width property is used to set the width of a resizable component.
For example, you can set 300, '300px', 50%.
If ommited, set 'auto'.

height: PropTypes.oneOfType([PropTypes.number, PropTypes.string])

The height property is used to set the width of a resizable component.
For example, you can set 300, '300px', 50%.
If ommited, set 'auto'.

minWidth: PropTypes.number

The minWidth property is used to set the minimum width of a resizable component.

minHeight: PropTypes.number

The minHeight property is used to set the minimum height of a resizable component.

maxWidth: PropTypes.number

The maxWidth property is used to set the maximum width of a resizable component.

maxHeight: PropTypes.number

The maxheight property is used to set the maximum height of a resizable component.

customClass: PropTypes.string

The customClass property is used to set the custom className of a resizable component.

customStyle: Proptypes.object

The customStyle property is used to set the custom classStyle of a resizable component.

handleStyle: PropTypes.shape({ x: PropTypes.object, y: PropTypes.object, xy: PropTypes.object })

The handleStyle property is used to override the style of one or more resize handles. Only the axis you specify will have its handle style replaced. If you specify a value for x it will completely replace the styles for the X resize handle, but the y and xy handle will still use the default styles.

isResizable: Proptypes.shape({ x: PropTypes.bool, y: PropTypes.bool, xy: PropTypes.bool })

The isResizable property is used to set the resizable permission of a resizable component.

The permission of x, y, xy direction resizing. If omitted, x, y, xy direction resizing is enabled. If you want to permit only x direction resizing, set { x:true, y:false, xy:false }.

onClick: PropTypes.func

Calls when resizable component clicked.

onTouchStart: PropTypes.func

Calls when resizable component touched.

onDoubleClick: PropTypes.func

Calls when resizable component double clicked.

onResizeStart: PropTypes.func

Calls when resizable component resize starts. Calls back with (direction: string, event: object)

  • direction: x or y or xy
  • event: mouse down event

onResize: PropTypes.func

Calls when resizable component resize. Calls back with (direction: string, styleSize: object, clientSize: object)

  • direction: x or y or xy
  • getComputedStyleSize: { width, height }
    • this argument is {width, height} of getComputedStyle.
  • clientSize: { width, height }`
    • this argument is clientWidth and clientHeight.

For example, when <Resizable width={100} height={200} style={{ padding: '20px'}} onResize={...} /> mounted and resize 'x', this callback is called with ('x', { width: 100, height: 200 }, { width: 140, height: 240 })

onResizeStop: PropTypes.func

Calls back with (direction: string, styleSize: object, clientSize: object)

  • direction: x or y or xy
  • getComputedStyleSize: { width, height }
    • this argument is {width, height} of getComputedStyle.
  • clientSize: { width, height }`
    • this argument is clientWidth and clientHeight.

For example, when <Resizable width={100} height={200} style={{ padding: '20px'}} onResize={...} /> mounted and resize 'x', this callback is called with ('x', { width: 100, height: 200 }, { width: 140, height: 240 })

Test

npm test

Changelog

v0.4.0

  • Support 'px' and '%' for width and height props.

License

The MIT License (MIT)

Copyright (c) 2016 @Bokuweb

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.