|
|
@@ -8,9 +8,11 @@ extension MeetupId { |
|
|
|
@StateObject var join = BusUI.Button(K.join) |
|
|
|
@StateObject var textField = BusUI.TextField(K.textApp, K.textUI) |
|
|
|
let processors: [Any] = [ |
|
|
|
Bus.Sync(shouldEnableJoin, K.M, K.isJoinAvailable), |
|
|
|
Bus.Debounce(formatId, 0.2, K.textUI, K.textApp), |
|
|
|
Bus.Delay(finishLoading, 5, K.isLoading, K.finishLoading), |
|
|
|
Bus.Sync(shouldEnableJoin, K.M, K.isJoinAvailable), |
|
|
|
Bus.Sync(shouldResetLoading, K.M, K.isLoading) |
|
|
|
//🚀shouldResetLoading: Bus.send(K.isLoading, v) |
|
|
|
] |
|
|
|
|
|
|
|
public init() { } |
|
|
|