Skip to content

Commit b2df65a

Browse files
guycayogevbd
andauthored
Fix updating button options with mergeOptions (#6219)
Updating button options with mergeOptions stopped working in 6.5.0. The regression was introduced by #6090. When updating buttons, RNN didn't take button options into account when checking if two buttons are equal, instead it checked only by button id. closes #6205 Co-authored-by: Yogev Ben David <[email protected]>
1 parent 86b344c commit b2df65a

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

lib/android/app/src/main/java/com/reactnativenavigation/presentation/StackPresenter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,10 @@ private List<TitleBarButtonController> getOrCreateButtonControllersByInstanceId(
306306
return new ArrayList<>(result.values());
307307
}
308308

309-
private List<TitleBarButtonController> getOrCreateButtonControllersById(@Nullable Map<String, TitleBarButtonController> currentButtons,@NonNull List<Button> buttons) {
309+
private List<TitleBarButtonController> getOrCreateButtonControllers(@Nullable Map<String, TitleBarButtonController> currentButtons, @NonNull List<Button> buttons) {
310310
ArrayList result = new ArrayList<TitleBarButtonController>();
311311
for (Button b : buttons) {
312-
result.add(take(first(perform(currentButtons, null, Map::values), button -> button.getId().equals(b.id)), createButtonController(b)));
312+
result.add(take(first(perform(currentButtons, null, Map::values), button -> button.getButton().equals(b)), createButtonController(b)));
313313
}
314314
return result;
315315
}
@@ -369,7 +369,7 @@ private void mergeButtons(TopBarOptions options, TopBarButtons buttons, View chi
369369
private void mergeRightButtons(TopBarOptions options, TopBarButtons buttons, View child) {
370370
if (buttons.right == null) return;
371371
List<Button> rightButtons = mergeButtonsWithColor(buttons.right, options.rightButtonColor, options.rightButtonDisabledColor);
372-
List<TitleBarButtonController> toMerge = getOrCreateButtonControllersById(componentRightButtons.get(child), rightButtons);
372+
List<TitleBarButtonController> toMerge = getOrCreateButtonControllers(componentRightButtons.get(child), rightButtons);
373373
List<TitleBarButtonController> toRemove = difference(currentRightButtons, toMerge, TitleBarButtonController::equals);
374374
forEach(toRemove, TitleBarButtonController::destroy);
375375

@@ -383,7 +383,7 @@ private void mergeRightButtons(TopBarOptions options, TopBarButtons buttons, Vie
383383
private void mergeLeftButton(TopBarOptions options, TopBarButtons buttons, View child) {
384384
if (buttons.left == null) return;
385385
List<Button> leftButtons = mergeButtonsWithColor(buttons.left, options.leftButtonColor, options.leftButtonDisabledColor);
386-
List<TitleBarButtonController> toMerge = getOrCreateButtonControllersById(componentLeftButtons.get(child), leftButtons);
386+
List<TitleBarButtonController> toMerge = getOrCreateButtonControllers(componentLeftButtons.get(child), leftButtons);
387387
componentLeftButtons.put(child, keyBy(toMerge, TitleBarButtonController::getButtonInstanceId));
388388
topBarController.setLeftButtons(toMerge);
389389
}

lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/TitleBarButtonController.java

-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929

3030
import androidx.annotation.NonNull;
3131
import androidx.annotation.Nullable;
32-
import androidx.annotation.RestrictTo;
3332
import androidx.appcompat.widget.ActionMenuView;
3433
import androidx.appcompat.widget.Toolbar;
3534
import androidx.core.view.MenuItemCompat;
@@ -48,7 +47,6 @@ public interface OnClickListener {
4847
private TitleBarButtonController.OnClickListener onPressListener;
4948
private Drawable icon;
5049

51-
@RestrictTo(RestrictTo.Scope.TESTS)
5250
public Button getButton() {
5351
return button;
5452
}

lib/android/app/src/test/java/com/reactnativenavigation/viewcontrollers/StackPresenterTest.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import android.app.Activity;
44
import android.content.Context;
5+
import android.graphics.Color;
56
import android.graphics.Typeface;
67
import android.view.Gravity;
78
import android.view.View;
@@ -12,9 +13,9 @@
1213
import com.reactnativenavigation.mocks.ImageLoaderMock;
1314
import com.reactnativenavigation.mocks.Mocks;
1415
import com.reactnativenavigation.mocks.SimpleViewController;
16+
import com.reactnativenavigation.mocks.TitleBarButtonCreatorMock;
1517
import com.reactnativenavigation.mocks.TitleBarReactViewCreatorMock;
1618
import com.reactnativenavigation.mocks.TopBarBackgroundViewCreatorMock;
17-
import com.reactnativenavigation.mocks.TitleBarButtonCreatorMock;
1819
import com.reactnativenavigation.parse.Alignment;
1920
import com.reactnativenavigation.parse.Component;
2021
import com.reactnativenavigation.parse.Options;
@@ -244,6 +245,7 @@ public void mergeRightButtons_mergingButtonsOnlyDestroysRightButtons() {
244245
@Test
245246
public void mergeRightButtons_buttonsAreCreatedOnlyIfNeeded() {
246247
Options toApply = new Options();
248+
textBtn1.color = new Colour(Color.GREEN);
247249
toApply.topBar.buttons.right = new ArrayList<>(asList(textBtn1, componentBtn1));
248250
uut.applyChildOptions(toApply, parent, child);
249251

@@ -254,6 +256,7 @@ public void mergeRightButtons_buttonsAreCreatedOnlyIfNeeded() {
254256

255257
Options toMerge = new Options();
256258
toMerge.topBar.buttons.right = new ArrayList(requireNonNull(map(toApply.topBar.buttons.right, Button::copy)));
259+
toMerge.topBar.buttons.right.get(0).color = new Colour(Color.RED);
257260
toMerge.topBar.buttons.right.add(1, componentBtn2);
258261
uut.mergeChildOptions(toMerge, Options.EMPTY, parent, child);
259262

@@ -262,7 +265,7 @@ public void mergeRightButtons_buttonsAreCreatedOnlyIfNeeded() {
262265
verify(topBarController).mergeRightButtons(captor2.capture(), any());
263266
List<TitleBarButtonController> mergedButtons = captor2.getValue();
264267
assertThat(mergedButtons).hasSize(3);
265-
assertThat(appliedButtons.get(0)).isEqualTo(mergedButtons.get(0));
268+
assertThat(appliedButtons.get(0)).isNotEqualTo(mergedButtons.get(0));
266269
assertThat(appliedButtons.get(1)).isEqualTo(mergedButtons.get(2));
267270
}
268271

0 commit comments

Comments
 (0)