/wp-content/themes/freelanceengine/assets/js/author.js

https://bitbucket.org/digitalklones/wordpress · JavaScript · 175 lines · 160 code · 0 blank · 15 comment · 8 complexity · ab4a7a915b9d3b0338d4477ced251bd1 MD5 · raw file

  1. (function($, Models, Collections, Views) {
  2. $(document).ready(function() {
  3. AE.Models.emproject = Backbone.Model.extend({
  4. action: 'ae-project-sync',
  5. initialize: function() {}
  6. });
  7. Collections.Projects = Backbone.Collection.extend({
  8. model: AE.Models.emproject,
  9. action: 'ae-fetch-projects',
  10. initialize: function(project_id) {
  11. this.paged = 1;
  12. },
  13. });
  14. EmProjectItem = Views.PostItem.extend({
  15. tagName: 'li',
  16. className: 'project-item',
  17. template: _.template($('#employer-project-item').html()),
  18. onItemBeforeRender: function() {
  19. // before render view
  20. },
  21. onItemRendered: function() {
  22. // after render view
  23. }
  24. });
  25. ListProject = Views.ListPost.extend({
  26. tagName: 'li',
  27. itemView: EmProjectItem,
  28. itemClass: 'project-item'
  29. });
  30. AE.Views.AuthorProfile = Backbone.View.extend({
  31. // action: 'ae-project-sync',
  32. el: 'body.author',
  33. initialize: function(arg) {
  34. if ($('body').find('.projectdata').length > 0) {
  35. var projectdata = JSON.parse($('body').find('.projectdata').html());
  36. this.collection_projects = new Collections.Projects(projectdata);
  37. } else {
  38. this.collection_projects = new Collections.Projects();
  39. }
  40. new ListProject({
  41. //itemView: BidItem,
  42. collection: this.collection_projects,
  43. el: $('.list-history-project')
  44. });
  45. if (typeof Views.BlockControl !== "undefined") {
  46. //project control
  47. new Views.BlockControl({
  48. collection: this.collection_projects,
  49. el: this.$(".wrapper-history"),
  50. query: {
  51. paginate: 'page'
  52. },
  53. });
  54. }
  55. },
  56. });
  57. new AE.Views.AuthorProfile();
  58. });
  59. })(jQuery, window.AE.Models, window.AE.Collections, window.AE.Views);
  60. (function($, Views, Models, Collections) {
  61. /*
  62. *
  63. * S I N G L E P R O F I L E V I E W S
  64. *
  65. */
  66. Views.Single_Profile = Backbone.View.extend({
  67. el: 'body',
  68. events: {
  69. //event open modal contact
  70. 'click a.contact-me': 'openModalContact',
  71. 'click a.invite-open': 'openModalInvite',
  72. },
  73. initialize: function() {
  74. this.user = AE.App.user;
  75. },
  76. openModalContact: function(event) {
  77. event.preventDefault();
  78. var $target = $(event.currentTarget);
  79. if (typeof Views.ContactModal !== "undefined") {
  80. this.modalContact = new Views.ContactModal({
  81. el: '#modal_contact',
  82. model: this.user,
  83. user_id: $target.attr('data-user')
  84. });
  85. this.modalContact.user_id = $target.attr('data-user');
  86. this.modalContact.openModal();
  87. }
  88. },
  89. openModalInvite: function(event) {
  90. event.preventDefault();
  91. var $target = $(event.currentTarget);
  92. if (typeof Views.InviteModal !== "undefined") {
  93. if (typeof this.modalInvite === "undefined") {
  94. this.modalInvite = new Views.InviteModal({
  95. el: '#modal_invite',
  96. user_id: $target.attr('data-user')
  97. });
  98. }
  99. this.modalInvite.user_id = $target.attr('data-user');
  100. this.modalInvite.openModal();
  101. }
  102. }
  103. });
  104. /**
  105. * modal invite jion a project
  106. */
  107. Views.InviteModal = AE.Views.Modal_Box.extend({
  108. events: {
  109. 'submit form#submit_invite': 'sendInvite',
  110. 'click a.select-all' : 'selectAll',
  111. 'click a.remove-all' : 'removeAll'
  112. },
  113. initialize: function(options) {
  114. AE.Views.Modal_Box.prototype.initialize.call();
  115. this.blockUi = new AE.Views.BlockUi();
  116. this.options = _.extend(this, options);
  117. },
  118. selectAll : function(event){
  119. event.preventDefault();
  120. var form = $('form#submit_invite');
  121. form.find('a.select-all').hide();
  122. form.find('a.remove-all').show();
  123. $('.invites-list input[type=checkbox]').each(function() {
  124. $(this).prop('checked', true);
  125. });
  126. },
  127. removeAll : function(event){
  128. event.preventDefault();
  129. var form = $('form#submit_invite');
  130. form.find('a.select-all').show();
  131. form.find('a.remove-all').hide();
  132. $('.invites-list input[type=checkbox]').each(function() {
  133. $(this).prop('checked', false);
  134. });
  135. },
  136. sendInvite: function(event) {
  137. event.preventDefault();
  138. var form = $(event.currentTarget),
  139. $button = form.find(".btn-submit"),
  140. data = form.serializeObject(),
  141. view = this;
  142. $.ajax({
  143. url: ae_globals.ajaxURL,
  144. type: 'post',
  145. data: {
  146. data: data,
  147. user_id: view.user_id,
  148. action: 'ae-send-invite',
  149. },
  150. beforeSend: function() {
  151. view.blockUi.block($button);
  152. form.addClass('processing');
  153. },
  154. success: function(resp) {
  155. form.removeClass('processing');
  156. if (resp.success) {
  157. AE.pubsub.trigger('ae:notification', {
  158. msg: resp.msg,
  159. notice_type: 'success',
  160. });
  161. view.closeModal();
  162. } else {
  163. AE.pubsub.trigger('ae:notification', {
  164. msg: resp.msg,
  165. notice_type: 'error',
  166. });
  167. // view.closeModal();
  168. form.trigger('reset');
  169. }
  170. view.blockUi.unblock();
  171. }
  172. });
  173. }
  174. });
  175. })(jQuery, AE.Views, AE.Models, AE.Collections);