261 lines
8.1 KiB
JavaScript
261 lines
8.1 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _extends2 = require('babel-runtime/helpers/extends');
|
|
|
|
var _extends3 = _interopRequireDefault(_extends2);
|
|
|
|
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
|
|
|
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
|
|
var _createClass2 = require('babel-runtime/helpers/createClass');
|
|
|
|
var _createClass3 = _interopRequireDefault(_createClass2);
|
|
|
|
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
|
|
|
|
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
|
|
|
var _inherits2 = require('babel-runtime/helpers/inherits');
|
|
|
|
var _inherits3 = _interopRequireDefault(_inherits2);
|
|
|
|
var _react = require('react');
|
|
|
|
var _react2 = _interopRequireDefault(_react);
|
|
|
|
var _warning = require('warning');
|
|
|
|
var _warning2 = _interopRequireDefault(_warning);
|
|
|
|
var _Track = require('./common/Track');
|
|
|
|
var _Track2 = _interopRequireDefault(_Track);
|
|
|
|
var _createSlider = require('./common/createSlider');
|
|
|
|
var _createSlider2 = _interopRequireDefault(_createSlider);
|
|
|
|
var _utils = require('./utils');
|
|
|
|
var utils = _interopRequireWildcard(_utils);
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } }
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
|
|
var Slider = function (_React$Component) {
|
|
(0, _inherits3['default'])(Slider, _React$Component);
|
|
|
|
function Slider(props) {
|
|
(0, _classCallCheck3['default'])(this, Slider);
|
|
|
|
var _this = (0, _possibleConstructorReturn3['default'])(this, (Slider.__proto__ || Object.getPrototypeOf(Slider)).call(this, props));
|
|
|
|
_this.onEnd = function (force) {
|
|
var dragging = _this.state.dragging;
|
|
|
|
_this.removeDocumentEvents();
|
|
if (dragging || force) {
|
|
_this.props.onAfterChange(_this.getValue());
|
|
}
|
|
_this.setState({ dragging: false });
|
|
};
|
|
|
|
var defaultValue = props.defaultValue !== undefined ? props.defaultValue : props.min;
|
|
var value = props.value !== undefined ? props.value : defaultValue;
|
|
|
|
_this.state = {
|
|
value: _this.trimAlignValue(value),
|
|
dragging: false
|
|
};
|
|
|
|
(0, _warning2['default'])(!('minimumTrackStyle' in props), 'minimumTrackStyle will be deprecated, please use trackStyle instead.');
|
|
(0, _warning2['default'])(!('maximumTrackStyle' in props), 'maximumTrackStyle will be deprecated, please use railStyle instead.');
|
|
return _this;
|
|
}
|
|
|
|
(0, _createClass3['default'])(Slider, [{
|
|
key: 'componentDidUpdate',
|
|
value: function componentDidUpdate(prevProps, prevState) {
|
|
if (!('value' in this.props || 'min' in this.props || 'max' in this.props)) {
|
|
return;
|
|
}
|
|
var _props = this.props,
|
|
value = _props.value,
|
|
onChange = _props.onChange;
|
|
|
|
var theValue = value !== undefined ? value : prevState.value;
|
|
var nextValue = this.trimAlignValue(theValue, this.props);
|
|
if (nextValue !== prevState.value) {
|
|
// eslint-disable-next-line
|
|
this.setState({ value: nextValue });
|
|
if (utils.isValueOutOfRange(theValue, this.props)) {
|
|
onChange(nextValue);
|
|
}
|
|
}
|
|
}
|
|
}, {
|
|
key: 'onChange',
|
|
value: function onChange(state) {
|
|
var props = this.props;
|
|
var isNotControlled = !('value' in props);
|
|
var nextState = state.value > this.props.max ? (0, _extends3['default'])({}, state, { value: this.props.max }) : state;
|
|
if (isNotControlled) {
|
|
this.setState(nextState);
|
|
}
|
|
|
|
var changedValue = nextState.value;
|
|
props.onChange(changedValue);
|
|
}
|
|
}, {
|
|
key: 'onStart',
|
|
value: function onStart(position) {
|
|
this.setState({ dragging: true });
|
|
var props = this.props;
|
|
var prevValue = this.getValue();
|
|
props.onBeforeChange(prevValue);
|
|
|
|
var value = this.calcValueByPos(position);
|
|
this.startValue = value;
|
|
this.startPosition = position;
|
|
|
|
if (value === prevValue) return;
|
|
|
|
this.prevMovedHandleIndex = 0;
|
|
|
|
this.onChange({ value: value });
|
|
}
|
|
}, {
|
|
key: 'onMove',
|
|
value: function onMove(e, position) {
|
|
utils.pauseEvent(e);
|
|
var oldValue = this.state.value;
|
|
|
|
var value = this.calcValueByPos(position);
|
|
if (value === oldValue) return;
|
|
|
|
this.onChange({ value: value });
|
|
}
|
|
}, {
|
|
key: 'onKeyboard',
|
|
value: function onKeyboard(e) {
|
|
var _props2 = this.props,
|
|
reverse = _props2.reverse,
|
|
vertical = _props2.vertical;
|
|
|
|
var valueMutator = utils.getKeyboardValueMutator(e, vertical, reverse);
|
|
if (valueMutator) {
|
|
utils.pauseEvent(e);
|
|
var state = this.state;
|
|
var oldValue = state.value;
|
|
var mutatedValue = valueMutator(oldValue, this.props);
|
|
var value = this.trimAlignValue(mutatedValue);
|
|
if (value === oldValue) return;
|
|
|
|
this.onChange({ value: value });
|
|
this.props.onAfterChange(value);
|
|
this.onEnd();
|
|
}
|
|
}
|
|
}, {
|
|
key: 'getValue',
|
|
value: function getValue() {
|
|
return this.state.value;
|
|
}
|
|
}, {
|
|
key: 'getLowerBound',
|
|
value: function getLowerBound() {
|
|
return this.props.min;
|
|
}
|
|
}, {
|
|
key: 'getUpperBound',
|
|
value: function getUpperBound() {
|
|
return this.state.value;
|
|
}
|
|
}, {
|
|
key: 'trimAlignValue',
|
|
value: function trimAlignValue(v) {
|
|
var nextProps = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
|
|
if (v === null) {
|
|
return null;
|
|
}
|
|
|
|
var mergedProps = (0, _extends3['default'])({}, this.props, nextProps);
|
|
var val = utils.ensureValueInRange(v, mergedProps);
|
|
return utils.ensureValuePrecision(val, mergedProps);
|
|
}
|
|
}, {
|
|
key: 'render',
|
|
value: function render() {
|
|
var _this2 = this;
|
|
|
|
var _props3 = this.props,
|
|
prefixCls = _props3.prefixCls,
|
|
vertical = _props3.vertical,
|
|
included = _props3.included,
|
|
disabled = _props3.disabled,
|
|
minimumTrackStyle = _props3.minimumTrackStyle,
|
|
trackStyle = _props3.trackStyle,
|
|
handleStyle = _props3.handleStyle,
|
|
tabIndex = _props3.tabIndex,
|
|
ariaLabelForHandle = _props3.ariaLabelForHandle,
|
|
ariaLabelledByForHandle = _props3.ariaLabelledByForHandle,
|
|
ariaValueTextFormatterForHandle = _props3.ariaValueTextFormatterForHandle,
|
|
min = _props3.min,
|
|
max = _props3.max,
|
|
startPoint = _props3.startPoint,
|
|
reverse = _props3.reverse,
|
|
handleGenerator = _props3.handle;
|
|
var _state = this.state,
|
|
value = _state.value,
|
|
dragging = _state.dragging;
|
|
|
|
var offset = this.calcOffset(value);
|
|
var handle = handleGenerator({
|
|
className: prefixCls + '-handle',
|
|
prefixCls: prefixCls,
|
|
vertical: vertical,
|
|
offset: offset,
|
|
value: value,
|
|
dragging: dragging,
|
|
disabled: disabled,
|
|
min: min,
|
|
max: max,
|
|
reverse: reverse,
|
|
index: 0,
|
|
tabIndex: tabIndex,
|
|
ariaLabel: ariaLabelForHandle,
|
|
ariaLabelledBy: ariaLabelledByForHandle,
|
|
ariaValueTextFormatter: ariaValueTextFormatterForHandle,
|
|
style: handleStyle[0] || handleStyle,
|
|
ref: function ref(h) {
|
|
return _this2.saveHandle(0, h);
|
|
}
|
|
});
|
|
|
|
var trackOffset = startPoint !== undefined ? this.calcOffset(startPoint) : 0;
|
|
var _trackStyle = trackStyle[0] || trackStyle;
|
|
var track = _react2['default'].createElement(_Track2['default'], {
|
|
className: prefixCls + '-track',
|
|
vertical: vertical,
|
|
included: included,
|
|
offset: trackOffset,
|
|
reverse: reverse,
|
|
length: offset - trackOffset,
|
|
style: (0, _extends3['default'])({}, minimumTrackStyle, _trackStyle)
|
|
});
|
|
|
|
return { tracks: track, handles: handle };
|
|
}
|
|
}]);
|
|
return Slider;
|
|
}(_react2['default'].Component);
|
|
|
|
exports['default'] = (0, _createSlider2['default'])(Slider);
|
|
module.exports = exports['default']; |