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

View not updating with shared store and form #3235

Open
3 tasks done
wickwirew opened this issue Jul 12, 2024 · 4 comments
Open
3 tasks done

View not updating with shared store and form #3235

wickwirew opened this issue Jul 12, 2024 · 4 comments
Labels
bug Something isn't working due to a bug in the library.

Comments

@wickwirew
Copy link

Description

I've hit a weird issue with the UI not updating. I am using a NavigationSplitView and the right and middle column share the same scoped store/state. A form/sheet is presented from the right column and on save the state in the parent reducer is properly updated. The UI in the right column is updated but the left is not.

I reproduced the issue in a smaller sample app (use iPad) and have slowly been removing parts of it to help isolate the issue. I believe I've got it down to the smallest possible. In the sample I have removed the NavigationSplitView and just placed the two views embedded within a parent to simplify it a bit.

Here is a video of the sample app. You can see on save the right view's "Sum" has been updated but the left column's has not. If you force an update via a local @State property the UI is correct. Also any other actions will trigger it to update as well.

ViewNotUpdating.mov

Some observations:

  • Updating the number from the form save action actually works depending on how you update the state.
// Doesn't work ❌
state.numbers[id: form.id] = form
// Works weirdly enough ✅
state.numbers[id: form.id]?.number = form.number

Also if you add another property to the parent state other than the @Presents form and the numbers list and update it on the save it works.

  • The form/sheet is required to make it happen. If you do a increment action without the form it all works correctly.
  • If you strip things down further and copy the bodies of the SumView and NumberListView into the SplitView it works correctly.

Admittedly I'm not sure if this is a bug in TCA or SwiftUI or I am doing something wrong since I am a bit rusty with TCA but everything seems correct as far as I can tell.

Checklist

  • I have determined whether this bug is also reproducible in a vanilla SwiftUI project.
  • If possible, I've reproduced the issue using the main branch of this package.
  • This issue hasn't been addressed in an existing GitHub issue or discussion.

Expected behavior

Both views should update

Actual behavior

Only the right column updates on the form saveFormTapped action.

Steps to reproduce

Run the sample app.

  1. Tap one of the numbers on the right
  2. Increment it
  3. Tap Save
  4. See right column is update and left is not
  5. Tap "Force Update" and see it now is correct

The Composable Architecture version information

1.11.2

Destination operating system

iOS 17

Xcode version information

15.4

Swift Compiler version information

swift-driver version: 1.90.11.1 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
Target: x86_64-apple-macosx14.0
@wickwirew wickwirew added the bug Something isn't working due to a bug in the library. label Jul 12, 2024
@Muhammed9991
Copy link

Muhammed9991 commented Jul 14, 2024

Your issue might be that you need to conform Action to BindableAction. And use Binding Reducer.

enum Action: BindableAction {
    case binding(BindingAction<State>)
  }

  var body: some Reducer<State, Action> {
    BindingReducer()
    Reduce { state, action in
      switch action {
      case .binding:
        return .none

      }
    }
  }
}

@wickwirew
Copy link
Author

Thanks for the suggestion and taking a look! In the actual app I am using BindableAction and BindingReducer. Just gave it a shot in the sample app for a sanity check and unfortunately it still doesn't work.

@wickwirew
Copy link
Author

wickwirew commented Jul 17, 2024

Actually ran into another issue with a view not updating. This example is a bit simpler. Put together a simple todo app. Kind of a weird setup having the list send the checkboxTapped action for the todo item but nonetheless it demostrates the issue. Hope this is helpful!

@mirkobraic
Copy link

Just jumping in to say I also experienced this issue. Here is a demo app I used for testing.

Screen.Recording.2024-08-09.at.10.50.26.mov

In my setup, I have a ParentReducer (shown in white) that contains a ChildReducer (in blue). The ChildReducer holds an array of RowFeature reducers, each painted in red. The RowFeature has isSelected property, which is toggled within the ChildReducer using the following function:

public mutating func toggle(id: RowFeature.State.ID) {
    if let selectedItem = items[id: id] {
        items[id: id] = selectedItem.with(isSelected: !selectedItem.isSelected)
    }
}

However, as shown in the video, while the ChildReducer detects this change, the ParentReducer does not.
And if I replace items[id: id] = selectedItem.with(isSelected: !selectedItem.isSelected) with items[id: id]?.isSelected = !selectedItem.isSelected the issue disappears.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working due to a bug in the library.
Projects
None yet
Development

No branches or pull requests

3 participants