blob: 3e4840d5d772d487b007c91d1ae893c22f0ae747 [file] [log] [blame]
/**
* LUNA - Responsive Admin Theme
*
*/
/* tslint:disable */
import * as $ from 'jquery';
import {IXosKeyboardShortcutService} from '../../core/services/keyboard-shortcut';
export interface IXosNavHandlerService {
minimalize: () => void;
}
export class XosNavHandlerService implements IXosNavHandlerService {
static $inject = ['XosKeyboardShortcut'];
constructor(
private XosKeyboardShortcut: IXosKeyboardShortcutService
) {
this.XosKeyboardShortcut.registerKeyBinding({
key: 'n',
description: 'Toggle Navigation',
cb: this.minimalize,
}, 'global');
}
public minimalize() {
$("body").toggleClass("nav-toggle");
}
}
/**
* minimalizaSidebar - Directive for minimalize sidebar
*/
export function minimalizaMenu() {
return {
restrict: 'EA',
template: '<div class="left-nav-toggle"><a href ng-click="minimalize()"><i class="stroke-hamburgermenu"></i> </a>',
controller: function ($scope, XosNavHandler: IXosNavHandlerService) {
$scope.minimalize = function () {
XosNavHandler.minimalize();
};
}
};
}
/**
* sparkline - Directive for Sparkline chart
*/
// export function sparkline() {
// return {
// restrict: 'A',
// scope: {
// sparkData: '=',
// sparkOptions: '=',
// },
// link: function (scope, element, attrs) {
// scope.$watch(scope.sparkData, function () {
// render();
// });
// scope.$watch(scope.sparkOptions, function(){
// render();
// });
// var render = function () {
// $(element).sparkline(scope.sparkData, scope.sparkOptions);
// };
// }
// }
// }
/**
* panelTools - Directive for panel tools elements in right corner of panel
*/
export function panelTools($timeout) {
return {
restrict: 'A',
scope: true,
templateUrl: 'views/common/panel_tools.html',
controller: function ($scope, $element) {
// Function for collapse ibox
$scope.showhide = function () {
var hpanel = $element.closest('div.panel');
var icon = $element.find('i:first');
var body = hpanel.find('div.panel-body');
var footer = hpanel.find('div.panel-footer');
body.slideToggle(300);
footer.slideToggle(200);
// Toggle icon from up to down
icon.toggleClass('fa-chevron-up').toggleClass('fa-chevron-down');
hpanel.toggleClass('').toggleClass('panel-collapse');
$timeout(function () {
hpanel.resize();
hpanel.find('[id^=map-]').resize();
}, 50);
};
// Function for close ibox
$scope.closebox = function () {
var hpanel = $element.closest('div.panel');
hpanel.remove();
}
}
};
};