/wp-content/plugins/ninja-forms-style/layouts/assets/js/builder/models/cellCollection.js

https://bitbucket.org/djmdigital/total-auto-care-wordpress · JavaScript · 57 lines · 32 code · 7 blank · 18 comment · 1 complexity · a0167b657ce36568ca2c81036345f4dc MD5 · raw file

  1. /**
  2. * Holds all of our cell models.
  3. *
  4. * @package Ninja Forms Layouts
  5. * @subpackage Fields
  6. * @copyright (c) 2016 WP Ninjas
  7. * @since 3.0
  8. */
  9. define( ['models/cellModel'], function( cellModel ) {
  10. var collection = Backbone.Collection.extend( {
  11. model: cellModel,
  12. comparator: 'order',
  13. initialize: function( models, options ) {
  14. this.options = options;
  15. this.on( 'change:fields', this.updateRowModel, this );
  16. this.on( 'add', this.addCell, this );
  17. this.on( 'remove', this.updateCellWidths, this );
  18. },
  19. addCell: function() {
  20. this.updateCellWidths();
  21. this.updateRowModel();
  22. this.options.rowModel.trigger( 'add:cell', this.options.rowModel );
  23. },
  24. updateRowModel: function() {
  25. this.options.rowModel.set( 'cells', this );
  26. this.options.rowModel.trigger( 'change:cells', this.options.rowModel );
  27. },
  28. /**
  29. * Update our cell widths.
  30. * This is called whenever we add or remove a cell from our cell collection.
  31. *
  32. * @since 3.0
  33. * @param Backbone.Model cellModel
  34. * @return void
  35. */
  36. updateCellWidths: function( cellModel ) {
  37. // Calculate a new width for our cells.
  38. var width = Math.round( 100 / this.models.length );
  39. if ( 100 < width * this.models.length ) {
  40. width = Math.floor( 100 / this.models.length );
  41. }
  42. // Set our width for each cell.
  43. _.each( this.models, function( cell ) {
  44. cell.set( 'width', width );
  45. } );
  46. this.sort();
  47. }
  48. } );
  49. return collection;
  50. } );