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

https://bitbucket.org/djmdigital/total-auto-care-wordpress · JavaScript · 85 lines · 45 code · 12 blank · 28 comment · 9 complexity · d7d1719950558da67ef34e10f5092e13 MD5 · raw file

  1. /**
  2. * Holds all of our cell field models.
  3. *
  4. * @package Ninja Forms Layouts
  5. * @subpackage Fields
  6. * @copyright (c) 2016 WP Ninjas
  7. * @since 3.0
  8. */
  9. define( [], function( ) {
  10. var collection = Backbone.Collection.extend( {
  11. comparator: 'cellOrder',
  12. initialize: function( models, options ) {
  13. this.options = options;
  14. // Listen to requests to remove a field from a collection.
  15. this.listenTo( nfRadio.channel( 'layouts-cell' ), 'remove:field', this.removeField );
  16. // We've been passed the cellModel to which this collection belongs.
  17. // this.options.cellModel = options.cellModel;
  18. _.each( models, function( model ) {
  19. if ( 'undefined' == typeof model ) return;
  20. model.set( 'cellcid', this.options.cellModel.cid, { silent: true } );
  21. }, this );
  22. // When we add or remove a field from this collection, update our cellModel.
  23. this.on( 'add', this.addField, this );
  24. this.on( 'remove', this.updateCellModel, this );
  25. var fieldCollection = nfRadio.channel( 'fields' ).request( 'get:collection' );
  26. // When we remove a model from our main field collection, make sure it's removed from this collection as well.
  27. fieldCollection.on( 'remove', this.removeModel, this );
  28. // When we add a model to our main field collection, add it to this collection if its cid matches
  29. fieldCollection.on( 'add', this.addModel, this );
  30. },
  31. /**
  32. * Add a field to our cell collection
  33. * @since 3.0
  34. */
  35. addField: function( model ) {
  36. model.set( 'cellcid', this.options.cellModel.cid, { silent: true } );
  37. if ( 1 == this.options.cellModel.collection.length ) {
  38. var order = this.options.cellModel.collection.options.rowModel.get( 'order' );
  39. this.remove( model );
  40. nfRadio.channel( 'layouts' ).request( 'add:row', this.options.cellModel.collection.options.rowModel.collection, { order: order, field: model } );
  41. }
  42. this.updateCellModel();
  43. },
  44. /**
  45. * Update our cellModel.
  46. * @since 3.0
  47. */
  48. updateCellModel: function() {
  49. this.options.cellModel.set( 'fields', this );
  50. this.options.cellModel.trigger( 'change:fields', this.options.cellModel );
  51. },
  52. /**
  53. * Respond to requests to remove a field from a collection.
  54. * @since 3.0
  55. * @param string id field ID
  56. * @return void
  57. */
  58. removeField: function( id ) {
  59. if ( this.get( id ) ) {
  60. this.remove( this.get( id ) );
  61. }
  62. },
  63. removeModel: function( model ) {
  64. this.remove( model );
  65. },
  66. addModel: function( model ) {
  67. if ( 'undefined' != typeof this.options.cellModel && this.options.cellModel.cid == model.get( 'cellcid' ) ) {
  68. this.add( model );
  69. }
  70. }
  71. } );
  72. return collection;
  73. } );