273 lines
11 KiB
JavaScript
273 lines
11 KiB
JavaScript
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
|
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
|
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
|
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
|
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
import * as React from 'react';
|
|
import * as moment from 'moment';
|
|
import { polyfill } from 'react-lifecycles-compat';
|
|
import Calendar from 'rc-calendar';
|
|
import RcDatePicker from "rc-calendar/es/Picker";
|
|
import classNames from 'classnames';
|
|
import Icon from '../icon';
|
|
import { ConfigConsumer } from '../config-provider';
|
|
import interopDefault from '../_util/interopDefault';
|
|
import InputIcon from './InputIcon';
|
|
|
|
function formatValue(value, format) {
|
|
return value && value.format(format) || '';
|
|
}
|
|
|
|
var WeekPicker = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(WeekPicker, _React$Component);
|
|
|
|
var _super = _createSuper(WeekPicker);
|
|
|
|
function WeekPicker(props) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, WeekPicker);
|
|
|
|
_this = _super.call(this, props);
|
|
|
|
_this.saveInput = function (node) {
|
|
_this.input = node;
|
|
};
|
|
|
|
_this.weekDateRender = function (current) {
|
|
var selectedValue = _this.state.value;
|
|
|
|
var _assertThisInitialize = _assertThisInitialized(_this),
|
|
prefixCls = _assertThisInitialize.prefixCls;
|
|
|
|
var dateRender = _this.props.dateRender;
|
|
var dateNode = dateRender ? dateRender(current) : current.date();
|
|
|
|
if (selectedValue && current.year() === selectedValue.year() && current.week() === selectedValue.week()) {
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-selected-day")
|
|
}, /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-date")
|
|
}, dateNode));
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-date")
|
|
}, dateNode);
|
|
};
|
|
|
|
_this.handleChange = function (value) {
|
|
if (!('value' in _this.props)) {
|
|
_this.setState({
|
|
value: value
|
|
});
|
|
}
|
|
|
|
_this.props.onChange(value, formatValue(value, _this.props.format));
|
|
};
|
|
|
|
_this.handleOpenChange = function (open) {
|
|
var onOpenChange = _this.props.onOpenChange;
|
|
|
|
if (!('open' in _this.props)) {
|
|
_this.setState({
|
|
open: open
|
|
});
|
|
}
|
|
|
|
if (onOpenChange) {
|
|
onOpenChange(open);
|
|
}
|
|
};
|
|
|
|
_this.clearSelection = function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
_this.handleChange(null);
|
|
};
|
|
|
|
_this.renderFooter = function () {
|
|
var _this$props = _this.props,
|
|
prefixCls = _this$props.prefixCls,
|
|
renderExtraFooter = _this$props.renderExtraFooter;
|
|
return renderExtraFooter ? /*#__PURE__*/React.createElement("div", {
|
|
className: "".concat(prefixCls, "-footer-extra")
|
|
}, renderExtraFooter.apply(void 0, arguments)) : null;
|
|
};
|
|
|
|
_this.renderWeekPicker = function (_ref) {
|
|
var getPrefixCls = _ref.getPrefixCls;
|
|
var _this$props2 = _this.props,
|
|
customizePrefixCls = _this$props2.prefixCls,
|
|
className = _this$props2.className,
|
|
disabled = _this$props2.disabled,
|
|
pickerClass = _this$props2.pickerClass,
|
|
popupStyle = _this$props2.popupStyle,
|
|
pickerInputClass = _this$props2.pickerInputClass,
|
|
format = _this$props2.format,
|
|
allowClear = _this$props2.allowClear,
|
|
locale = _this$props2.locale,
|
|
localeCode = _this$props2.localeCode,
|
|
disabledDate = _this$props2.disabledDate,
|
|
style = _this$props2.style,
|
|
onFocus = _this$props2.onFocus,
|
|
onBlur = _this$props2.onBlur,
|
|
id = _this$props2.id,
|
|
suffixIcon = _this$props2.suffixIcon,
|
|
defaultPickerValue = _this$props2.defaultPickerValue;
|
|
var prefixCls = getPrefixCls('calendar', customizePrefixCls); // To support old version react.
|
|
// Have to add prefixCls on the instance.
|
|
// https://github.com/facebook/react/issues/12397
|
|
|
|
_this.prefixCls = prefixCls;
|
|
var _this$state = _this.state,
|
|
open = _this$state.open,
|
|
pickerValue = _this$state.value;
|
|
|
|
if (pickerValue && localeCode) {
|
|
pickerValue.locale(localeCode);
|
|
}
|
|
|
|
var placeholder = 'placeholder' in _this.props ? _this.props.placeholder : locale.lang.placeholder;
|
|
var calendar = /*#__PURE__*/React.createElement(Calendar, {
|
|
showWeekNumber: true,
|
|
dateRender: _this.weekDateRender,
|
|
prefixCls: prefixCls,
|
|
format: format,
|
|
locale: locale.lang,
|
|
showDateInput: false,
|
|
showToday: false,
|
|
disabledDate: disabledDate,
|
|
renderFooter: _this.renderFooter,
|
|
defaultValue: defaultPickerValue
|
|
});
|
|
var clearIcon = !disabled && allowClear && _this.state.value ? /*#__PURE__*/React.createElement(Icon, {
|
|
type: "close-circle",
|
|
className: "".concat(prefixCls, "-picker-clear"),
|
|
onClick: _this.clearSelection,
|
|
theme: "filled"
|
|
}) : null;
|
|
var inputIcon = /*#__PURE__*/React.createElement(InputIcon, {
|
|
suffixIcon: suffixIcon,
|
|
prefixCls: prefixCls
|
|
});
|
|
|
|
var input = function input(_ref2) {
|
|
var value = _ref2.value;
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
style: {
|
|
display: 'inline-block',
|
|
width: '100%'
|
|
}
|
|
}, /*#__PURE__*/React.createElement("input", {
|
|
ref: _this.saveInput,
|
|
disabled: disabled,
|
|
readOnly: true,
|
|
value: value && value.format(format) || '',
|
|
placeholder: placeholder,
|
|
className: pickerInputClass,
|
|
onFocus: onFocus,
|
|
onBlur: onBlur
|
|
}), clearIcon, inputIcon);
|
|
};
|
|
|
|
return /*#__PURE__*/React.createElement("span", {
|
|
className: classNames(className, pickerClass),
|
|
style: style,
|
|
id: id
|
|
}, /*#__PURE__*/React.createElement(RcDatePicker, _extends({}, _this.props, {
|
|
calendar: calendar,
|
|
prefixCls: "".concat(prefixCls, "-picker-container"),
|
|
value: pickerValue,
|
|
onChange: _this.handleChange,
|
|
open: open,
|
|
onOpenChange: _this.handleOpenChange,
|
|
style: popupStyle
|
|
}), input));
|
|
};
|
|
|
|
var value = props.value || props.defaultValue;
|
|
|
|
if (value && !interopDefault(moment).isMoment(value)) {
|
|
throw new Error('The value/defaultValue of WeekPicker must be ' + 'a moment object after `antd@2.0`, see: https://u.ant.design/date-picker-value');
|
|
}
|
|
|
|
_this.state = {
|
|
value: value,
|
|
open: props.open
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
_createClass(WeekPicker, [{
|
|
key: "componentDidUpdate",
|
|
value: function componentDidUpdate(_, prevState) {
|
|
if (!('open' in this.props) && prevState.open && !this.state.open) {
|
|
this.focus();
|
|
}
|
|
}
|
|
}, {
|
|
key: "focus",
|
|
value: function focus() {
|
|
this.input.focus();
|
|
}
|
|
}, {
|
|
key: "blur",
|
|
value: function blur() {
|
|
this.input.blur();
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
return /*#__PURE__*/React.createElement(ConfigConsumer, null, this.renderWeekPicker);
|
|
}
|
|
}], [{
|
|
key: "getDerivedStateFromProps",
|
|
value: function getDerivedStateFromProps(nextProps) {
|
|
if ('value' in nextProps || 'open' in nextProps) {
|
|
var state = {};
|
|
|
|
if ('value' in nextProps) {
|
|
state.value = nextProps.value;
|
|
}
|
|
|
|
if ('open' in nextProps) {
|
|
state.open = nextProps.open;
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}]);
|
|
|
|
return WeekPicker;
|
|
}(React.Component);
|
|
|
|
WeekPicker.defaultProps = {
|
|
format: 'gggg-wo',
|
|
allowClear: true
|
|
};
|
|
polyfill(WeekPicker);
|
|
export default WeekPicker; |