UNPKG

semantic-ui-calendar-react

Version:
127 lines (126 loc) 6.04 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) t[p[i]] = s[p[i]]; return t; }; Object.defineProperty(exports, "__esModule", { value: true }); var _ = require("lodash"); var moment = require("moment"); var PropTypes = require("prop-types"); var React = require("react"); var CustomPropTypes_1 = require("../lib/CustomPropTypes"); var MonthPicker_1 = require("../pickers/MonthPicker"); var InputView_1 = require("../views/InputView"); var BaseInput_1 = require("./BaseInput"); var parse_1 = require("./parse"); var MonthInput = /** @class */ (function (_super) { __extends(MonthInput, _super); function MonthInput(props) { var _this = _super.call(this, props) || this; _this.handleSelect = function (e, _a) { var value = _a.value; var date = moment({ month: value.month }); var output = ''; if (date.isValid()) { output = date.format(_this.props.dateFormat); } _.invoke(_this.props, 'onChange', e, __assign({}, _this.props, { value: output })); if (_this.props.closable) { _this.closePopup(); } }; _this.state = { popupIsClosed: false, }; return _this; } MonthInput.prototype.render = function () { var _this = this; var _a = this.props, value = _a.value, dateFormat = _a.dateFormat, initialDate = _a.initialDate, disable = _a.disable, maxDate = _a.maxDate, minDate = _a.minDate, closable = _a.closable, rest = __rest(_a, ["value", "dateFormat", "initialDate", "disable", "maxDate", "minDate", "closable"]); return (React.createElement(InputView_1.default, __assign({ popupIsClosed: this.state.popupIsClosed }, rest, { value: value, onMount: this.onInputViewMount, render: function (pickerProps) { return (React.createElement(MonthPicker_1.default, __assign({}, pickerProps, { inline: _this.props.inline, isPickerInFocus: _this.isPickerInFocus, isTriggerInFocus: _this.isTriggerInFocus, onCalendarViewMount: _this.onCalendarViewMount, closePopup: _this.closePopup, hasHeader: false, onChange: _this.handleSelect, initializeWith: parse_1.getInitializer({ initialDate: initialDate, dateFormat: dateFormat }), value: parse_1.parseValue(value, dateFormat), disable: parse_1.parseArrayOrValue(disable, dateFormat), maxDate: parse_1.parseValue(maxDate, dateFormat), minDate: parse_1.parseValue(minDate, dateFormat) }))); } }))); }; MonthInput.defaultProps = { dateFormat: 'MMM', icon: 'calendar', inline: false, }; MonthInput.propTypes = { /** Called on selected value change. */ onChange: PropTypes.func.isRequired, /** Currently selected value. */ value: PropTypes.string, /** Moment date formatting string. */ dateFormat: PropTypes.string, /** Date to display initially when no date is selected. */ initialDate: PropTypes.oneOfType([ PropTypes.string, CustomPropTypes_1.default.momentObj, PropTypes.instanceOf(Date), ]), /** Date or list of dates that are displayed as disabled. */ disable: PropTypes.oneOfType([ PropTypes.string, PropTypes.arrayOf(PropTypes.string), CustomPropTypes_1.default.momentObj, PropTypes.arrayOf(CustomPropTypes_1.default.momentObj), PropTypes.instanceOf(Date), PropTypes.arrayOf(PropTypes.instanceOf(Date)), ]), /** Maximum date that can be selected. */ maxDate: PropTypes.oneOfType([ PropTypes.string, CustomPropTypes_1.default.momentObj, PropTypes.instanceOf(Date), ]), /** Minimum date that can be selected. */ minDate: PropTypes.oneOfType([ PropTypes.string, CustomPropTypes_1.default.momentObj, PropTypes.instanceOf(Date), ]), /** If true, popup closes after selecting a date-time. */ closable: PropTypes.bool, /** * Called on clear. * * @param {SyntheticEvent} event - React's original SyntheticEvent. * @param {object} data - All props and proposed value. */ onClear: PropTypes.func, /** Using the clearable setting will let users remove their selection from a calendar. */ clearable: PropTypes.bool, /** Optional Icon to display inside the clearable Input. */ clearIcon: PropTypes.any, }; return MonthInput; }(BaseInput_1.default)); exports.default = MonthInput;