-
Notifications
You must be signed in to change notification settings - Fork 382
enable react animations for comments list #155
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
Conversation
must use unique id as key. Don't work with map's index.
enable animations with hot loading on port 4000
Just a fixing a mistake
I believe ReactCSSTransitionGroups will throw console warnings still. It was discovered in 0.14.0, and sadly not yet fixed in 0.14.2 (it will be in 0.14.3). Do you see warnings in your console when you do the animations? |
no warnings... checked on both 3000 and 4000 ports. I just don't know how to fix the issues on travis. |
Huh.. interesting/good. This is the issue I was referring to: |
|
||
var comments = [ | ||
{ author: 'Pete Hunt', text: 'Hey there!' }, | ||
{ author: 'Justin Gordon', text: 'Aloha from @railsonmaui' }, | ||
{ author: 'Pete Hunt', text: 'Hey there!', id: uuid.v4() }, |
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.
Why is this added?
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.
we need a unique id for list animations
Hi @thiagoc7. Maybe rebase on top of master and let me know what the next step is. |
Finished on #164. |
Just following the guide, and using the same
element
class that already exist.