This repository was archived by the owner on Apr 28, 2020. It is now read-only.
forked from formatjs/intl-relativeformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.js
313 lines (256 loc) · 9.53 KB
/
core.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*
Copyright (c) 2014, Yahoo! Inc. All rights reserved.
Copyrights licensed under the New BSD License.
See the accompanying LICENSE file for terms.
*/
/* jslint esnext: true */
import IntlMessageFormat from '@ember-intl/intl-messageformat';
import diff from './diff';
import {
defineProperty,
objCreate,
arrIndexOf,
isArray,
dateNow
} from './es5';
export default RelativeFormat;
// -----------------------------------------------------------------------------
var FIELDS = [
'second', 'second-short',
'minute', 'minute-short',
'hour', 'hour-short',
'day', 'day-short',
'month', 'month-short',
'year', 'year-short'
];
var STYLES = ['best fit', 'numeric'];
// -- RelativeFormat -----------------------------------------------------------
function RelativeFormat(locales, options) {
options = options || {};
// Make a copy of `locales` if it's an array, so that it doesn't change
// since it's used lazily.
if (isArray(locales)) {
locales = locales.concat();
}
defineProperty(this, '_locale', {value: this._resolveLocale(locales)});
defineProperty(this, '_options', {value: {
style: this._resolveStyle(options.style),
units: this._isValidUnits(options.units) && options.units
}});
defineProperty(this, '_locales', {value: locales});
defineProperty(this, '_fields', {value: this._findFields(this._locale)});
defineProperty(this, '_messages', {value: objCreate(null)});
// "Bind" `format()` method to `this` so it can be passed by reference like
// the other `Intl` APIs.
var relativeFormat = this;
this.format = function format(date, options) {
return relativeFormat._format(date, options);
};
}
// Define internal private properties for dealing with locale data.
defineProperty(RelativeFormat, '__localeData__', {value: objCreate(null)});
defineProperty(RelativeFormat, '__addLocaleData', {value: function (data) {
if (!(data && data.locale)) {
throw new Error(
'Locale data provided to IntlRelativeFormat is missing a ' +
'`locale` property value'
);
}
RelativeFormat.__localeData__[data.locale.toLowerCase()] = data;
// Add data to IntlMessageFormat.
IntlMessageFormat.__addLocaleData(data);
}});
// Define public `defaultLocale` property which can be set by the developer, or
// it will be set when the first RelativeFormat instance is created by
// leveraging the resolved locale from `Intl`.
defineProperty(RelativeFormat, 'defaultLocale', {
enumerable: true,
writable : true,
value : undefined
});
// Define public `thresholds` property which can be set by the developer, and
// defaults to relative time thresholds from moment.js.
defineProperty(RelativeFormat, 'thresholds', {
enumerable: true,
value: {
second: 45, 'second-short': 45, // seconds to minute
minute: 45, 'minute-short': 45, // minutes to hour
hour : 22, 'hour-short': 22, // hours to day
day : 26, 'day-short': 26, // days to month
month : 11, 'month-short': 11 // months to year
}
});
RelativeFormat.prototype.resolvedOptions = function () {
return {
locale: this._locale,
style : this._options.style,
units : this._options.units
};
};
RelativeFormat.prototype._compileMessage = function (units) {
// `this._locales` is the original set of locales the user specified to the
// constructor, while `this._locale` is the resolved root locale.
var locales = this._locales;
var resolvedLocale = this._locale;
var field = this._fields[units];
var relativeTime = field.relativeTime;
var future = '';
var past = '';
var i;
for (i in relativeTime.future) {
if (relativeTime.future.hasOwnProperty(i)) {
future += ' ' + i + ' {' +
relativeTime.future[i].replace('{0}', '#') + '}';
}
}
for (i in relativeTime.past) {
if (relativeTime.past.hasOwnProperty(i)) {
past += ' ' + i + ' {' +
relativeTime.past[i].replace('{0}', '#') + '}';
}
}
var message = '{when, select, future {{0, plural, ' + future + '}}' +
'past {{0, plural, ' + past + '}}}';
// Create the synthetic IntlMessageFormat instance using the original
// locales value specified by the user when constructing the the parent
// IntlRelativeFormat instance.
return new IntlMessageFormat(message, locales);
};
RelativeFormat.prototype._getMessage = function (units) {
var messages = this._messages;
// Create a new synthetic message based on the locale data from CLDR.
if (!messages[units]) {
messages[units] = this._compileMessage(units);
}
return messages[units];
};
RelativeFormat.prototype._getRelativeUnits = function (diff, units) {
var field = this._fields[units];
if (field.relative) {
return field.relative[diff];
}
};
RelativeFormat.prototype._findFields = function (locale) {
var localeData = RelativeFormat.__localeData__;
var data = localeData[locale.toLowerCase()];
// The locale data is de-duplicated, so we have to traverse the locale's
// hierarchy until we find `fields` to return.
while (data) {
if (data.fields) {
return data.fields;
}
data = data.parentLocale && localeData[data.parentLocale.toLowerCase()];
}
throw new Error(
'Locale data added to IntlRelativeFormat is missing `fields` for :' +
locale
);
};
RelativeFormat.prototype._format = function (date, options) {
var now = options && options.now !== undefined ? options.now : dateNow();
if (date === undefined) {
date = now;
}
// Determine if the `date` and optional `now` values are valid, and throw a
// similar error to what `Intl.DateTimeFormat#format()` would throw.
if (!isFinite(now)) {
throw new RangeError(
'The `now` option provided to IntlRelativeFormat#format() is not ' +
'in valid range.'
);
}
if (!isFinite(date)) {
throw new RangeError(
'The date value provided to IntlRelativeFormat#format() is not ' +
'in valid range.'
);
}
var diffReport = diff(now, date);
var units = this._options.units || this._selectUnits(diffReport);
var diffInUnits = diffReport[units];
if (this._options.style !== 'numeric') {
var relativeUnits = this._getRelativeUnits(diffInUnits, units);
if (relativeUnits) {
return relativeUnits;
}
}
return this._getMessage(units).format({
'0' : Math.abs(diffInUnits),
when: diffInUnits < 0 ? 'past' : 'future'
});
};
RelativeFormat.prototype._isValidUnits = function (units) {
if (!units || arrIndexOf.call(FIELDS, units) >= 0) {
return true;
}
if (typeof units === 'string') {
var suggestion = /s$/.test(units) && units.substr(0, units.length - 1);
if (suggestion && arrIndexOf.call(FIELDS, suggestion) >= 0) {
throw new Error(
'"' + units + '" is not a valid IntlRelativeFormat `units` ' +
'value, did you mean: ' + suggestion
);
}
}
throw new Error(
'"' + units + '" is not a valid IntlRelativeFormat `units` value, it ' +
'must be one of: "' + FIELDS.join('", "') + '"'
);
};
RelativeFormat.prototype._resolveLocale = function (locales) {
if (typeof locales === 'string') {
locales = [locales];
}
// Create a copy of the array so we can push on the default locale.
locales = (locales || []).concat(RelativeFormat.defaultLocale);
var localeData = RelativeFormat.__localeData__;
var i, len, localeParts, data;
// Using the set of locales + the default locale, we look for the first one
// which that has been registered. When data does not exist for a locale, we
// traverse its ancestors to find something that's been registered within
// its hierarchy of locales. Since we lack the proper `parentLocale` data
// here, we must take a naive approach to traversal.
for (i = 0, len = locales.length; i < len; i += 1) {
localeParts = locales[i].toLowerCase().split('-');
while (localeParts.length) {
data = localeData[localeParts.join('-')];
if (data) {
// Return the normalized locale string; e.g., we return "en-US",
// instead of "en-us".
return data.locale;
}
localeParts.pop();
}
}
var defaultLocale = locales.pop();
throw new Error(
'No locale data has been added to IntlRelativeFormat for: ' +
locales.join(', ') + ', or the default locale: ' + defaultLocale
);
};
RelativeFormat.prototype._resolveStyle = function (style) {
// Default to "best fit" style.
if (!style) {
return STYLES[0];
}
if (arrIndexOf.call(STYLES, style) >= 0) {
return style;
}
throw new Error(
'"' + style + '" is not a valid IntlRelativeFormat `style` value, it ' +
'must be one of: "' + STYLES.join('", "') + '"'
);
};
RelativeFormat.prototype._selectUnits = function (diffReport) {
var i, l, units;
var fields = FIELDS.filter(function(field) {
return field.indexOf('-short') < 1;
});
for (i = 0, l = fields.length; i < l; i += 1) {
units = fields[i];
if (Math.abs(diffReport[units]) < RelativeFormat.thresholds[units]) {
break;
}
}
return units;
};