Skip to content
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

Add EditText View param to TextChangedEvent #418

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ public void afterTextChanged(Editable s) {
}
if (mTextChangedEventHandler != null) {
com.facebook.litho.widget.EditText.dispatchTextChangedEvent(
mTextChangedEventHandler, s.toString());
mTextChangedEventHandler, EditTextWithEventHandlers.this, s.toString());
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@

package com.facebook.litho.widget;

import android.widget.EditText;
import com.facebook.litho.annotations.Event;

/**
* Event sent by EditText when the text entered by the user changes.
*/
@Event
public class TextChangedEvent {

public EditText view;
public String text;
}
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public EditTextWithEventHandlers(Context context) {
protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
super.onTextChanged(text, start, lengthBefore, lengthAfter);
if (mTextChangedEventHandler != null) {
TextInput.dispatchTextChangedEvent(mTextChangedEventHandler, text.toString());
TextInput.dispatchTextChangedEvent(mTextChangedEventHandler, EditTextWithEventHandlers.this, text.toString());
}
}

Expand Down