Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 55 additions & 18 deletions src/dateparser/dateparser.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,39 +9,66 @@ angular.module('ui.bootstrap.dateparser', [])
var formatCodeToRegex = {
'yyyy': {
regex: '\\d{4}',
apply: function(value) { this.year = +value; }
apply: function (value) {
this.year.use++;
this.year.value = +value;
}
},
'yy': {
regex: '\\d{2}',
apply: function(value) { this.year = +value + 2000; }
apply: function (value) {
this.year.use++;
this.year.value = +value + 2000;
}
},
'y': {
regex: '\\d{1,4}',
apply: function(value) { this.year = +value; }
apply: function (value) {
this.year.use++;
this.year.value = +value;
}
},
'MMMM': {
regex: $locale.DATETIME_FORMATS.MONTH.join('|'),
apply: function(value) { this.month = $locale.DATETIME_FORMATS.MONTH.indexOf(value); }
apply: function (value) {
this.month.use++;
this.month.value = $locale.DATETIME_FORMATS.MONTH.indexOf(value);
}
},
'MMM': {
regex: $locale.DATETIME_FORMATS.SHORTMONTH.join('|'),
apply: function(value) { this.month = $locale.DATETIME_FORMATS.SHORTMONTH.indexOf(value); }
apply: function (value) {
this.month.use++;
this.month.value = $locale.DATETIME_FORMATS.SHORTMONTH.indexOf(value);
}
},
'MM': {
regex: '0[1-9]|1[0-2]',
apply: function(value) { this.month = value - 1; }
apply: function (value) {
this.month.use++;
this.month.value = value - 1;
}
},
'M': {
regex: '[1-9]|1[0-2]',
apply: function(value) { this.month = value - 1; }
apply: function (value) {
this.month.use++;
this.month.value = value - 1;
}
},
'dd': {
regex: '[0-2][0-9]{1}|3[0-1]{1}',
apply: function(value) { this.date = +value; }
apply: function (value) {
this.date.use++;
this.date.value = +value;
}
},
'd': {
regex: '[1-2]?[0-9]{1}|3[0-1]{1}',
apply: function(value) { this.date = +value; }
apply: function (value) {
this.date.use++;
this.date.value = +value;
}
},
'EEEE': {
regex: $locale.DATETIME_FORMATS.DAY.join('|')
Expand Down Expand Up @@ -100,6 +127,8 @@ angular.module('ui.bootstrap.dateparser', [])
}
});



return {
regex: new RegExp('^' + regex.join('') + '$'),
map: orderByFilter(map, 'index')
Expand All @@ -114,8 +143,8 @@ angular.module('ui.bootstrap.dateparser', [])
format = $locale.DATETIME_FORMATS[format] || format;
format = format.replace(SPECIAL_CHARACTERS_REGEXP, '\\$&');

if ( !this.parsers[format] ) {
this.parsers[format] = createParser(format);
if (!this.parsers[format]) {
this.parsers[format] = createParser(format);
}

var parser = this.parsers[format],
Expand All @@ -124,7 +153,15 @@ angular.module('ui.bootstrap.dateparser', [])
results = input.match(regex);

if ( results && results.length ) {
var fields = { year: 1900, month: 0, date: 1, hours: 0, minutes: 0, seconds: 0, milliseconds: 0 }, dt;
var fields = {
year: {use: 0, value: 1900},
month: {use: 0, value: 0},
date: {use: 0, value: 1},
hours: 0,
minutes: 0,
seconds: 0,
milliseconds: 0
}, dt;

for( var i = 1, n = results.length; i < n; i++ ) {
var mapper = map[i-1];
Expand All @@ -134,7 +171,7 @@ angular.module('ui.bootstrap.dateparser', [])
}

if ( isValid(fields.year, fields.month, fields.date) ) {
dt = new Date(fields.year, fields.month, fields.date, fields.hours, fields.minutes, fields.seconds, fields.milliseconds);
dt = new Date(fields.year.value, fields.month.value, fields.date.value, fields.hours, fields.minutes, fields.seconds, fields.milliseconds);
}

return dt;
Expand All @@ -144,16 +181,16 @@ angular.module('ui.bootstrap.dateparser', [])
// Check if date is valid for specific month (and year for February).
// Month: 0 = Jan, 1 = Feb, etc
function isValid(year, month, date) {
if (date < 1) {
if (year.use > 1||month.use > 1||date.use > 1||date.value < 1) {
return false;
}

if ( month === 1 && date > 28) {
return date === 29 && ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0);
if ( month.value === 1 && date.value > 28) {
return date.value === 29 && ((year.value % 4 === 0 && year.value % 100 !== 0) || year.value % 400 === 0);
}

if ( month === 3 || month === 5 || month === 8 || month === 10) {
return date < 31;
if (month.value === 3 || month.value === 5 || month.value === 8 || month.value === 10) {
return date.value < 31;
}

return true;
Expand Down
8 changes: 8 additions & 0 deletions src/dateparser/test/dateparser.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,12 @@ describe('date parser', function () {
it('should not parse if no format is specified', function() {
expect(dateParser.parse('21.08.1951', '')).toBe('21.08.1951');
});

it('should not parse if invalid format is specified', function() {
expect(dateParser.parse('20.12.20190', 'dd.MM.yyyyy')).toBeUndefined();
});
it('should not parse if invalid value is specified', function() {
expect(dateParser.parse('20.12.20190', 'dd.MM.yyyy')).toBeUndefined();

});
});