aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view')
-rw-r--r--framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.css48
-rw-r--r--framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.html32
-rw-r--r--framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.js69
3 files changed, 0 insertions, 149 deletions
diff --git a/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.css b/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.css
deleted file mode 100644
index ffeac0aa..00000000
--- a/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.css
+++ /dev/null
@@ -1,48 +0,0 @@
-/* css for sample app custom view */
-
-#ov-sample-custom {
- padding: 20px;
-}
-.light #ov-sample-custom {
- color: navy;
-}
-.dark #ov-sample-custom {
- color: #88f;
-}
-
-#ov-sample-custom .button-panel {
- margin: 10px;
- width: 200px;
-}
-
-.light #ov-sample-custom .button-panel {
- background-color: #ccf;
-}
-.dark #ov-sample-custom .button-panel {
- background-color: #444;
-}
-
-#ov-sample-custom .my-button {
- cursor: pointer;
- padding: 4px;
- text-align: center;
-}
-
-.light #ov-sample-custom .my-button {
- color: white;
- background-color: #99d;
-}
-.dark #ov-sample-custom .my-button {
- color: black;
- background-color: #aaa;
-}
-
-#ov-sample-custom .number {
- font-size: 140%;
- text-align: right;
-}
-
-#ov-sample-custom .quote {
- margin: 10px 20px;
- font-style: italic;
-} \ No newline at end of file
diff --git a/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.html b/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.html
deleted file mode 100644
index d3d79a10..00000000
--- a/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!-- partial HTML -->
-<div id="ov-sample-custom">
- <div class="button-panel">
- <div class="my-button" ng-click="getData()">
- Fetch Data
- </div>
- </div>
-
- <div class="data-panel">
- <table>
- <tr>
- <td> Number </td>
- <td class="number"> {{data.number}} </td>
- </tr>
- <tr>
- <td> Square </td>
- <td class="number"> {{data.square}} </td>
- </tr>
- <tr>
- <td> Cube </td>
- <td class="number"> {{data.cube}} </td>
- </tr>
- </table>
-
- <p>
- A message from our sponsors:
- </p>
- <p>
- <span class="quote"> {{data.message}} </span>
- </p>
- </div>
-</div>
diff --git a/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.js b/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.js
deleted file mode 100644
index 21058640..00000000
--- a/framework/src/onos/tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/resources/app/view/sampleCustom/sampleCustom.js
+++ /dev/null
@@ -1,69 +0,0 @@
-// js for sample app custom view
-(function () {
- 'use strict';
-
- // injected refs
- var $log, $scope, wss, ks;
-
- // constants
- var dataReq = 'sampleCustomDataRequest',
- dataResp = 'sampleCustomDataResponse';
-
- function addKeyBindings() {
- var map = {
- space: [getData, 'Fetch data from server'],
-
- _helpFormat: [
- ['space']
- ]
- };
-
- ks.keyBindings(map);
- }
-
- function getData() {
- wss.sendEvent(dataReq);
- }
-
- function respDataCb(data) {
- $scope.data = data;
- $scope.$apply();
- }
-
-
- angular.module('ovSampleCustom', [])
- .controller('OvSampleCustomCtrl',
- ['$log', '$scope', 'WebSocketService', 'KeyService',
-
- function (_$log_, _$scope_, _wss_, _ks_) {
- $log = _$log_;
- $scope = _$scope_;
- wss = _wss_;
- ks = _ks_;
-
- var handlers = {};
- $scope.data = {};
-
- // data response handler
- handlers[dataResp] = respDataCb;
- wss.bindHandlers(handlers);
-
- addKeyBindings();
-
- // custom click handler
- $scope.getData = getData;
-
- // get data the first time...
- getData();
-
- // cleanup
- $scope.$on('$destroy', function () {
- wss.unbindHandlers(handlers);
- ks.unbindKeys();
- $log.log('OvSampleCustomCtrl has been destroyed');
- });
-
- $log.log('OvSampleCustomCtrl has been created');
- }]);
-
-}());