aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/Shared/Resolver.swift
blob: 411dc137706f6b82f7c33241903388a747585365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
//  Resolver.swift
//  iosApp
//
//  Created by Iván on 26/01/22.
//  Copyright © 2022 orgName. All rights reserved.
//

import Foundation
import shared

// Source: https://www.kiloloco.com/articles/004-dependency-injection-via-property-wrappers/
// Source: https://medium.com/swlh/c1f02f06cd51
class Resolver {

    private var storage = [String: (Resolver) -> Injectable]()
    
    static let shared = Resolver()
    private init() {}
    
    func add(_ type: Injectable.Type, factory: @escaping (Resolver) -> Injectable) {
        let key = String(reflecting: type.self)
        storage[key] = factory
    }
    
    func resolve<T: Injectable>() -> T {
        let key = String(reflecting: T.self)
        
        guard let injectable = storage[key]?(self) as? T else {
            fatalError("\(key) has not been added as an injectable object.")
        }
        
        return injectable
    }

}