2015-10-22 22:20:12 +00:00
|
|
|
/*****************************************************************************
|
2017-05-01 06:21:13 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2016, United States Government
|
2015-10-22 22:20:12 +00:00
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
2015-10-22 22:20:12 +00:00
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT includes source code licensed under additional open source
|
2015-10-22 22:20:12 +00:00
|
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
* this source code distribution or the Licensing information page available
|
|
|
|
* at runtime from the About dialog for additional information.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
define([
|
|
|
|
'moment'
|
|
|
|
], function (
|
|
|
|
moment
|
|
|
|
) {
|
|
|
|
|
2016-03-21 21:29:24 +00:00
|
|
|
var DATE_FORMAT = "YYYY-MM-DD HH:mm:ss.SSS",
|
2015-10-22 22:20:12 +00:00
|
|
|
DATE_FORMATS = [
|
|
|
|
DATE_FORMAT,
|
2016-03-21 20:04:59 +00:00
|
|
|
"YYYY-MM-DD HH:mm:ss",
|
2015-10-22 22:20:12 +00:00
|
|
|
"YYYY-MM-DD HH:mm",
|
|
|
|
"YYYY-MM-DD"
|
2015-10-26 16:45:01 +00:00
|
|
|
];
|
2015-10-22 22:20:12 +00:00
|
|
|
|
2016-10-12 20:47:56 +00:00
|
|
|
/**
|
|
|
|
* @typedef Scale
|
|
|
|
* @property {number} min the minimum scale value, in ms
|
|
|
|
* @property {number} max the maximum scale value, in ms
|
|
|
|
*/
|
2015-10-22 22:20:12 +00:00
|
|
|
|
2015-10-28 15:29:56 +00:00
|
|
|
/**
|
|
|
|
* Formatter for UTC timestamps. Interprets numeric values as
|
|
|
|
* milliseconds since the start of 1970.
|
|
|
|
*
|
|
|
|
* @implements {Format}
|
|
|
|
* @constructor
|
|
|
|
* @memberof platform/commonUI/formats
|
|
|
|
*/
|
2015-10-26 16:45:01 +00:00
|
|
|
function UTCTimeFormat() {
|
2017-05-01 06:21:13 +00:00
|
|
|
this.key = "utc";
|
2015-10-22 22:20:12 +00:00
|
|
|
}
|
|
|
|
|
2016-10-12 20:47:56 +00:00
|
|
|
/**
|
|
|
|
* Returns an appropriate time format based on the provided value and
|
|
|
|
* the threshold required.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
function getScaledFormat(d) {
|
|
|
|
var momentified = moment.utc(d);
|
|
|
|
/**
|
|
|
|
* Uses logic from d3 Time-Scales, v3 of the API. See
|
|
|
|
* https://github.com/d3/d3-3.x-api-reference/blob/master/Time-Scales.md
|
|
|
|
*
|
|
|
|
* Licensed
|
|
|
|
*/
|
2017-05-01 06:21:13 +00:00
|
|
|
var format = [
|
2016-10-12 20:47:56 +00:00
|
|
|
[".SSS", function (m) {
|
|
|
|
return m.milliseconds();
|
|
|
|
}],
|
|
|
|
[":ss", function (m) {
|
|
|
|
return m.seconds();
|
|
|
|
}],
|
|
|
|
["HH:mm", function (m) {
|
|
|
|
return m.minutes();
|
|
|
|
}],
|
|
|
|
["HH", function (m) {
|
|
|
|
return m.hours();
|
|
|
|
}],
|
|
|
|
["ddd DD", function (m) {
|
|
|
|
return m.days() &&
|
|
|
|
m.date() !== 1;
|
|
|
|
}],
|
|
|
|
["MMM DD", function (m) {
|
|
|
|
return m.date() !== 1;
|
|
|
|
}],
|
|
|
|
["MMMM", function (m) {
|
|
|
|
return m.month();
|
|
|
|
}],
|
|
|
|
["YYYY", function () {
|
|
|
|
return true;
|
|
|
|
}]
|
|
|
|
].filter(function (row) {
|
2018-08-07 21:47:50 +00:00
|
|
|
return row[1](momentified);
|
|
|
|
})[0][0];
|
2017-05-01 06:21:13 +00:00
|
|
|
|
|
|
|
if (format !== undefined) {
|
|
|
|
return moment.utc(d).format(format);
|
|
|
|
}
|
2016-10-12 20:47:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-05-01 06:21:13 +00:00
|
|
|
* @param {number} value The value to format.
|
|
|
|
* @param {number} [minValue] Contextual information for scaled formatting used in linear scales such as conductor
|
|
|
|
* and plot axes. Specifies the smallest number on the scale.
|
|
|
|
* @param {number} [maxValue] Contextual information for scaled formatting used in linear scales such as conductor
|
|
|
|
* and plot axes. Specifies the largest number on the scale
|
|
|
|
* @param {number} [count] Contextual information for scaled formatting used in linear scales such as conductor
|
|
|
|
* and plot axes. The number of labels on the scale.
|
|
|
|
* @returns {string} the formatted date(s). If multiple values were requested, then an array of
|
|
|
|
* formatted values will be returned. Where a value could not be formatted, `undefined` will be returned at its position
|
|
|
|
* in the array.
|
2016-10-12 20:47:56 +00:00
|
|
|
*/
|
2017-05-04 05:47:56 +00:00
|
|
|
UTCTimeFormat.prototype.format = function (value) {
|
2017-05-01 06:21:13 +00:00
|
|
|
if (arguments.length > 1) {
|
|
|
|
return getScaledFormat(value);
|
2018-06-21 17:50:43 +00:00
|
|
|
} else if (value !== undefined) {
|
2017-05-01 06:21:13 +00:00
|
|
|
return moment.utc(value).format(DATE_FORMAT) + "Z";
|
2018-06-21 17:50:43 +00:00
|
|
|
} else {
|
|
|
|
return value;
|
2016-10-12 20:47:56 +00:00
|
|
|
}
|
2015-10-22 22:20:12 +00:00
|
|
|
};
|
|
|
|
|
2015-10-26 16:45:01 +00:00
|
|
|
UTCTimeFormat.prototype.parse = function (text) {
|
2017-10-27 21:12:44 +00:00
|
|
|
if (typeof text === 'number') {
|
|
|
|
return text;
|
|
|
|
}
|
2015-10-22 22:20:12 +00:00
|
|
|
return moment.utc(text, DATE_FORMATS).valueOf();
|
|
|
|
};
|
|
|
|
|
2015-10-26 16:45:01 +00:00
|
|
|
UTCTimeFormat.prototype.validate = function (text) {
|
2015-10-22 22:20:12 +00:00
|
|
|
return moment.utc(text, DATE_FORMATS).isValid();
|
|
|
|
};
|
|
|
|
|
2015-10-26 16:45:01 +00:00
|
|
|
return UTCTimeFormat;
|
2017-05-01 20:29:14 +00:00
|
|
|
});
|