My React Native Journey: From Overusing Redux to Smarter State Management 4Oke now lets dive to Jest. To mock using Jest we have 2 ways directly mock in the test file and default mock using __mocks__ folder.Mar 23Mar 23
My React Native Journey: From Overusing Redux to Smarter State Management 3Before we learn Jest, I want to show you how Zustand simplify our code. When we use Redux in old way at least we need to create :Mar 22Mar 22
My React Native Journey: From Overusing Redux to Smarter State Management 2After we know that not every Logic need State Management, now we go into Auth, because Auth is shared so we can use State Management to…Mar 18Mar 18
My React Native Journey: From Overusing Redux to Smarter State ManagementIt started in 2019, when I got project that need me using React Native (The reason why they told us using RN because they need to build app…Mar 18Mar 18
[TDD] Why we need Dependency Graph before creating ProjectWhy Clean Architecture asking us to create Dependency Graph or Architecture Diagram first before creating project. As you see on the…Feb 15Feb 15
[TDD] Writing Unit Tests for a ViewModelLet’s say we have a UserViewModel that interacts with AuthManager and SessionManager. Here's a simple example of the ViewModel that you…Feb 7Feb 7
[TDD] Integrating AuthManager and SessionManagerSince we are following a dependency injection pattern, both AuthManager and SessionManager will depend on a storage solution for user data…Feb 6Feb 6
[TDD] SessionManager Without Knowing the Storage TypeInstead of hardcoding UserDefaults or Keychain, we create a protocol that defines session storage behavior.Feb 6Feb 6
[TDD] AuthManager When Sign-in Service Is Not DecidedInstead of writing logic directly inside AuthManager, we abstract it using AuthServiceProtocol.Feb 6Feb 6
How to Enforce Dependency Rules with SwiftLint Custom RulesDomain Logic Should Be Framework-AgnosticDec 2, 2024Dec 2, 2024