Blame view

public/js/controllers/ForumConvCtrl.js 1.32 KB
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
1
2
  angular.module('ForumConvCtrl', ['SessionsServ', 'ForumServ', 'NotifyServ']).controller('ForumConvCtrl', ['$scope', '$routeParams', 'SessionServ', 'ForumServ', 'NotifyServ',
      function ($scope, $routeParams, SessionServ, ForumServ, NotifyServ) {
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
3
          $scope.messs = [];
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
4
          $scope.conv = {};
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
5
          $scope.formData = {};
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
6
7
8
9
10
  
          $scope.session = SessionServ.cur;
          SessionServ.onChange(function () {
              $scope.session = SessionServ.cur;
          });
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
11
          ForumServ.getConv($routeParams.conv_id, function (err, conv) {
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
12
13
              if (!err)
                  $scope.conv = conv;
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
14
15
16
17
              ForumServ.getMesss(conv._id, function (err, messs) {
                  if (!err)
                      $scope.messs = messs;
              });
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
18
          });
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  
          $scope.createMess = function () {
              data = $scope.formData;
              data.conv = $scope.conv._id;
              ForumServ.createMess(data, function (err, mess) {
                  console.log(mess);
                  if (!err)
                      $scope.formData = {};
                  $scope.messs.push(mess);
              });
          };
  
          $scope.deleteMess = function (index) {
              ForumServ.deleteMess($scope.messs[index]._id, function (err) {
                  if (!err)
                      $scope.messs.splice(index, 1);
              });
          };
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
37
38
39
  
      }
  ]);