Added big massive TODOs on a huge design problem with initial sync
This commit is contained in:
parent
054fad5360
commit
da9b7b0368
|
@ -105,6 +105,8 @@ angular.module('eventStreamService', [])
|
||||||
var deferred = $q.defer();
|
var deferred = $q.defer();
|
||||||
|
|
||||||
// FIXME: We are discarding all the messages.
|
// FIXME: We are discarding all the messages.
|
||||||
|
// XXX FIXME TODO : The discard works because we are doing this all over
|
||||||
|
// again on EVERY INSTANTIATION of the recents controller.
|
||||||
matrixService.initialSync(1, false).then(
|
matrixService.initialSync(1, false).then(
|
||||||
function(response) {
|
function(response) {
|
||||||
var rooms = response.data.rooms;
|
var rooms = response.data.rooms;
|
||||||
|
|
|
@ -16,6 +16,12 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
// XXX FIXME TODO
|
||||||
|
// We should NOT be dumping things into $rootScope!!!! We should NOT be
|
||||||
|
// making any requests here, and should READ what is already in the
|
||||||
|
// rootScope from the event handler service!!!
|
||||||
|
// XXX FIXME TODO
|
||||||
|
|
||||||
angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHandlerService'])
|
angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHandlerService'])
|
||||||
.controller('RecentsController', ['$rootScope', '$scope', 'matrixService', 'eventHandlerService',
|
.controller('RecentsController', ['$rootScope', '$scope', 'matrixService', 'eventHandlerService',
|
||||||
function($rootScope, $scope, matrixService, eventHandlerService) {
|
function($rootScope, $scope, matrixService, eventHandlerService) {
|
||||||
|
@ -28,6 +34,11 @@ angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHand
|
||||||
// in order to highlight a specific room in the list
|
// in order to highlight a specific room in the list
|
||||||
$rootScope.recentsSelectedRoomID;
|
$rootScope.recentsSelectedRoomID;
|
||||||
|
|
||||||
|
// XXX FIXME TODO : We should NOT be doing this here, which could be
|
||||||
|
// repeated for every controller instance. We should be doing this in
|
||||||
|
// event handler service instead. In additon, this will break if there
|
||||||
|
// isn't a recents controller visible when the last message comes in :/
|
||||||
|
|
||||||
var listenToEventStream = function() {
|
var listenToEventStream = function() {
|
||||||
// Refresh the list on matrix invitation and message event
|
// Refresh the list on matrix invitation and message event
|
||||||
$rootScope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) {
|
$rootScope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) {
|
||||||
|
@ -58,7 +69,13 @@ angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHand
|
||||||
if ($rootScope.rooms) {
|
if ($rootScope.rooms) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// XXX FIXME TODO
|
||||||
|
// We should NOT be dumping things into $rootScope!!!! We should NOT be
|
||||||
|
// making any requests here, and should READ what is already in the
|
||||||
|
// rootScope from the event handler service!!!
|
||||||
|
// XXX FIXME TODO
|
||||||
|
|
||||||
$rootScope.rooms = {};
|
$rootScope.rooms = {};
|
||||||
|
|
||||||
// Use initialSync data to init the recents list
|
// Use initialSync data to init the recents list
|
||||||
|
|
Loading…
Reference in New Issue