/t/upfront/scripts/upfront/upfront-views-editor/breakpoint/collection.js

https://bitbucket.org/matthewselby/wpdev · JavaScript · 104 lines · 78 code · 17 blank · 9 comment · 12 complexity · 06f879a99e92d92c6438b6ee64c51961 MD5 · raw file

  1. (function($){
  2. define([
  3. 'scripts/upfront/upfront-views-editor/breakpoint/model'
  4. ], function ( Model ) {
  5. /**
  6. * For centralized access to breakpoints for updating and watching on changes.
  7. */
  8. return Backbone.Collection.extend({
  9. model: Model,
  10. initialize: function() {
  11. this.on( 'change:active', this.on_change_active, this);
  12. this.on( 'change:enabled', this.on_change_enabled, this);
  13. this.on( 'change:width', this.on_change_width, this);
  14. },
  15. on_change_active: function(changed_model) {
  16. var prev_active_json = this.active ? this.active.toJSON() : false;
  17. this.prev_active = this.active;
  18. this.active = changed_model;
  19. _.each(this.models, function(model) {
  20. if (model.get('id') === changed_model.get('id')) return;
  21. model.set({ 'active': false }, { 'silent': true });
  22. });
  23. // Trigger multiple events so we can have some sort of priority order
  24. Upfront.Events.trigger("upfront:layout_size:change_breakpoint", changed_model.toJSON(), prev_active_json);
  25. Upfront.Events.trigger("upfront:layout_size:change_breakpoint:secondary", changed_model.toJSON(), prev_active_json);
  26. Upfront.Events.trigger("upfront:layout_size:change_breakpoint:tertiary", changed_model.toJSON(), prev_active_json);
  27. //todo This should go somewhere else
  28. if (this.prev_active) {
  29. $('#page').removeClass(this.prev_active.get('id') + '-breakpoint');
  30. }
  31. $('#page').addClass(this.active.get('id') + '-breakpoint');
  32. if (this.active.get('default')) {
  33. $('#page').removeClass('responsive-breakpoint').addClass('default-breakpoint');
  34. }
  35. else {
  36. $('#page').removeClass('default-breakpoint').addClass('responsive-breakpoint');
  37. }
  38. // Final events that run the latest
  39. Upfront.Events.trigger("upfront:layout_size:change_breakpoint:after", changed_model.toJSON(), prev_active_json);
  40. },
  41. on_change_enabled: function(changed_model) {
  42. // If disabled point was active it will disapear and leave UI in broken state.
  43. if (changed_model.get('active') === false) return;
  44. // Activate default breakpoint and fire event.
  45. var default_breakpoint = this.get_default();
  46. default_breakpoint.set({ 'active': true });
  47. },
  48. on_change_width: function(changed_model, new_width) {
  49. Upfront.Events.trigger("upfront:layout_size:viewport_width_change", new_width);
  50. },
  51. sorted_by_width: function() {
  52. return _.sortBy(this.models, function(model) {
  53. return model.get('width');
  54. });
  55. },
  56. get_active: function() {
  57. var active_breakpoint = this.findWhere({ 'active': true });
  58. if (_.isUndefined(active_breakpoint) === false) return active_breakpoint;
  59. active_breakpoint = this.get_default();
  60. active_breakpoint.set({ 'active': true });
  61. return active_breakpoint;
  62. },
  63. get_enabled: function() {
  64. var enabled_breakpoints = this.where({ 'enabled': true });
  65. if (_.isUndefined(enabled_breakpoints) === false && enabled_breakpoints.length > 0) return enabled_breakpoints;
  66. return [this.get_active()];
  67. },
  68. get_default: function() {
  69. var default_breakpoint = this.findWhere({ 'default': true });
  70. if (_.isUndefined(default_breakpoint)) {
  71. default_breakpoint = this.findWhere({ 'id': 'desktop' });
  72. if (default_breakpoint) default_breakpoint.set({ 'default': true });
  73. }
  74. if (_.isUndefined(default_breakpoint)) throw 'Breakpoints are not loaded properly.';
  75. return default_breakpoint;
  76. },
  77. get_unique_id: function() {
  78. var id = 'custom-' + (new Date());
  79. // Ensure id is unique
  80. while (!_.isUndefined(this.findWhere({ 'id': id }))) {
  81. id = 'custom-' + (new Date());
  82. }
  83. return id;
  84. }
  85. });
  86. });
  87. }(jQuery));