blob: c506f851fd3701f352f23947d0c9f97d7fe12aa4 [file] [log] [blame]
Steven Burrows86af4352016-11-16 18:19:12 -06001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Steven Burrows86af4352016-11-16 18:19:12 -06003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- Base UIView class.
19 A base class for UIViews to extend from
20 */
21
22(function () {
23 'use strict';
24
25 function View(options) {
26 if (options && options.el) {
27 this.el = options.el;
28 this.$el = angular.element(this.el);
29 }
30
31 this.initialize.apply(this, arguments);
32 }
33
34 angular.module('ovTopo2')
Steven Burrowsaf96a212016-12-28 12:57:02 +000035 .factory('Topo2UIView', [
36 'FnService',
Steven Burrows86af4352016-11-16 18:19:12 -060037 function (fn) {
38
39 _.extend(View.prototype, {
40 el: null,
41 empty: function () {
42 if (this.$el) {
43 this.$el.empty();
44 }
45 },
46 destroy: function () {
47 // TODO: Unbind Events
48 this.empty();
49 return this;
Steven Burrows1c2a9682017-07-14 16:52:46 +010050 },
Steven Burrows86af4352016-11-16 18:19:12 -060051 });
52
53 View.extend = fn.extend;
54 return View;
Steven Burrows1c2a9682017-07-14 16:52:46 +010055 },
Steven Burrows86af4352016-11-16 18:19:12 -060056 ]);
57
58})();