forked from jchomaz/Vulture
Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
94
VApp/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.js
generated
vendored
Normal file
94
VApp/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.js
generated
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.StandAloneMonthParser = void 0;
|
||||
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
||||
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
||||
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
||||
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
||||
var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper"));
|
||||
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
||||
var _Parser2 = require("../Parser.js");
|
||||
var _constants = require("../constants.js");
|
||||
var _utils = require("../utils.js");
|
||||
var StandAloneMonthParser = /*#__PURE__*/function (_Parser) {
|
||||
(0, _inherits2.default)(StandAloneMonthParser, _Parser);
|
||||
var _super = (0, _createSuper2.default)(StandAloneMonthParser);
|
||||
function StandAloneMonthParser() {
|
||||
var _this;
|
||||
(0, _classCallCheck2.default)(this, StandAloneMonthParser);
|
||||
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
||||
args[_key] = arguments[_key];
|
||||
}
|
||||
_this = _super.call.apply(_super, [this].concat(args));
|
||||
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "priority", 110);
|
||||
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "incompatibleTokens", ['Y', 'R', 'q', 'Q', 'M', 'w', 'I', 'D', 'i', 'e', 'c', 't', 'T']);
|
||||
return _this;
|
||||
}
|
||||
(0, _createClass2.default)(StandAloneMonthParser, [{
|
||||
key: "parse",
|
||||
value: function parse(dateString, token, match) {
|
||||
var valueCallback = function valueCallback(value) {
|
||||
return value - 1;
|
||||
};
|
||||
switch (token) {
|
||||
// 1, 2, ..., 12
|
||||
case 'L':
|
||||
return (0, _utils.mapValue)((0, _utils.parseNumericPattern)(_constants.numericPatterns.month, dateString), valueCallback);
|
||||
// 01, 02, ..., 12
|
||||
case 'LL':
|
||||
return (0, _utils.mapValue)((0, _utils.parseNDigits)(2, dateString), valueCallback);
|
||||
// 1st, 2nd, ..., 12th
|
||||
case 'Lo':
|
||||
return (0, _utils.mapValue)(match.ordinalNumber(dateString, {
|
||||
unit: 'month'
|
||||
}), valueCallback);
|
||||
// Jan, Feb, ..., Dec
|
||||
case 'LLL':
|
||||
return match.month(dateString, {
|
||||
width: 'abbreviated',
|
||||
context: 'standalone'
|
||||
}) || match.month(dateString, {
|
||||
width: 'narrow',
|
||||
context: 'standalone'
|
||||
});
|
||||
// J, F, ..., D
|
||||
case 'LLLLL':
|
||||
return match.month(dateString, {
|
||||
width: 'narrow',
|
||||
context: 'standalone'
|
||||
});
|
||||
// January, February, ..., December
|
||||
case 'LLLL':
|
||||
default:
|
||||
return match.month(dateString, {
|
||||
width: 'wide',
|
||||
context: 'standalone'
|
||||
}) || match.month(dateString, {
|
||||
width: 'abbreviated',
|
||||
context: 'standalone'
|
||||
}) || match.month(dateString, {
|
||||
width: 'narrow',
|
||||
context: 'standalone'
|
||||
});
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "validate",
|
||||
value: function validate(_date, value) {
|
||||
return value >= 0 && value <= 11;
|
||||
}
|
||||
}, {
|
||||
key: "set",
|
||||
value: function set(date, _flags, value) {
|
||||
date.setUTCMonth(value, 1);
|
||||
date.setUTCHours(0, 0, 0, 0);
|
||||
return date;
|
||||
}
|
||||
}]);
|
||||
return StandAloneMonthParser;
|
||||
}(_Parser2.Parser);
|
||||
exports.StandAloneMonthParser = StandAloneMonthParser;
|
||||
Reference in New Issue
Block a user