app.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. (function () {
  2. 'use strict';
  3. angular
  4. .module('fehlerberichtApp', [
  5. 'ngAnimate',
  6. 'ngCookies',
  7. 'ngResource',
  8. 'ngRoute',
  9. 'ngSanitize',
  10. 'ngTouch'
  11. ])
  12. .directive('tabs', function () {
  13. return {
  14. restrict: 'A',
  15. transclude: true,
  16. scope: { style: "@tabs" },
  17. controller: [ "$scope", function ($scope) {
  18. $scope.panels = [];
  19. $scope.select = function (i) {
  20. angular.forEach($scope.panels, function (p) {
  21. p.selected = false;
  22. });
  23. $scope.panels[i].selected = true;
  24. };
  25. this.addPanel = function (panel) {
  26. if ($scope.panels.length === 0) {
  27. panel.selected = true;
  28. }
  29. $scope.panels.push(panel);
  30. };
  31. }],
  32. template: '<div class="tabbable">' +
  33. '<ul class="nav nav-{{style||\'tabs\'}}">' +
  34. '<li ng-repeat="panel in panels" ng-class="{active:panel.selected}">' +
  35. '<a href="" ng-click="select($index)">{{panel.title}}</a>' +
  36. '</li>' +
  37. '</ul>' +
  38. '<div class="tab-content" ng-transclude></div>' +
  39. '</div>',
  40. replace: true
  41. };
  42. })
  43. .directive('panel', function () {
  44. return {
  45. require: '^tabs',
  46. restrict: 'A',
  47. transclude: true,
  48. scope: { title: "@panel" },
  49. link: function (scope, element, attrs, tabsCtrl) {
  50. tabsCtrl.addPanel(scope);
  51. },
  52. template: '<div class="tab-panel" ng-show="selected" ng-transclude>' +
  53. '</div>',
  54. replace: true
  55. };
  56. })
  57. .directive('popover', function() {
  58. return {
  59. restrict: 'EA',
  60. link: function(scope, element, attrs){
  61. $(element).popover({
  62. html : true,
  63. content: function() {
  64. return scope.getCommentsInfo($(element).attr('data-popover'),$(element).attr('data-kunde'),$(element).attr('data-datum'));
  65. }
  66. });
  67. $(element).hover(function(){
  68. $(element).popover('show');
  69. }, function(){
  70. $(element).popover('hide');
  71. });
  72. }
  73. };
  74. })
  75. .config(function ($routeProvider) {
  76. $routeProvider
  77. .when('/overview/:customer/:date/:status', {
  78. templateUrl: 'views/overview.html',
  79. controller: 'OverviewCtrl'
  80. })
  81. .when('/tickets', {
  82. templateUrl: 'views/tickets.html',
  83. controller: 'TicketsCtrl'
  84. })
  85. .when('/calendar', {
  86. templateUrl: 'views/calendar.html',
  87. controller: 'CalendarCtrl'
  88. })
  89. .when('/customers', {
  90. templateUrl: 'views/customers.html',
  91. controller: 'CustomersCtrl'
  92. })
  93. .when('/stats/:customer', {
  94. templateUrl: 'views/stats.html',
  95. controller: 'StatsCtrl'
  96. })
  97. .when('/config/:customer/:date', {
  98. templateUrl: 'views/config.html',
  99. controller: 'ConfigCtrl'
  100. })
  101. .when('/config', {
  102. templateUrl: 'views/config.html',
  103. controller: 'ConfigCtrl'
  104. })
  105. .when('/changelog', {
  106. templateUrl: 'views/changelog.html',
  107. controller: 'ChangelogCtrl'
  108. })
  109. .otherwise({
  110. redirectTo: '/overview/all/today/errors'
  111. });
  112. });
  113. moment.locale('de', {
  114. calendar: {
  115. lastDay: "[Gestern]",
  116. lastWeek: "[letzten] dddd",
  117. nextDay: "[Morgen]",
  118. nextWeek: "dddd",
  119. sameDay: "[Heute]",
  120. sameElse: "L"
  121. }
  122. });
  123. })();