Skip to content

Commit 1b291c6

Browse files
authored
Fix changing disabled button color (#6387)
When a button was disabled, changing its color once it became enabled did not work.
1 parent 1bba342 commit 1b291c6

File tree

4 files changed

+44
-29
lines changed

4 files changed

+44
-29
lines changed

lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/stack/topbar/button/ButtonPresenter.kt

+10-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ import com.reactnativenavigation.utils.*
1919
import com.reactnativenavigation.views.stack.topbar.titlebar.TitleBar
2020

2121
open class ButtonPresenter(private val button: ButtonOptions, private val iconResolver: IconResolver) {
22+
companion object {
23+
const val DISABLED_COLOR = Color.LTGRAY
24+
}
25+
2226
val styledText: SpannableString
2327
get() {
2428
return SpannableString(button.text.get("")).apply {
@@ -83,8 +87,12 @@ open class ButtonPresenter(private val button: ButtonOptions, private val iconRe
8387
}
8488

8589
private fun applyTextColor(view: View) {
86-
if (view is TextView && button.color.hasValue()) {
87-
view.setTextColor(button.color.get())
90+
if (view is TextView) {
91+
if (button.enabled.isTrueOrUndefined) {
92+
if (button.color.hasValue()) view.setTextColor(button.color.get())
93+
} else {
94+
view.setTextColor(button.disabledColor.get(DISABLED_COLOR))
95+
}
8896
}
8997
}
9098

lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/stack/topbar/button/ButtonSpan.kt

-5
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ import android.text.style.MetricAffectingSpan
88
import com.reactnativenavigation.options.ButtonOptions
99

1010
class ButtonSpan(private val button: ButtonOptions) : MetricAffectingSpan() {
11-
companion object {
12-
const val DISABLED_COLOR = Color.LTGRAY
13-
}
14-
1511
override fun updateDrawState(drawState: TextPaint) = apply(drawState)
1612

1713
override fun updateMeasureState(paint: TextPaint) = apply(paint)
@@ -22,7 +18,6 @@ class ButtonSpan(private val button: ButtonOptions) : MetricAffectingSpan() {
2218
if (fakeStyle and Typeface.BOLD != 0) paint.isFakeBoldText = true
2319
if (fakeStyle and Typeface.ITALIC != 0) paint.textSkewX = -0.25f
2420
if (fontSize.hasValue()) paint.textSize = fontSize.get().toFloat()
25-
if (enabled.hasValue()) paint.color = disabledColor.get(DISABLED_COLOR)
2621
paint.typeface = fontFamily
2722
}
2823
}

lib/android/app/src/test/java/com/reactnativenavigation/utils/ButtonPresenterTest.java

+33-9
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,21 @@
66
import android.widget.TextView;
77

88
import com.reactnativenavigation.BaseTest;
9-
import com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonPresenter;
109
import com.reactnativenavigation.fakes.IconResolverFake;
1110
import com.reactnativenavigation.options.ButtonOptions;
11+
import com.reactnativenavigation.options.params.Bool;
1212
import com.reactnativenavigation.options.params.Colour;
1313
import com.reactnativenavigation.options.params.Number;
1414
import com.reactnativenavigation.options.params.Text;
1515
import com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonController;
16+
import com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonPresenter;
1617
import com.reactnativenavigation.views.stack.topbar.titlebar.TitleBar;
1718
import com.reactnativenavigation.views.stack.topbar.titlebar.TitleBarButtonCreator;
1819

1920
import org.junit.Test;
2021
import org.robolectric.annotation.LooperMode;
2122
import org.robolectric.shadows.ShadowLooper;
2223

23-
import java.util.List;
24-
2524
import androidx.appcompat.widget.ActionMenuView;
2625

2726
import static java.util.Objects.requireNonNull;
@@ -30,16 +29,19 @@
3029

3130
@LooperMode(LooperMode.Mode.PAUSED)
3231
public class ButtonPresenterTest extends BaseTest {
32+
private static final String BTN_TEXT = "button1";
33+
3334
private TitleBar titleBar;
3435
private ButtonPresenter uut;
3536
private ButtonController buttonController;
37+
private ButtonOptions button;
3638

3739
@Override
3840
public void beforeEach() {
3941
Activity activity = newActivity();
4042
titleBar = new TitleBar(activity);
4143
activity.setContentView(titleBar);
42-
ButtonOptions button = createButton();
44+
button = createButton();
4345

4446
uut = new ButtonPresenter(button, new IconResolverFake(activity));
4547
buttonController = new ButtonController(
@@ -51,25 +53,47 @@ public void beforeEach() {
5153
);
5254
}
5355

56+
@Test
57+
public void applyOptions_buttonIsAddedToMenu() {
58+
addButtonAndApplyOptions();
59+
60+
assertThat(findButtonView().getText().toString()).isEqualTo(BTN_TEXT);
61+
}
62+
5463
@Test
5564
public void applyOptions_appliesColorOnButtonTextView() {
65+
button.color = new Colour(Color.RED);
66+
addButtonAndApplyOptions();
67+
68+
assertThat(findButtonView().getCurrentTextColor()).isEqualTo(Color.RED);
69+
}
70+
71+
@Test
72+
public void apply_disabledColor() {
73+
button.enabled = new Bool(false);
74+
addButtonAndApplyOptions();
75+
76+
assertThat(findButtonView().getCurrentTextColor()).isEqualTo(ButtonPresenter.DISABLED_COLOR);
77+
}
78+
79+
private void addButtonAndApplyOptions() {
5680
MenuItem menuItem = buttonController.createAndAddButtonToTitleBar(titleBar, 0);
5781
uut.applyOptions(titleBar, menuItem, buttonController::getView);
82+
}
5883

84+
private TextView findButtonView() {
5985
ShadowLooper.idleMainLooper();
60-
List<TextView> textualButtons = ViewUtils.findChildrenByClass(
86+
return (TextView) ViewUtils.findChildrenByClass(
6187
requireNonNull(ViewUtils.findChildByClass(titleBar, ActionMenuView.class)),
6288
TextView.class,
6389
child -> true
64-
);
65-
assertThat(textualButtons.get(0).getCurrentTextColor()).isEqualTo(Color.RED);
90+
).get(0);
6691
}
6792

6893
private ButtonOptions createButton() {
6994
ButtonOptions b = new ButtonOptions();
7095
b.id = "btn1";
71-
b.text = new Text("button");
72-
b.color = new Colour(Color.RED);
96+
b.text = new Text(BTN_TEXT);
7397
b.showAsAction = new Number(MenuItem.SHOW_AS_ACTION_ALWAYS);
7498
return b;
7599
}

lib/android/app/src/test/java/com/reactnativenavigation/utils/ButtonSpanTest.java

+1-13
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@
44
import android.graphics.Paint;
55

66
import com.reactnativenavigation.BaseTest;
7-
import com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonSpan;
8-
import com.reactnativenavigation.options.params.Bool;
97
import com.reactnativenavigation.options.ButtonOptions;
108
import com.reactnativenavigation.options.params.Colour;
9+
import com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonSpan;
1110

1211
import org.jetbrains.annotations.NotNull;
1312
import org.junit.Test;
1413

15-
import static com.reactnativenavigation.viewcontrollers.stack.topbar.button.ButtonSpan.DISABLED_COLOR;
1614
import static org.assertj.core.api.Java6Assertions.assertThat;
1715

1816
public class ButtonSpanTest extends BaseTest {
@@ -33,16 +31,6 @@ public void apply_colorIsNotHandled() {
3331
assertThat(paint.getColor()).isNotEqualTo(button.color.get());
3432
}
3533

36-
@Test
37-
public void apply_disabledColor() {
38-
button.enabled = new Bool(false);
39-
40-
Paint paint = new Paint();
41-
uut.apply(paint);
42-
43-
assertThat(paint.getColor()).isEqualTo(DISABLED_COLOR);
44-
}
45-
4634
@NotNull
4735
private ButtonOptions createButton() {
4836
ButtonOptions button = new ButtonOptions();

0 commit comments

Comments
 (0)