-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Regression: React + Blaze reconciliation #21567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 22 commits
c3b24eb
64afa8b
e30d038
0e11a7a
8832af5
1a0c5e0
6ce82c1
10f165b
aba2539
cfd482d
8e6c1c3
b85986e
b7d0e8b
daee28c
49d6b87
8b298a4
e4a0721
bd03034
910e4fa
fd14807
53315dd
ce5b3fb
10877d5
42c72ca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| import { Meteor } from 'meteor/meteor'; | ||
| import { Session } from 'meteor/session'; | ||
| // import { Session } from 'meteor/session'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. // |
||
| import { FlowRouter } from 'meteor/kadira:flow-router'; | ||
|
|
||
| import { RoomTypeConfig } from './RoomTypeConfig'; | ||
|
|
@@ -47,7 +47,7 @@ export class RoomTypesCommon { | |
| const routeConfig = { | ||
| name: roomConfig.route.name, | ||
| action: roomConfig.route.action, | ||
| triggersExit: [() => Session.set('openedRoom', '')], | ||
| // triggersExit: [() => Session.set('openedRoom', '')], | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. // |
||
| }; | ||
|
|
||
| if (Meteor.isClient) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| import { Blaze } from 'meteor/blaze'; | ||
| import { Session } from 'meteor/session'; | ||
| // import { Session } from 'meteor/session'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. // |
||
| import { Tracker } from 'meteor/tracker'; | ||
| import { FlowRouter } from 'meteor/kadira:flow-router'; | ||
|
|
||
|
|
@@ -25,8 +25,8 @@ export const roomExit = function() { | |
| } | ||
| callbacks.run('roomExit'); | ||
|
|
||
| Session.set('lastOpenedRoom', Session.get('openedRoom')); | ||
| Session.set('openedRoom', null); | ||
| // Session.set('lastOpenedRoom', Session.get('openedRoom')); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. // |
||
| // Session.set('openedRoom', null); | ||
| RoomManager.openedRoom = null; | ||
|
|
||
| const mainNode = document.querySelector('.main-content'); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love that <3