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

Відмовитись від розділення на Reducible та Observable мідлвари #33

Open
Maks-Jago opened this issue Sep 17, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@Maks-Jago
Copy link
Owner

Description

Що як відмовитись від розділення мідлварів на Reducible та Observable й натомість мати один тип мідлвар котрий може як слухати/мати scope так і ред'юсити action'и

Solution 1

Зробити базову реалізацію методів

func scope(for state: AppState) {
   .none
}

func reduce(action: some Action, state: AppState) {}

А вже кожен мідлвар повинен робити override одного або обох методів котрі йому потрібні

Solution 2

Зробити окремими протоколами Reducible/Observable й кожен мідлвар вказує один або два протоколи у своєму декларуванні за необхідністю

protocol Reducible {...}
protocol Observable {...}
class Middleware1: ..., Reducible {
   ...
   func reduce(action: some Action, state: AppState) {
   }
   ...
}
class Middleware1: ..., Observable, Reducible {
   ...
   func scope(for state: AppState) {
      state.someFlow
   }
   
   func reduce(action: some Action, state: AppState) {
   }

   func observe(state: AppState) {
   }
   ...
}
@Maks-Jago Maks-Jago added this to the 1.5.0 - Swift 6.0 milestone Sep 17, 2024
@Maks-Jago Maks-Jago added the enhancement New feature or request label Sep 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant