/static/js/demo.js

https://gitlab.com/hecto932/WebAppRealTime · JavaScript · 218 lines · 127 code · 88 blank · 3 comment · 8 complexity · 6f509db640916932c1c7d8c171e12088 MD5 · raw file

  1. window.ponyExpress = new PonyExpress({
  2. io : 'http://localhost:3000'
  3. });
  4. window.ToDoTaskModel = Backbone.Model.extend({
  5. urlRoot : '/ToDoTask'
  6. });
  7. window.ToDoTaskCollection = Backbone.Collection.extend({
  8. name : 'ToDoList',
  9. model : window.ToDoTaskModel
  10. });
  11. //Creamos una lista de colecciones en base a las de backbone
  12. window.ToDoListCollection = new ToDoTaskCollection();
  13. //Esta funcion sera la disparada en cada evento y generara un emit socket io
  14. //Se encargara de de mandar el evento a todos los navegadores
  15. window.ponyExpress.bind('connect', function(){
  16. var xhrToDoTasks = $.get('/ToDoTask');
  17. xhrToDoTasks.done(function(data){
  18. window.ToDoListCollection.add(data);
  19. window.ToDoListPlug = new PonyExpress.BackbonePlug({
  20. collection : window.ToDoListCollection
  21. });
  22. });
  23. });
  24. $(document).ready(function(){
  25. window.ToDoView = Backbone.View.extend({
  26. tpl : _.template( $('#AgregarTask').html() ),
  27. events : {
  28. "click #submit" : "send"
  29. },
  30. initialize : function (config){
  31. var todoView = this;
  32. this.$el = this.targetElement || this.$el;
  33. this.el = this.$el[0];
  34. this.render();
  35. this.$el.appendTo('#Tasks');
  36. window.ToDoListCollection.on('add', function(ToDoListModel){
  37. var ToDoListView = new ToDoTaskView({
  38. model : ToDoListModel,
  39. id : 'tarea-' + ToDoListModel.id
  40. });
  41. if(ToDoListModel.get('TaskStatus')){
  42. ToDoListView.$el.prependTo( todoView.$el.find('.TaskComplete') );
  43. }else{
  44. ToDoListView.$el.prependTo( todoView.$el.find('.TaskIncomplete') );
  45. }
  46. });
  47. },
  48. send : function (){
  49. var user = this.$el.find('#user').val(),
  50. text = this.$el.find('#text').val();
  51. if( !user || !text ){
  52. return;
  53. }
  54. var model = new ToDoTaskModel( { user : user, text : text } );
  55. model.save();
  56. this.$el.find('#text').val('');
  57. },
  58. render : function(){
  59. this.$el.html( this.tpl({}) );
  60. }
  61. });
  62. window.ToDoTaskView = Backbone.View.extend({
  63. tpl : _.template( $('#ToDoList-template').html() ),
  64. events : {
  65. 'click .highlight' : 'highlightHandler',
  66. 'click .remove' : 'removeHandler'
  67. },
  68. initialize : function(config)
  69. {
  70. var ToDoListView = this;
  71. this.render();
  72. this.model.on('change', function(){
  73. ToDoListView.render();
  74. });
  75. this.destroyHandler = function(){
  76. console.log('destroying', this.toJSON() );
  77. ToDoListView.remove();
  78. }
  79. this.model.on('destroy', this.destroyHandler);
  80. return this;
  81. },
  82. highlightHandler : function(){
  83. if(this.model.get('TaskStatus')){
  84. this.model.set('TaskStatus', false);
  85. }else{
  86. this.model.set('TaskStatus', true);
  87. }
  88. this.model.save();
  89. this.render();
  90. },
  91. removeHandler : function(){
  92. this.model.off('destroy', this.destroyHandler);
  93. this.model.destroy();
  94. this.remove();
  95. },
  96. render : function(){
  97. this.$el.html( this.tpl( this.model.toJSON() ) );
  98. if(this.model.get('TaskStatus')){
  99. this.$el.addClass('highlighted');
  100. this.$el.appendTo('.TaskComplete');
  101. }else{
  102. this.$el.removeClass('highlighted');
  103. this.$el.appendTo('.TaskIncomplete');
  104. }
  105. }
  106. });
  107. window.tareas = new window.ToDoView({
  108. targetElement : $('#Tasks')
  109. });
  110. $('#text').keyup(function(data){
  111. if (data.keyCode == 13){
  112. $('#submit').click();
  113. }
  114. });
  115. $('#all').on('click',function(){
  116. $('.TaskComplete').show();
  117. $('.TaskIncomplete').show();
  118. });
  119. $('#complete').on('click',function(){
  120. $('.TaskComplete').show();
  121. $('.TaskIncomplete').hide();
  122. });
  123. $('#incomplete').on('click',function(){
  124. $('.TaskIncomplete').show();
  125. $('.TaskComplete').hide();
  126. });
  127. $('.write').on('click',function(){
  128. $('.TaskIncomplete').find('.highlight').click();
  129. });
  130. });