Giter Club home page Giter Club logo

react-resizable-box's Introduction

react-resizable-box

Resizable component for React.

Build Status Version npm License Greenkeeper badge

Table of Contents

Demo

screenshot

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

Install

$ npm install --save react-resizable-box

Usage

Basic

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

Props

className?: string;

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

style?: any;

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

width?: (number | string);

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

height?: (number | string);

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

minWidth?: number;

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

minHeight?: number;

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

maxWidth?: number;

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

maxHeight?: number;

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

grid?: Array<number>;

The grid property is used to specify the increments that resizing should snap to. Defaults to [1, 1].

lockAspectRatio?: boolean;

The lockAspectRatio property is used to lock aspect ratio. If omitted, set false.

bounds?: ('window' | 'parent' | HTMLElement);

Specifies resize boundaries.

handlerStyles?: HandlersStyles;

The handleStyles property is used to override the style of one or more resize handlers. Only the axis you specify will have its handler style replaced. If you specify a value for right it will completely replace the styles for the right resize handler, but other handler will still use the default styles.

handlerClasses?: HandlersClassName;

The handlerClasses property is used to set the className of one or more resize handlers.

enable?: ?Enable;

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

The permission of top, right, bottom, left, topRight, bottomRight, bottomLeft, topLeft direction resizing. If omitted, all resizer are enabled. If you want to permit only right direction resizing, set { top:false, right:true, bottom:false, left:false, topRight:false, bottomRight:false, bottomLeft:false, topLeft:false }.

onResizeStart?: ResizeStartCallBack;

ResizeStartCallBack type is below.

type ResizeStartCallBack = (
  e: SyntheticMouseEvent | SyntheticTouchEvent,
  dir: Direction,
  refToElement: HTMLElement,
) => void;

Calls when resizable component resize start.

onResize?: Callback;

Basic

Callback type is below.

type Callback = (
  event: MouseEvent | TouchEvent,
  direction: Direction,
  refToElement: HTMLElement,
  delta: NumberSize,
) => void;

Calls when resizable component resizing.

onResizeStop?: Callback;

Callback type is below.

type Callback = (
  event: MouseEvent | TouchEvent,
  direction: Direction,
  refToElement: HTMLElement,
  delta: NumberSize,
) => void;

Calls when resizable component resize startStop.

extendsProps?: any;

This property is used to pass the other props to the component.

e.g.

const extendsProps = {
  data-foo: 'foo',
  onMouseOver: () => {},
};

<Resizable extendsProps={extendsProps} />

method

updateSize(object size)

Update component size. grid ,max/minWidth, max/minHeight props is ignored, when this method called.

  • for example
class YourComponent extends Component {

  ...
  
  update() {
    this.resizable.updateSize({ width: 200, height: 300 });
  }
  
  render() {
    return (
      <Resizable ref={c => { this.resizable = c; }}>
        example
      </Resizable>
    );
  }

  ...
}

Test

npm test

Changelog

v2.0.4

  • Fix receiveProps. (related #85)

v2.0.3

  • Update dev dependencies.
  • Modify index.js.flow.

v2.0.2

  • Remove offset state.
  • Use border-box.
  • Fix boundary size.

v2.0.1

  • Add offset state for rnd component.

v2.0.0

  • Update index.js.flow

v2.0.0-rc.2

  • Use flowtype.
  • Change callback args.
  • Change some props name.
    • isResizable => enable.
    • customClass => className.
    • customStyle => style.
    • handleStyle => handlerStyles.
    • handleClass => handlerClasses.
  • Add bounds feature.
  • Fix min/max size checker when aspect ratio locked.

v1.8.4

  • Fix cursor

v1.8.3

  • Fix npm readme

v1.8.2

  • Add index.d.ts.
  • Fix resize glitch when aspct ratio locked.

v1.8.1

  • Fixing issue on resizing with touch events

v1.8.0

  • Add extendsProps prop to other props (e.g. data-*, aria-*, and other ).

v1.7.0

  • Support siver side rendering #43

v1.6.0

  • Add updateSize method.

v1.5.1

  • Add lockAspectRatio property.

v1.4.3

  • Avoid unnecessary rendering on resizer

v1.4.2

  • Fix onTouchStart bind timing to avoid re-rendering

v1.4.1

  • Support preserving auto size #40 (thanks @noradaiko)

v1.4.0

  • Add grid props to snap grid. (thanks @paulyoung)

v1.3.0

  • Add userSelect: none when resize get srated.
  • Add shouldComponentUpdate.
  • Add handler custom className.

v1.2.0

  • Add module export plugin for require.

v1.1.3

  • Update document.

v1.1.2

  • Add size argument to resizeStart callback.
  • Fix bug

v1.1.1

  • Fix delta value bug

v1.1.0

  • Add delta argument to onResize and onResizeStop callback.

v1.0.0

  • Rename and add resizer.

v0.4.2

  • Support react v15
  • ESLint run when push

v0.4.1

  • Add mousedown event object to onResizeStart callback argument.

v0.4.0

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

License

The MIT License (MIT)

Copyright (c) 2017 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.

react-resizable-box's People

Contributors

bokuweb avatar greenkeeper[bot] avatar craftzdog avatar acrylic-origami avatar paulyoung avatar travisdahl avatar haraldox avatar andrejunges avatar biallo avatar davidmason avatar mull avatar iorekz avatar lorenzos avatar lazreg87 avatar

Watchers

James Cloos avatar  avatar

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.