mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 21:58:13 +00:00
[Time Conductor] Change format handling
Use default format when no format is specified, and throw an error when a specified format is unrecognized, from both date-time field controller and time range controller.
This commit is contained in:
@ -26,7 +26,8 @@ define(
|
||||
function () {
|
||||
'use strict';
|
||||
|
||||
var DEFAULT_FORMAT = 'utc';
|
||||
var UNRECOGNIZED_FORMAT_ERROR =
|
||||
"Unrecognized format for date-time field.";
|
||||
|
||||
/**
|
||||
* Controller to support the date-time entry field.
|
||||
@ -40,12 +41,14 @@ define(
|
||||
* @constructor
|
||||
* @memberof platform/commonUI/general
|
||||
*/
|
||||
function DateTimeFieldController($scope, formatService) {
|
||||
var formatter = formatService.getFormat(DEFAULT_FORMAT);
|
||||
function DateTimeFieldController($scope, formatService, defaultFormat) {
|
||||
var formatter = formatService.getFormat(defaultFormat);
|
||||
|
||||
function setFormat(format) {
|
||||
formatter = formatService.getFormat(format) ||
|
||||
formatService.getFormat(DEFAULT_FORMAT);
|
||||
formatter = formatService.getFormat(format || defaultFormat);
|
||||
if (!formatter) {
|
||||
throw new Error(UNRECOGNIZED_FORMAT_ERROR);
|
||||
}
|
||||
}
|
||||
|
||||
function updateFromModel(value) {
|
||||
|
@ -26,20 +26,22 @@ define(
|
||||
function (moment) {
|
||||
"use strict";
|
||||
|
||||
var DEFAULT_FORMAT = "utc",
|
||||
TICK_SPACING_PX = 150;
|
||||
var TICK_SPACING_PX = 150,
|
||||
UNRECOGNIZED_FORMAT_ERROR =
|
||||
"Unrecognized format for time range control.";
|
||||
|
||||
|
||||
/**
|
||||
* Controller used by the `time-controller` template.
|
||||
* @memberof platform/commonUI/general
|
||||
* @constructor
|
||||
*/
|
||||
function TimeRangeController($scope, formatService, now) {
|
||||
function TimeRangeController($scope, formatService, defaultFormat, now) {
|
||||
var tickCount = 2,
|
||||
innerMinimumSpan = 1000, // 1 second
|
||||
outerMinimumSpan = 1000 * 60 * 60, // 1 hour
|
||||
initialDragValue,
|
||||
formatter = formatService.getFormat(DEFAULT_FORMAT);
|
||||
formatter = formatService.getFormat(defaultFormat);
|
||||
|
||||
function formatTimestamp(ts) {
|
||||
return formatter.format(ts);
|
||||
@ -212,8 +214,11 @@ define(
|
||||
}
|
||||
|
||||
function updateFormat(key) {
|
||||
formatter = formatService.getFormat(key) ||
|
||||
formatService.getFormat(DEFAULT_FORMAT);
|
||||
formatter = formatService.getFormat(key || defaultFormat);
|
||||
|
||||
if (!formatter) {
|
||||
throw new Error(UNRECOGNIZED_FORMAT_ERROR);
|
||||
}
|
||||
|
||||
updateViewForInnerSpanFromModel($scope.ngModel);
|
||||
updateTicks();
|
||||
|
Reference in New Issue
Block a user