/public/resources/mail_js/collections/mailCollection.js

https://gitlab.com/zoharyah/mymail · JavaScript · 111 lines · 73 code · 15 blank · 23 comment · 8 complexity · 5c8925da1a670edf18c4ba9eb73692fc MD5 · raw file

  1. /*global Backbone */
  2. var app = app || {};
  3. (function () {
  4. 'use strict';
  5. // mail Collection
  6. // ---------------
  7. var MailList = Backbone.Collection.extend({
  8. // Reference to this collection's model.
  9. model: app.mailModel,
  10. // get sent mails
  11. sent: function () {
  12. return this.getMails('sent', true);
  13. },
  14. // mails are sorted by their send dates - newest mails first.
  15. comparator: function (mail) {
  16. return mail.get('date');
  17. },
  18. // get mails where attribute = value
  19. getMails: function(attribute, value) {
  20. return this.filter(function (mail) {
  21. return mail.get(attribute) === value;
  22. });
  23. },
  24. // remove a specified mail from the mail collection
  25. remove: function(model) {
  26. var i;
  27. for(i in app.MailCollec.models){
  28. // check each mail in collection
  29. if(app.MailCollec.models[i] === model){
  30. // if desired mail remove it
  31. app.MailCollec.models.splice(i, 1);
  32. // update inbox/outbox title
  33. this.trigger('updateMailHeader');
  34. }
  35. }
  36. },
  37. // fetch mails for this user from the server
  38. fetch: function() {
  39. var index;
  40. $.ajax({
  41. type : 'GET',
  42. dataType : 'json',
  43. data: '',
  44. url: window.location.origin + '/mymail/fetchMail',
  45. error: function(e){console.log('got an error in fetching mails....' + e);}
  46. }).done(function ( data ) {
  47. // add mails to collection
  48. for(index in data){
  49. // is there is no other mail in collection with the same uuid - add it to collection
  50. if ( ! app.MailCollec.where({uuid: data[index].uuid}).length ){
  51. data[index].time = new Date(data[index].time).toLocaleString();
  52. data[index].messageBody = data[index].messageBody.replace(/\n/g, '<br />');
  53. app.MailCollec.create(data[index]);
  54. app.MailCollec.trigger('filterAll');
  55. }
  56. }
  57. });
  58. }
  59. });
  60. // overrides Bacckbone.sync, used to update server on client actions
  61. // create, read, delete or update
  62. Backbone.sync = function(method, model, options) {
  63. var i,
  64. data = model.attributes.uuid;
  65. // update inbox/outbox title
  66. app.MailCollec.trigger('updateMailHeader');
  67. model.id = 1;
  68. switch (method) {
  69. case 'update':
  70. if (model._previousAttributes.read !== model.attributes.read){
  71. // need to update read/unread status
  72. method = 'toggleRead';
  73. }
  74. // extend user's session timeout - decided to remove this to save on network traffic
  75. // else method = 'probe';
  76. else return;
  77. break;
  78. case 'delete':
  79. // remove mail from local collection
  80. app.MailCollec.remove(model);
  81. break;
  82. default:
  83. return;
  84. }
  85. // send server the needed action
  86. $.ajax({
  87. type : 'POST',
  88. data: data,
  89. url: window.location.origin + '/mymail/' + method
  90. }).fail(function (data){
  91. console.log('got an error in sync....' + JSON.stringify(data));
  92. });
  93. }
  94. // Create our global collection of **mails**.
  95. app.MailCollec = new MailList();
  96. })();