/src/main/resources/assets/app/scripts/collections/base_jobs.js

https://gitlab.com/jack/chronos · JavaScript · 191 lines · 120 code · 30 blank · 41 comment · 14 complexity · 1090aad39e57486f080e56824fd697d4 MD5 · raw file

  1. /**
  2. * Base Jobs Collection
  3. *
  4. */
  5. define([
  6. 'backbone',
  7. 'underscore',
  8. 'models/dependent_job',
  9. 'models/scheduled_job',
  10. 'components/functor'
  11. ], function(Backbone,
  12. _,
  13. DependentJobModel,
  14. ScheduledJobModel,
  15. Functor) {
  16. var BaseJobsCollection;
  17. BaseJobsCollection = Backbone.Collection.extend({
  18. model: function(attributes, options) {
  19. if (attributes.parents && attributes.parents.length) {
  20. return new DependentJobModel(attributes, options);
  21. } else {
  22. return new ScheduledJobModel(attributes, options);
  23. }
  24. },
  25. initialize: function() {
  26. this.listenTo(this, {
  27. add: this.parseSchedule,
  28. reset: this.parseAllSchedules,
  29. 'toggle:count': this.toggleCount,
  30. 'toggle:name': this.toggleName
  31. });
  32. },
  33. parseAllSchedules: function(collection) {
  34. collection.each(this.parseSchedule, this);
  35. },
  36. parseSchedule: function(model) {
  37. model.parseSchedule();
  38. return this;
  39. },
  40. comparator: function(job) {
  41. return job.getInvocationCount();
  42. },
  43. setComparator: function(fn) {
  44. this.comparator = fn;
  45. this.sort();
  46. },
  47. makeComparatorByAttribute: function(attributeName, reverse) {
  48. return function(model1, model2) {
  49. var val1 = model1.get(attributeName).toString(),
  50. val2 = model2.get(attributeName).toString(),
  51. compareVal = val1.localeCompare(val2),
  52. retVal = compareVal / Math.abs(compareVal);
  53. if ((compareVal === 0) || isNaN(compareVal)) {
  54. return 0;
  55. } else {
  56. return reverse ? (-1 * retVal) : retVal;
  57. }
  58. };
  59. },
  60. toggleCount: function(countType) {
  61. if (countType === 'success') {
  62. this.toggleCountSuccess();
  63. } else if (countType === 'error') {
  64. this.toggleCountError();
  65. }
  66. },
  67. toggleCountSuccess: function() {
  68. var reverse = this.countSuccessDirection === 'up'
  69. this.setComparator(this.makeComparatorByAttribute('successCount', reverse));
  70. this.countSuccessDirection = reverse ? 'down' : 'up';
  71. },
  72. toggleCountError: function() {
  73. var reverse = this.countErrorDirection === 'up'
  74. this.setComparator(this.makeComparatorByAttribute('errorCount', reverse));
  75. this.countErrorDirection = reverse ? 'down' : 'up';
  76. },
  77. toggleName: function() {
  78. var reverse = this.sortNameDirection === 'up';
  79. this.setComparator(this.makeComparatorByAttribute('displayName', reverse));
  80. this.sortNameDirection = reverse ? 'down' : 'up';
  81. },
  82. toggleLastRun: function() {
  83. var reverse = this.sortLastRunDirection === 'up';
  84. this.setComparator(this.makeComparatorByAttribute('lastRunStatus', reverse));
  85. this.sortLastRunDirection = reverse ? 'down' : 'up';
  86. },
  87. reverse: function() {
  88. this.models.reverse();
  89. this.trigger('filter');
  90. },
  91. /**
  92. * Keys: dayYears
  93. * Values: counts
  94. */
  95. counts: {},
  96. /**
  97. * count increments the count of jobs
  98. * on a given date
  99. *
  100. * @params {Int} dayYear
  101. * Equals day [0,366] + year (2012).
  102. * See app.Helpers.dayYear
  103. * @returns this
  104. */
  105. count: function(dayYear) {
  106. var before = this.counts[dayYear] || 0;
  107. this.counts[dayYear] = before + 1;
  108. return this;
  109. },
  110. /**
  111. * getCounts returns an array of the
  112. * count values.
  113. *
  114. * @returns {Array}
  115. */
  116. getCounts: function() {
  117. return _.values(this.counts);
  118. },
  119. /**
  120. * getDates returns an array of dates.
  121. * Strips undefineds from the array.
  122. *
  123. * @returns {Array}
  124. */
  125. getDates: function() {
  126. var dates = this.pluck('startDate');
  127. return _.reject(dates, function(d) {
  128. return _.isUndefined(d);
  129. });
  130. },
  131. /**
  132. * getRelatedTo returns an object literal with the IDs of
  133. * related jobs as keys and booleans as values (always true).
  134. *
  135. * @param {String} jobName
  136. * Name/ID of job to get related jobs for.
  137. * @param {Number} depth
  138. * Depth of `jobName job`'s parents to look through.
  139. * Default: 1
  140. *
  141. * @return {Object}
  142. */
  143. getRelatedTo: function(jobName, depth) {
  144. var targetJob = this.get(jobName),
  145. curJobs = [targetJob];
  146. depth || (depth === 0 ? depth : (depth = 1));
  147. return this.reduce(function(memo, job) {
  148. var name = job.get('name'),
  149. parents = job.get('parents'),
  150. isTargetJob = (name === jobName),
  151. targetIsParent = _.contains(parents, jobName);
  152. if (isTargetJob || targetIsParent || memo[name]) {
  153. var list = parents.concat(name);
  154. _.extend(memo, _.object(list, _.times(list.length, Functor(true))));
  155. }
  156. return memo;
  157. }, {});
  158. }
  159. });
  160. return BaseJobsCollection;
  161. });