Skip to content

Commit

Permalink
Use the new 'inviter' key from im sync for room display names.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Aug 21, 2014
1 parent 14b9989 commit 4c228df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions webclient/rooms/rooms-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ angular.module('RoomsController', ['matrixService', 'mFileInput', 'mFileUpload',
// 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_alias = event.user_id + "'s room";
event.room_display_name = event.user_id + "'s room";
$scope.rooms[event.room_id] = event;
}
});
Expand All @@ -70,15 +70,20 @@ angular.module('RoomsController', ['matrixService', 'mFileInput', 'mFileUpload',
if (alias) {
// use the existing alias from storage
data[i].room_alias = alias;
data[i].room_display_name = alias;
}
else if (data[i].aliases && data[i].aliases[0]) {
// save the mapping
// TODO: select the smarter alias from the array
matrixService.createRoomIdToAliasMapping(data[i].room_id, data[i].aliases[0]);
data[i].room_display_name = data[i].aliases[0];
}
else if (data[i].membership == "invite" && "inviter" in data[i]) {
data[i].room_display_name = data[i].inviter + "'s room"
}
else {
// last resort use the room id
data[i].room_alias = data[i].room_id;
data[i].room_display_name = data[i].room_id;
}
}
return data;
Expand Down
2 changes: 1 addition & 1 deletion webclient/rooms/rooms.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h3>My rooms</h3>

<div class="rooms" ng-repeat="(rm_id, room) in rooms">
<div>
<a href="#/room/{{ room.room_alias ? room.room_alias : rm_id }}" >{{ room.room_alias }}</a> {{room.membership === 'invite' ? ' (invited)' : ''}}
<a href="#/room/{{ room.room_alias ? room.room_alias : rm_id }}" >{{ room.room_display_name }}</a> {{room.membership === 'invite' ? ' (invited)' : ''}}
</div>
</div>
<br/>
Expand Down

0 comments on commit 4c228df

Please sign in to comment.