@aloushek/react-detectable-overflow
TypeScript icon, indicating that this package has built-in type declarations

0.7.0 • Public • Published

Fork changes

React Detectable Overflow

Circle Status npm version

A React component which is able to detect changes in the state that the contents is overflowed.

Demo

Install

npm install react-detectable-overflow

or

yarn add react-detectable-overflow

Props

prop required type description default
tag string element type (e.g. 'p', 'div') 'div'
style object css style of the element {
width: '100%',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
overflow: 'hidden',
}
className string class names ''
onChange (isOverflowed: boolean) => void callback function called when its overflowing status is changed

Example

import * as React from 'react';
import DetectableOverflow from 'react-detectable-overflow';

class SampleComponent extends React.Component {

  constructor(props) {
    super(props);
    this.handleChange = this.handleChange.bind(this);
  }

  handleChange(isOverflowed) {
    // do something
  }

  render {
    return (
      <DetectableOverflow onChange={this.handleChange}>
        This is a sample text.
      </DetectableOverflow>
    );
  }
}

Caution

Be careful when you change the length of children contents by onChange callback. The following code perhaps causes the infinite loop of changing isOverflowed state.

// DO NOT WRITE LIKE THIS!
<DetectableOverflow
  onChange={(isOverflowed) => {
    if (isOverflowed) {
      this.setState({ value: 'short' });
    } else {
      this.setState({ value: 'loooooooooooooooooooooooooooooooooooooong' });
    }
  }}
  >
  {this.state.value}
</DetectableOverflow>

License

This package is released under the MIT License, see LICENSE

Changelog

0.4.0

  • BREAKING CHANGE: Support vertical overflow detection

Package Sidebar

Install

npm i @aloushek/react-detectable-overflow

Weekly Downloads

3

Version

0.7.0

License

MIT

Unpacked Size

16.1 kB

Total Files

19

Last publish

Collaborators

  • aloushek