Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Overhaul MELS to deal with causality, kicks, etc. #613

Merged
merged 28 commits into from
Jan 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d2d7891
Overhaul MELS to deal with causality, kicks, etc.
Jan 12, 2017
77ae041
Order names by order of first events for users
Jan 13, 2017
fb68fff
Refactor renderCommaSeparated for reuse
lukebarnard1 Jan 16, 2017
82d6805
Canonicalise certain transition pairs, handle arbitrary consecutive t…
lukebarnard1 Jan 16, 2017
4be444d
Move shouldComponentUpdate
lukebarnard1 Jan 16, 2017
a79dc88
Order sequences by occurance of the first event in each sequence
lukebarnard1 Jan 16, 2017
5ab287f
Use pre-calculated displaynames to handle dupes
lukebarnard1 Jan 16, 2017
aa6e168
Remove comment
lukebarnard1 Jan 16, 2017
45655f4
Modified desc for invitation rejections, withdrawals
lukebarnard1 Jan 17, 2017
ade7c65
Add test for MemberEventListSummary
lukebarnard1 Jan 17, 2017
49f2b9d
Remove duplicate test
lukebarnard1 Jan 17, 2017
9574a0b
Remove pointless length guard
lukebarnard1 Jan 17, 2017
3ba9f50
Move functions around, remove redundancies, add docs
lukebarnard1 Jan 17, 2017
484549e
Refactor a few things and document everything
lukebarnard1 Jan 18, 2017
5dd1512
Move aggregation code to dedicated function
lukebarnard1 Jan 18, 2017
78e2c78
Refactor and document test helpers.
lukebarnard1 Jan 18, 2017
867a532
Remove parentDiv from tests
lukebarnard1 Jan 18, 2017
41d2697
Remove `done`, const instead of var for `requier`s
lukebarnard1 Jan 18, 2017
d690677
Merge branch 'luke/fix-join-part-collapsing-causality' of github.com:…
Jan 24, 2017
bd10696
Merge branch 'develop' into luke/fix-join-part-collapsing-causality
Jan 24, 2017
e9719b1
Get rid of .only
Jan 25, 2017
3b8b2cf
Document _getCanonicalTransitions
Jan 25, 2017
f8e4681
Rename truncated->coalesced
Jan 25, 2017
8091cf7
Enumerate->label
Jan 25, 2017
d5edf26
Improve comment
Jan 25, 2017
24e9478
A lot of linting
Jan 25, 2017
b887d5b
Much linting
Jan 25, 2017
f9ca2a8
Fix _renderCommaSeparatedList
Jan 25, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/components/structures/MessagePanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ module.exports = React.createClass({

var isMembershipChange = (e) =>
e.getType() === 'm.room.member'
&& ['join', 'leave'].indexOf(e.getContent().membership) !== -1
&& (!e.getPrevContent() || e.getContent().membership !== e.getPrevContent().membership);

for (i = 0; i < this.props.events.length; i++) {
Expand Down
Loading