|
|
@@ -3,39 +3,38 @@ import SwiftUI |
|
|
|
|
|
|
|
extension MeetupId { |
|
|
|
public struct V: View { |
|
|
|
@StateObject var isJoinAvailable = BusUI.Value(K.isJoinAvailable, false) |
|
|
|
@StateObject var isLoading = BusUI.Value(K.isLoading, false) |
|
|
|
@StateObject var join = BusUI.Button(K.join) |
|
|
|
@StateObject var textField = BusUI.TextField(K.textApp, K.textUI) |
|
|
|
@StateObject private var cmp: Component |
|
|
|
|
|
|
|
public init() { |
|
|
|
public init(_ id: String) { |
|
|
|
// https://stackoverflow.com/a/62636048 |
|
|
|
_cmp = StateObject(wrappedValue: Component(id)) |
|
|
|
} |
|
|
|
|
|
|
|
public var body: some View { |
|
|
|
VStack(spacing: 8) { |
|
|
|
HStack { |
|
|
|
TextField("Binding-3", value: $textField.v, formatter: BusUI.TextFieldSource()) |
|
|
|
.disabled(isLoading.v) |
|
|
|
TextField("Binding-3", value: $cmp.textField.v, formatter: BusUI.TextFieldSource()) |
|
|
|
.disabled(cmp.isLoading.v) |
|
|
|
.padding(8) |
|
|
|
.border( |
|
|
|
!isLoading.v ? Color.black : Color.gray, |
|
|
|
width: !isLoading.v ? 2 : 1 |
|
|
|
!cmp.isLoading.v ? Color.black : Color.gray, |
|
|
|
width: !cmp.isLoading.v ? 2 : 1 |
|
|
|
) |
|
|
|
if isLoading.v { |
|
|
|
if cmp.isLoading.v { |
|
|
|
ProgressView() |
|
|
|
.padding(8) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
Button(action: join.v.send) { |
|
|
|
Button(action: cmp.join.v.send) { |
|
|
|
Text("Join") |
|
|
|
.padding(8) |
|
|
|
.border( |
|
|
|
isJoinAvailable.v ? Color.green : Color.gray, |
|
|
|
width: isJoinAvailable.v ? 2 : 1 |
|
|
|
cmp.isJoinAvailable.v ? Color.green : Color.gray, |
|
|
|
width: cmp.isJoinAvailable.v ? 2 : 1 |
|
|
|
) |
|
|
|
} |
|
|
|
.disabled(!isJoinAvailable.v) |
|
|
|
.disabled(!cmp.isJoinAvailable.v) |
|
|
|
} |
|
|
|
.frame(width: 320) |
|
|
|
.padding() |
|
|
|