/wp-content/plugins/ninja-forms-multi-part/assets/js/builder/models/partCollection.js

https://bitbucket.org/djmdigital/total-auto-care-wordpress · JavaScript · 149 lines · 106 code · 22 blank · 21 comment · 30 complexity · b1d5b62e712b6fce73f7788711195e35 MD5 · raw file

  1. define( [ 'models/partModel' ], function( PartModel ) {
  2. var collection = Backbone.Collection.extend( {
  3. model: PartModel,
  4. currentElement: false,
  5. comparator: 'order',
  6. initialize: function( models, options ){
  7. models = models || [];
  8. this.on( 'remove', this.afterRemove );
  9. this.on( 'add', this.afterAdd );
  10. this.maybeChangeBuilderClass( models.length );
  11. },
  12. afterRemove: function( model, collection, options ) {
  13. this.changeCurrentPart( model, collection, options );
  14. this.maybeChangeBuilderClass( model, collection, options );
  15. /*
  16. * If our drawer is open, close it.
  17. */
  18. nfRadio.channel( 'app' ).request( 'close:drawer' );
  19. },
  20. afterAdd: function( model ) {
  21. this.setElement( model );
  22. this.maybeChangeBuilderClass( model );
  23. },
  24. maybeChangeBuilderClass: function( count, collection, options ) {
  25. if ( true === count instanceof Backbone.Model ) {
  26. count = this.length;
  27. }
  28. this.changeBuilderClass( 1 < count );
  29. },
  30. changeBuilderClass: function( hasParts ) {
  31. var builderEl = nfRadio.channel( 'app' ).request( 'get:builderEl' );
  32. if ( hasParts ) {
  33. jQuery( builderEl ).addClass( 'nf-has-parts' );
  34. } else {
  35. jQuery( builderEl ).removeClass( 'nf-has-parts' );
  36. }
  37. },
  38. changeCurrentPart: function( model, collection, options ) {
  39. /*
  40. * When we remove the current part, change the current part in our collection.
  41. *
  42. * TODO: Find a way to pass index to has previous or has next for proper testing.
  43. * Since the model has been removed, it will always return a -1.
  44. */
  45. if ( this.getElement() == model ) {
  46. if ( 0 == options.index ) {
  47. this.setElement( this.at( 0 ) );
  48. } else {
  49. this.setElement( this.at( options.index - 1 ) );
  50. }
  51. } else if ( 1 == this.length ) {
  52. this.setElement( this.at( 0 ) );
  53. }
  54. },
  55. getElement: function() {
  56. /*
  57. * If we haven't set an element yet, set it to the first one.
  58. */
  59. if ( ! this.currentElement ) {
  60. this.setElement( this.at( 0 ), true );
  61. }
  62. return this.currentElement;
  63. },
  64. setElement: function( model, silent ) {
  65. if ( model == this.currentElement ) return;
  66. silent = silent || false;
  67. this.previousElement = this.currentElement;
  68. this.currentElement = model;
  69. if ( ! silent ) {
  70. /*
  71. * If we are editing a part and we change parts, update the data being displayed in the drawer to match the new part.
  72. */
  73. var currentDrawer = nfRadio.channel( 'app' ).request( 'get:currentDrawer' );
  74. if ( currentDrawer && 'editSettings' == currentDrawer.get( 'id' ) ) {
  75. var settingGroupCollection = nfRadio.channel( 'mp' ).request( 'get:settingGroupCollection' );
  76. nfRadio.channel( 'app' ).request( 'open:drawer', 'editSettings', { model: model, groupCollection: settingGroupCollection } );
  77. }
  78. this.trigger( 'change:part', this );
  79. }
  80. },
  81. next: function (){
  82. /*
  83. * If this isn't the last part, move forward.
  84. */
  85. if ( this.hasNext() ) {
  86. this.setElement( this.at( this.indexOf( this.getElement() ) + 1 ) );
  87. }
  88. return this;
  89. },
  90. previous: function() {
  91. /*
  92. * If this isn't the first part, move backward.
  93. */
  94. if ( this.hasPrevious() ) {
  95. this.setElement( this.at( this.indexOf( this.getElement() ) - 1 ) );
  96. }
  97. return this;
  98. },
  99. hasNext: function() {
  100. if ( 0 == this.length ) return false;
  101. return this.length - 1 != this.indexOf( this.getElement() );
  102. },
  103. hasPrevious: function() {
  104. if ( 0 == this.length ) return false;
  105. return 0 != this.indexOf( this.getElement() );
  106. },
  107. getFormContentData: function() {
  108. return this.getElement().get( 'formContentData' );
  109. },
  110. updateOrder: function() {
  111. this.each( function( model, index ) {
  112. model.set( 'order', index );
  113. } );
  114. this.sort();
  115. },
  116. append: function( model ) {
  117. var order = _.max( this.pluck( 'order' ) ) + 1;
  118. if( model instanceof Backbone.Model ) {
  119. model.set( 'order', order );
  120. } else {
  121. model.order = order;
  122. }
  123. return this.add( model );
  124. }
  125. } );
  126. return collection;
  127. } );