Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
b09e5311
Commit
b09e5311
authored
10 years ago
by
Emmanuel ROHEE
Browse files
Options
Downloads
Patches
Plain Diff
Do a smart update of the recents from the events stream rather than hammering initialSync each time
parent
62dfa3c7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webclient/recents/recents-controller.js
+21
-7
21 additions, 7 deletions
webclient/recents/recents-controller.js
with
21 additions
and
7 deletions
webclient/recents/recents-controller.js
+
21
−
7
View file @
b09e5311
...
@@ -25,13 +25,24 @@ angular.module('RecentsController', ['matrixService', 'eventHandlerService'])
...
@@ -25,13 +25,24 @@ angular.module('RecentsController', ['matrixService', 'eventHandlerService'])
// in order to highlight a specific room in the list
// in order to highlight a specific room in the list
$scope
.
recentsSelectedRoomID
;
$scope
.
recentsSelectedRoomID
;
// Refresh the list on matrix invitation and message event
var
listenToEventStream
=
function
()
{
$scope
.
$on
(
eventHandlerService
.
MEMBER_EVENT
,
function
(
ngEvent
,
event
,
isLive
)
{
// Refresh the list on matrix invitation and message event
refresh
();
$scope
.
$on
(
eventHandlerService
.
MEMBER_EVENT
,
function
(
ngEvent
,
event
,
isLive
)
{
});
var
config
=
matrixService
.
config
();
$scope
.
$on
(
eventHandlerService
.
MSG_EVENT
,
function
(
ngEvent
,
event
,
isLive
)
{
if
(
event
.
state_key
===
config
.
user_id
&&
event
.
content
.
membership
===
"
invite
"
)
{
refresh
();
console
.
log
(
"
Invited to room
"
+
event
.
room_id
);
});
// FIXME push membership to top level key to match /im/sync
event
.
membership
=
event
.
content
.
membership
;
// FIXME bodge a nicer name than the room ID for this invite.
event
.
room_display_name
=
event
.
user_id
+
"
's room
"
;
$scope
.
rooms
[
event
.
room_id
]
=
event
;
}
});
$scope
.
$on
(
eventHandlerService
.
MSG_EVENT
,
function
(
ngEvent
,
event
,
isLive
)
{
$scope
.
rooms
[
event
.
room_id
].
lastMsg
=
event
;
});
};
var
refresh
=
function
()
{
var
refresh
=
function
()
{
// List all rooms joined or been invited to
// List all rooms joined or been invited to
...
@@ -56,6 +67,9 @@ angular.module('RecentsController', ['matrixService', 'eventHandlerService'])
...
@@ -56,6 +67,9 @@ angular.module('RecentsController', ['matrixService', 'eventHandlerService'])
for
(
var
i
=
0
;
i
<
presence
.
length
;
++
i
)
{
for
(
var
i
=
0
;
i
<
presence
.
length
;
++
i
)
{
eventHandlerService
.
handleEvent
(
presence
[
i
],
false
);
eventHandlerService
.
handleEvent
(
presence
[
i
],
false
);
}
}
// From now, update recents from the stream
listenToEventStream
();
},
},
function
(
error
)
{
function
(
error
)
{
$scope
.
feedback
=
"
Failure:
"
+
error
.
data
;
$scope
.
feedback
=
"
Failure:
"
+
error
.
data
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment