Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit f2683f9

Browse files
fix(date filter): display localised era for G format codes
This implementation is limited to displaying only AD (CE) years correctly, since we do not support the `u` style year format that can be used to represent dates before 1 AD. Closes #10503 Closes #11266
1 parent 1a670aa commit f2683f9

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

src/ng/filter/filters.js

+16-2
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,14 @@ function ampmGetter(date, formats) {
292292
return date.getHours() < 12 ? formats.AMPMS[0] : formats.AMPMS[1];
293293
}
294294

295+
function eraGetter(date, formats) {
296+
return date.getFullYear() <= 0 ? formats.ERAS[0] : formats.ERAS[1];
297+
}
298+
299+
function longEraGetter(date, formats) {
300+
return date.getFullYear() <= 0 ? formats.ERANAMES[0] : formats.ERANAMES[1];
301+
}
302+
295303
var DATE_FORMATS = {
296304
yyyy: dateGetter('FullYear', 4),
297305
yy: dateGetter('FullYear', 2, 0, true),
@@ -318,10 +326,14 @@ var DATE_FORMATS = {
318326
a: ampmGetter,
319327
Z: timeZoneGetter,
320328
ww: weekGetter(2),
321-
w: weekGetter(1)
329+
w: weekGetter(1),
330+
G: eraGetter,
331+
GG: eraGetter,
332+
GGG: eraGetter,
333+
GGGG: longEraGetter
322334
};
323335

324-
var DATE_FORMATS_SPLIT = /((?:[^yMdHhmsaZEw']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d+|H+|h+|m+|s+|a|Z|w+))(.*)/,
336+
var DATE_FORMATS_SPLIT = /((?:[^yMdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d+|H+|h+|m+|s+|a|Z|G+|w+))(.*)/,
325337
NUMBER_STRING = /^\-?\d+$/;
326338

327339
/**
@@ -358,6 +370,8 @@ var DATE_FORMATS_SPLIT = /((?:[^yMdHhmsaZEw']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d
358370
* * `'Z'`: 4 digit (+sign) representation of the timezone offset (-1200-+1200)
359371
* * `'ww'`: Week of year, padded (00-53). Week 01 is the week with the first Thursday of the year
360372
* * `'w'`: Week of year (0-53). Week 1 is the week with the first Thursday of the year
373+
* * `'G'`, `'GG'`, `'GGG'`: The abbreviated form of the era string (e.g. 'AD')
374+
* * `'GGGG'`: The long form of the era string (e.g. 'Anno Domini')
361375
*
362376
* `format` string can also be one of the following predefined
363377
* {@link guide/i18n localizable formats}:

test/ng/filter/filtersSpec.js

+12
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,18 @@ describe('filters', function() {
293293

294294
expect(date(earlyDate, "MMMM dd, y")).
295295
toEqual('September 03, 1');
296+
297+
expect(date(noon, "MMMM dd, y G")).
298+
toEqual('September 03, 2010 AD');
299+
300+
expect(date(noon, "MMMM dd, y GG")).
301+
toEqual('September 03, 2010 AD');
302+
303+
expect(date(noon, "MMMM dd, y GGG")).
304+
toEqual('September 03, 2010 AD');
305+
306+
expect(date(noon, "MMMM dd, y GGGG")).
307+
toEqual('September 03, 2010 Anno Domini');
296308
});
297309

298310
it('should accept negative numbers as strings', function() {

0 commit comments

Comments
 (0)