2016-01-15 01:08:19 +00:00
/ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2018-05-14 22:46:17 +00:00
* Open MCT , Copyright ( c ) 2014 - 2018 , United States Government
2016-01-15 01:08:19 +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
2016-01-15 01:08:19 +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
2016-01-15 01:08:19 +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 ( [
2017-05-29 00:21:52 +00:00
"moment-timezone" ,
2016-01-15 01:08:19 +00:00
"./src/indicators/ClockIndicator" ,
2017-10-21 01:05:35 +00:00
"./src/indicators/FollowIndicator" ,
2016-01-15 01:08:19 +00:00
"./src/services/TickerService" ,
2017-10-21 01:05:35 +00:00
"./src/services/TimerService" ,
2016-01-15 01:08:19 +00:00
"./src/controllers/ClockController" ,
"./src/controllers/TimerController" ,
"./src/controllers/RefreshingController" ,
2017-10-21 01:05:35 +00:00
"./src/actions/FollowTimerAction" ,
2016-01-15 01:08:19 +00:00
"./src/actions/StartTimerAction" ,
"./src/actions/RestartTimerAction" ,
2017-01-14 22:42:44 +00:00
"./src/actions/StopTimerAction" ,
2017-01-14 22:43:20 +00:00
"./src/actions/PauseTimerAction" ,
2016-02-26 21:07:50 +00:00
"text!./res/templates/clock.html" ,
"text!./res/templates/timer.html" ,
2016-01-15 01:08:19 +00:00
'legacyRegistry'
] , function (
2017-05-29 00:21:52 +00:00
MomentTimezone ,
2016-01-15 01:08:19 +00:00
ClockIndicator ,
2017-10-21 01:05:35 +00:00
FollowIndicator ,
2016-01-15 01:08:19 +00:00
TickerService ,
2017-10-21 01:05:35 +00:00
TimerService ,
2016-01-15 01:08:19 +00:00
ClockController ,
TimerController ,
RefreshingController ,
2017-10-21 01:05:35 +00:00
FollowTimerAction ,
2016-01-15 01:08:19 +00:00
StartTimerAction ,
RestartTimerAction ,
2017-01-14 22:42:44 +00:00
StopTimerAction ,
2017-01-14 22:43:20 +00:00
PauseTimerAction ,
2016-02-26 21:07:50 +00:00
clockTemplate ,
timerTemplate ,
2016-01-15 01:08:19 +00:00
legacyRegistry
) {
legacyRegistry . register ( "platform/features/clock" , {
"name" : "Clocks/Timers" ,
"descriptions" : "Domain objects for displaying current & relative times." ,
"configuration" : {
"paths" : {
"moment-duration-format" : "moment-duration-format"
} ,
"shim" : {
"moment-duration-format" : {
"deps" : [
"moment"
]
}
}
} ,
"extensions" : {
"constants" : [
{
"key" : "CLOCK_INDICATOR_FORMAT" ,
"value" : "YYYY/MM/DD HH:mm:ss"
}
] ,
"indicators" : [
{
"implementation" : ClockIndicator ,
"depends" : [
"tickerService" ,
"CLOCK_INDICATOR_FORMAT"
] ,
"priority" : "preferred"
2017-10-21 01:05:35 +00:00
} ,
{
"implementation" : FollowIndicator ,
"depends" : [ "timerService" ] ,
"priority" : "fallback"
2016-01-15 01:08:19 +00:00
}
] ,
"services" : [
{
"key" : "tickerService" ,
"implementation" : TickerService ,
"depends" : [
"$timeout" ,
"now"
]
2017-10-21 01:05:35 +00:00
} ,
{
"key" : "timerService" ,
"implementation" : TimerService ,
"depends" : [ "openmct" ]
2016-01-15 01:08:19 +00:00
}
] ,
"controllers" : [
{
"key" : "ClockController" ,
"implementation" : ClockController ,
"depends" : [
"$scope" ,
"tickerService"
]
} ,
{
"key" : "TimerController" ,
"implementation" : TimerController ,
"depends" : [
"$scope" ,
"$window" ,
"now"
]
} ,
{
"key" : "RefreshingController" ,
"implementation" : RefreshingController ,
"depends" : [
"$scope" ,
"tickerService"
]
}
] ,
"views" : [
{
"key" : "clock" ,
"type" : "clock" ,
"editable" : false ,
2016-02-26 21:07:50 +00:00
"template" : clockTemplate
2016-01-15 01:08:19 +00:00
} ,
{
"key" : "timer" ,
"type" : "timer" ,
"editable" : false ,
2016-02-26 21:07:50 +00:00
"template" : timerTemplate
2016-01-15 01:08:19 +00:00
}
] ,
"actions" : [
2017-10-21 01:05:35 +00:00
{
"key" : "timer.follow" ,
"implementation" : FollowTimerAction ,
"depends" : [ "timerService" ] ,
"category" : "contextual" ,
"name" : "Follow Timer" ,
"cssClass" : "icon-clock" ,
"priority" : "optional"
} ,
2016-01-15 01:08:19 +00:00
{
"key" : "timer.start" ,
"implementation" : StartTimerAction ,
"depends" : [
"now"
] ,
"category" : "contextual" ,
"name" : "Start" ,
2017-02-15 23:02:39 +00:00
"cssClass" : "icon-play" ,
2016-01-15 01:08:19 +00:00
"priority" : "preferred"
} ,
2017-01-14 22:43:20 +00:00
{
"key" : "timer.pause" ,
"implementation" : PauseTimerAction ,
"depends" : [
"now"
] ,
"category" : "contextual" ,
"name" : "Pause" ,
2017-05-03 23:30:06 +00:00
"cssClass" : "icon-pause" ,
2017-01-14 22:43:20 +00:00
"priority" : "preferred"
} ,
{
2017-01-18 13:08:54 +00:00
"key" : "timer.restart" ,
"implementation" : RestartTimerAction ,
2017-01-14 22:43:20 +00:00
"depends" : [
"now"
] ,
"category" : "contextual" ,
2017-01-18 13:08:54 +00:00
"name" : "Restart at 0" ,
2017-02-15 23:02:39 +00:00
"cssClass" : "icon-refresh" ,
2017-01-14 22:43:20 +00:00
"priority" : "preferred"
} ,
2017-01-14 22:42:44 +00:00
{
"key" : "timer.stop" ,
"implementation" : StopTimerAction ,
"depends" : [
"now"
] ,
"category" : "contextual" ,
"name" : "Stop" ,
2017-05-03 23:30:06 +00:00
"cssClass" : "icon-box" ,
2017-01-14 22:42:44 +00:00
"priority" : "preferred"
2016-01-15 01:08:19 +00:00
}
] ,
"types" : [
{
"key" : "clock" ,
"name" : "Clock" ,
2017-02-15 23:02:39 +00:00
"cssClass" : "icon-clock" ,
2016-03-24 02:04:32 +00:00
"description" : "A UTC-based clock that supports a variety of display formats. Clocks can be added to Display Layouts." ,
2016-03-24 19:05:10 +00:00
"priority" : 101 ,
2016-01-15 01:08:19 +00:00
"features" : [
"creation"
] ,
"properties" : [
{
"key" : "clockFormat" ,
"name" : "Display Format" ,
"control" : "composite" ,
"items" : [
{
"control" : "select" ,
"options" : [
{
"value" : "YYYY/MM/DD hh:mm:ss" ,
"name" : "YYYY/MM/DD hh:mm:ss"
} ,
{
"value" : "YYYY/DDD hh:mm:ss" ,
"name" : "YYYY/DDD hh:mm:ss"
} ,
{
"value" : "hh:mm:ss" ,
"name" : "hh:mm:ss"
}
2016-03-16 21:33:23 +00:00
] ,
2017-02-15 23:02:39 +00:00
"cssClass" : "l-inline"
2016-01-15 01:08:19 +00:00
} ,
{
"control" : "select" ,
"options" : [
{
"value" : "clock12" ,
"name" : "12hr"
} ,
{
"value" : "clock24" ,
"name" : "24hr"
}
2016-03-16 21:33:23 +00:00
] ,
2017-02-15 23:02:39 +00:00
"cssClass" : "l-inline"
2016-01-15 01:08:19 +00:00
}
]
2017-05-29 00:21:52 +00:00
} ,
{
"key" : "timezone" ,
"name" : "Timezone" ,
"control" : "autocomplete" ,
"options" : MomentTimezone . tz . names ( )
2016-01-15 01:08:19 +00:00
}
] ,
"model" : {
"clockFormat" : [
"YYYY/MM/DD hh:mm:ss" ,
"clock12"
2017-05-29 00:21:52 +00:00
] ,
"timezone" : "UTC"
2016-01-15 01:08:19 +00:00
}
} ,
{
"key" : "timer" ,
"name" : "Timer" ,
2017-02-15 23:02:39 +00:00
"cssClass" : "icon-timer" ,
2016-03-24 02:04:32 +00:00
"description" : "A timer that counts up or down to a datetime. Timers can be started, stopped and reset whenever needed, and support a variety of display formats. Each Timer displays the same value to all users. Timers can be added to Display Layouts." ,
2016-03-24 19:05:10 +00:00
"priority" : 100 ,
2016-01-15 01:08:19 +00:00
"features" : [
"creation"
] ,
"properties" : [
{
"key" : "timestamp" ,
"control" : "datetime" ,
"name" : "Target"
} ,
{
"key" : "timerFormat" ,
"control" : "select" ,
2016-03-16 21:33:23 +00:00
"name" : "Display Format" ,
2016-01-15 01:08:19 +00:00
"options" : [
{
"value" : "long" ,
"name" : "DDD hh:mm:ss"
} ,
{
"value" : "short" ,
"name" : "hh:mm:ss"
}
]
}
] ,
"model" : {
"timerFormat" : "DDD hh:mm:ss"
}
}
] ,
"licenses" : [
{
"name" : "moment-duration-format" ,
"version" : "1.3.0" ,
"author" : "John Madhavan-Reese" ,
"description" : "Duration parsing/formatting" ,
"website" : "https://github.com/jsmreese/moment-duration-format" ,
"copyright" : "Copyright 2014 John Madhavan-Reese" ,
"license" : "license-mit" ,
"link" : "https://github.com/jsmreese/moment-duration-format/blob/master/LICENSE"
}
]
}
} ) ;
} ) ;