Refactor EditItemViewController with AddItemViewController
Closed this issue · 0 comments
garricn commented
As is, I'm keeping tracking of whether the user is Editing an item or Adding an item with private var selectedIndexPath: IndexPath?
which works but presents some issues:
- Its private so I can't test is but it doesn't need to be exposed
- It makes testing TableViewModel more difficult because its private
Proposed solution:
- Create an AddItemViewController. Make things simple. Use AddVC, when adding and EditVC when editing.
- Call two different TableViewModelingDelegate methods
- Call two different TableViewModelConfigurable methods
Lets see what happens when we do this.