aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/module/Select.jsx
blob: 570ff371c3f457e2a2dd5b2057a2c6d433101823 (plain) (tree)























                                                    
                                              














                                       
                   
                                          



                          
                                                             
                                         




                                                                                                   






                                                      
                                             























                                                      
import React, {PropTypes} from 'react';
import ReactDom from 'react-dom';
import classnames from 'classnames';

const scrollTo = (element, to, duration) => {
  // jump to target if duration zero
  if (duration <= 0) {
    element.scrollTop = to;
    return;
  }
  const difference = to - element.scrollTop;
  const perTick = difference / duration * 10;

  setTimeout(() => {
    element.scrollTop = element.scrollTop + perTick;
    if (element.scrollTop === to) return;
    scrollTo(element, to, duration - 10);
  }, 10);
};

const Select = React.createClass({
  propTypes: {
    prefixCls: PropTypes.string,
    options: PropTypes.array,
    gregorianCalendarLocale: PropTypes.object,
    selectedIndex: PropTypes.number,
    type: PropTypes.string,
    onSelect: PropTypes.func,
  },

  componentDidMount() {
    // jump to selected option
    this.scrollToSelected(0);
  },

  componentDidUpdate() {
    // smooth scroll to selected option
    this.scrollToSelected(200);
  },

  onSelect(value) {
    const { onSelect, type } = this.props;
    onSelect(type, value);
  },

  getOptions() {
    const { options, selectedIndex, prefixCls } = this.props;
    return options.map((item, index) => {
      const selected = selectedIndex === index;
      const cls = classnames({
        [`${prefixCls}-select-option-selected`]: selected,
      });
      return <li className={cls} key={index} onClick={this.onSelect.bind(this, +item)}>{item}</li>;
    });
  },

  scrollToSelected(duration) {
    // move to selected item
    const select = ReactDom.findDOMNode(this);
    const list = ReactDom.findDOMNode(this.refs.list);
    let index = this.props.selectedIndex - 1;
    if (index < 0) {
      index = 0;
    }
    const topOption = list.children[index];
    const to = topOption.offsetTop - select.offsetTop;
    scrollTo(select, to, duration);
  },

  render() {
    if (this.props.options.length === 0) {
      return null;
    }

    const { prefixCls } = this.props;

    return (
      <div className={`${prefixCls}-select`}>
        <ul ref="list">{this.getOptions()}</ul>
      </div>
    );
  },
});

export default Select;