adding ISO Time Formatter to be used with openmct-yamcs

This commit is contained in:
Jamie Vigliotta 2020-07-27 10:32:22 -07:00
parent de6eceb98b
commit 9198effafe
2 changed files with 69 additions and 0 deletions

View File

@ -23,10 +23,12 @@
define([ define([
"./src/FormatProvider", "./src/FormatProvider",
"./src/UTCTimeFormat", "./src/UTCTimeFormat",
"./src/ISOTimeFormat",
"./src/DurationFormat" "./src/DurationFormat"
], function ( ], function (
FormatProvider, FormatProvider,
UTCTimeFormat, UTCTimeFormat,
ISOTimeFormat,
DurationFormat DurationFormat
) { ) {
@ -51,6 +53,10 @@ define([
"key": "utc", "key": "utc",
"implementation": UTCTimeFormat "implementation": UTCTimeFormat
}, },
{
"key": "iso",
"implementation": ISOTimeFormat
},
{ {
"key": "duration", "key": "duration",
"implementation": DurationFormat "implementation": DurationFormat

View File

@ -0,0 +1,63 @@
/*****************************************************************************
* Open MCT, Copyright (c) 2014-2016, United States Government
* as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the
* "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.
*
* Open MCT includes source code licensed under additional open source
* 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([], function () {
/**
* Formatter for ISO timestamps. Interprets numeric values as
* milliseconds since the start of 1970.
*
* @implements {Format}
* @constructor
* @memberof platform/commonUI/formats
*/
function ISOTimeFormat() {
this.key = "iso";
}
/**
* @param {number} value The value to format.
* @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.
*/
ISOTimeFormat.prototype.format = function (value) {
if (value !== undefined) {
return new Date(value).toISOString();
} else {
return value;
}
};
ISOTimeFormat.prototype.parse = function (text) {
if (typeof text === 'number' || text === undefined) {
return text;
}
return Date.parse(text);
};
ISOTimeFormat.prototype.validate = function (text) {
return !isNaN(Date.parse(text));
};
return ISOTimeFormat;
});