| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- /**
- * angular-strap
- * @version v2.3.5 - 2015-10-29
- * @link http://mgcrea.github.io/angular-strap
- * @author Olivier Louvignes <olivier@mg-crea.com> (https://github.com/mgcrea)
- * @license MIT License, http://www.opensource.org/licenses/MIT
- */
- 'use strict';
- angular.module('mgcrea.ngStrap.helpers.dateParser', []).provider('$dateParser', [ '$localeProvider', function($localeProvider) {
- function ParseDate() {
- this.year = 1970;
- this.month = 0;
- this.day = 1;
- this.hours = 0;
- this.minutes = 0;
- this.seconds = 0;
- this.milliseconds = 0;
- }
- ParseDate.prototype.setMilliseconds = function(value) {
- this.milliseconds = value;
- };
- ParseDate.prototype.setSeconds = function(value) {
- this.seconds = value;
- };
- ParseDate.prototype.setMinutes = function(value) {
- this.minutes = value;
- };
- ParseDate.prototype.setHours = function(value) {
- this.hours = value;
- };
- ParseDate.prototype.getHours = function() {
- return this.hours;
- };
- ParseDate.prototype.setDate = function(value) {
- this.day = value;
- };
- ParseDate.prototype.setMonth = function(value) {
- this.month = value;
- };
- ParseDate.prototype.setFullYear = function(value) {
- this.year = value;
- };
- ParseDate.prototype.fromDate = function(value) {
- this.year = value.getFullYear();
- this.month = value.getMonth();
- this.day = value.getDate();
- this.hours = value.getHours();
- this.minutes = value.getMinutes();
- this.seconds = value.getSeconds();
- this.milliseconds = value.getMilliseconds();
- return this;
- };
- ParseDate.prototype.toDate = function() {
- return new Date(this.year, this.month, this.day, this.hours, this.minutes, this.seconds, this.milliseconds);
- };
- var proto = ParseDate.prototype;
- function noop() {}
- function isNumeric(n) {
- return !isNaN(parseFloat(n)) && isFinite(n);
- }
- function indexOfCaseInsensitive(array, value) {
- var len = array.length, str = value.toString().toLowerCase();
- for (var i = 0; i < len; i++) {
- if (array[i].toLowerCase() === str) {
- return i;
- }
- }
- return -1;
- }
- var defaults = this.defaults = {
- format: 'shortDate',
- strict: false
- };
- this.$get = [ '$locale', 'dateFilter', function($locale, dateFilter) {
- var DateParserFactory = function(config) {
- var options = angular.extend({}, defaults, config);
- var $dateParser = {};
- var regExpMap = {
- sss: '[0-9]{3}',
- ss: '[0-5][0-9]',
- s: options.strict ? '[1-5]?[0-9]' : '[0-9]|[0-5][0-9]',
- mm: '[0-5][0-9]',
- m: options.strict ? '[1-5]?[0-9]' : '[0-9]|[0-5][0-9]',
- HH: '[01][0-9]|2[0-3]',
- H: options.strict ? '1?[0-9]|2[0-3]' : '[01]?[0-9]|2[0-3]',
- hh: '[0][1-9]|[1][012]',
- h: options.strict ? '[1-9]|1[012]' : '0?[1-9]|1[012]',
- a: 'AM|PM',
- EEEE: $locale.DATETIME_FORMATS.DAY.join('|'),
- EEE: $locale.DATETIME_FORMATS.SHORTDAY.join('|'),
- dd: '0[1-9]|[12][0-9]|3[01]',
- d: options.strict ? '[1-9]|[1-2][0-9]|3[01]' : '0?[1-9]|[1-2][0-9]|3[01]',
- MMMM: $locale.DATETIME_FORMATS.MONTH.join('|'),
- MMM: $locale.DATETIME_FORMATS.SHORTMONTH.join('|'),
- MM: '0[1-9]|1[012]',
- M: options.strict ? '[1-9]|1[012]' : '0?[1-9]|1[012]',
- yyyy: '[1]{1}[0-9]{3}|[2]{1}[0-9]{3}',
- yy: '[0-9]{2}',
- y: options.strict ? '-?(0|[1-9][0-9]{0,3})' : '-?0*[0-9]{1,4}'
- };
- var setFnMap = {
- sss: proto.setMilliseconds,
- ss: proto.setSeconds,
- s: proto.setSeconds,
- mm: proto.setMinutes,
- m: proto.setMinutes,
- HH: proto.setHours,
- H: proto.setHours,
- hh: proto.setHours,
- h: proto.setHours,
- EEEE: noop,
- EEE: noop,
- dd: proto.setDate,
- d: proto.setDate,
- a: function(value) {
- var hours = this.getHours() % 12;
- return this.setHours(value.match(/pm/i) ? hours + 12 : hours);
- },
- MMMM: function(value) {
- return this.setMonth(indexOfCaseInsensitive($locale.DATETIME_FORMATS.MONTH, value));
- },
- MMM: function(value) {
- return this.setMonth(indexOfCaseInsensitive($locale.DATETIME_FORMATS.SHORTMONTH, value));
- },
- MM: function(value) {
- return this.setMonth(1 * value - 1);
- },
- M: function(value) {
- return this.setMonth(1 * value - 1);
- },
- yyyy: proto.setFullYear,
- yy: function(value) {
- return this.setFullYear(2e3 + 1 * value);
- },
- y: function(value) {
- return 1 * value <= 50 && value.length === 2 ? this.setFullYear(2e3 + 1 * value) : this.setFullYear(1 * value);
- }
- };
- var regex, setMap;
- $dateParser.init = function() {
- $dateParser.$format = $locale.DATETIME_FORMATS[options.format] || options.format;
- regex = regExpForFormat($dateParser.$format);
- setMap = setMapForFormat($dateParser.$format);
- };
- $dateParser.isValid = function(date) {
- if (angular.isDate(date)) return !isNaN(date.getTime());
- return regex.test(date);
- };
- $dateParser.parse = function(value, baseDate, format, timezone) {
- if (format) format = $locale.DATETIME_FORMATS[format] || format;
- if (angular.isDate(value)) value = dateFilter(value, format || $dateParser.$format, timezone);
- var formatRegex = format ? regExpForFormat(format) : regex;
- var formatSetMap = format ? setMapForFormat(format) : setMap;
- var matches = formatRegex.exec(value);
- if (!matches) return false;
- var date = baseDate && !isNaN(baseDate.getTime()) ? new ParseDate().fromDate(baseDate) : new ParseDate().fromDate(new Date(1970, 0, 1, 0));
- for (var i = 0; i < matches.length - 1; i++) {
- formatSetMap[i] && formatSetMap[i].call(date, matches[i + 1]);
- }
- var newDate = date.toDate();
- if (parseInt(date.day, 10) !== newDate.getDate()) {
- return false;
- }
- return newDate;
- };
- $dateParser.getDateForAttribute = function(key, value) {
- var date;
- if (value === 'today') {
- var today = new Date();
- date = new Date(today.getFullYear(), today.getMonth(), today.getDate() + (key === 'maxDate' ? 1 : 0), 0, 0, 0, key === 'minDate' ? 0 : -1);
- } else if (angular.isString(value) && value.match(/^".+"$/)) {
- date = new Date(value.substr(1, value.length - 2));
- } else if (isNumeric(value)) {
- date = new Date(parseInt(value, 10));
- } else if (angular.isString(value) && 0 === value.length) {
- date = key === 'minDate' ? -Infinity : +Infinity;
- } else {
- date = new Date(value);
- }
- return date;
- };
- $dateParser.getTimeForAttribute = function(key, value) {
- var time;
- if (value === 'now') {
- time = new Date().setFullYear(1970, 0, 1);
- } else if (angular.isString(value) && value.match(/^".+"$/)) {
- time = new Date(value.substr(1, value.length - 2)).setFullYear(1970, 0, 1);
- } else if (isNumeric(value)) {
- time = new Date(parseInt(value, 10)).setFullYear(1970, 0, 1);
- } else if (angular.isString(value) && 0 === value.length) {
- time = key === 'minTime' ? -Infinity : +Infinity;
- } else {
- time = $dateParser.parse(value, new Date(1970, 0, 1, 0));
- }
- return time;
- };
- $dateParser.daylightSavingAdjust = function(date) {
- if (!date) {
- return null;
- }
- date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0);
- return date;
- };
- $dateParser.timezoneOffsetAdjust = function(date, timezone, undo) {
- if (!date) {
- return null;
- }
- if (timezone && timezone === 'UTC') {
- date = new Date(date.getTime());
- date.setMinutes(date.getMinutes() + (undo ? -1 : 1) * date.getTimezoneOffset());
- }
- return date;
- };
- function setMapForFormat(format) {
- var keys = Object.keys(setFnMap), i;
- var map = [], sortedMap = [];
- var clonedFormat = format;
- for (i = 0; i < keys.length; i++) {
- if (format.split(keys[i]).length > 1) {
- var index = clonedFormat.search(keys[i]);
- format = format.split(keys[i]).join('');
- if (setFnMap[keys[i]]) {
- map[index] = setFnMap[keys[i]];
- }
- }
- }
- angular.forEach(map, function(v) {
- if (v) sortedMap.push(v);
- });
- return sortedMap;
- }
- function escapeReservedSymbols(text) {
- return text.replace(/\//g, '[\\/]').replace('/-/g', '[-]').replace(/\./g, '[.]').replace(/\\s/g, '[\\s]');
- }
- function regExpForFormat(format) {
- var keys = Object.keys(regExpMap), i;
- var re = format;
- for (i = 0; i < keys.length; i++) {
- re = re.split(keys[i]).join('${' + i + '}');
- }
- for (i = 0; i < keys.length; i++) {
- re = re.split('${' + i + '}').join('(' + regExpMap[keys[i]] + ')');
- }
- format = escapeReservedSymbols(format);
- return new RegExp('^' + re + '$', [ 'i' ]);
- }
- $dateParser.init();
- return $dateParser;
- };
- return DateParserFactory;
- } ];
- } ]);
|