blob: d169a7cbefc1d4eda2088602a11033928e85718e [file] [log] [blame]
/*
* Copyright 2014,2015 Open Networking Laboratory
*
* 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.
*/
/*
ONOS GUI -- Sample View Module
*/
(function () {
'use strict';
var $log, tbs, flash,
sampleDiv;
function btnFn() {
flash.flash('Hi there friends!');
}
function togFn(display) {
if (display) { sampleDiv.style('display', 'block'); }
else { sampleDiv.style('display', 'none'); }
}
angular.module('ovSample', ['onosUtil'])
.controller('OvSampleCtrl', ['$log', 'ToolbarService', 'FlashService',
function (_$log_, _tbs_, _flash_) {
var self = this;
$log = _$log_;
tbs = _tbs_;
flash = _flash_;
self.message = 'Hey there folks!';
sampleDiv = d3.select('#ov-sample')
.append('div')
.text('Look at me!')
.style({
'display': 'none',
'color': 'rgb(204, 89, 81)',
'font-size': '20pt'
});
var toolbar = tbs.createToolbar('sample'),
rset = [{ gid: 'switch', cb: function () {}},
{ gid: 'bird', cb: function () {}}];
toolbar.addButton('hello-btn', 'crown', btnFn);
toolbar.addToggle('sample-tog', 'chain', false, togFn);
toolbar.addSeparator();
toolbar.addRadioSet('some-rad', rset);
toolbar.hide();
$log.log('OvSampleCtrl has been created');
}]);
}());