|
|
|
@ -4,51 +4,69 @@ import SwiftUI
|
|
|
|
|
|
|
|
|
|
public struct SessionTextField: View {
|
|
|
|
|
@Binding var text: String
|
|
|
|
|
@Binding var error: String?
|
|
|
|
|
|
|
|
|
|
let placeholder: String
|
|
|
|
|
|
|
|
|
|
static let height: CGFloat = isIPhone5OrSmaller ? CGFloat(48) : CGFloat(80)
|
|
|
|
|
static let cornerRadius: CGFloat = 13
|
|
|
|
|
|
|
|
|
|
public init(_ text: Binding<String>, placeholder: String) {
|
|
|
|
|
public init(_ text: Binding<String>, placeholder: String, error: Binding<String?>) {
|
|
|
|
|
self._text = text
|
|
|
|
|
self.placeholder = placeholder
|
|
|
|
|
self._error = error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public var body: some View {
|
|
|
|
|
ZStack(alignment: .topLeading) {
|
|
|
|
|
if text.isEmpty {
|
|
|
|
|
Text(placeholder)
|
|
|
|
|
.font(.system(size: Values.mediumFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .textSecondary)
|
|
|
|
|
VStack (
|
|
|
|
|
alignment: .center,
|
|
|
|
|
spacing: Values.smallSpacing
|
|
|
|
|
) {
|
|
|
|
|
ZStack(alignment: .topLeading) {
|
|
|
|
|
if text.isEmpty {
|
|
|
|
|
Text(placeholder)
|
|
|
|
|
.font(.system(size: Values.mediumFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .textSecondary)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SwiftUI.TextField(
|
|
|
|
|
"",
|
|
|
|
|
text: $text
|
|
|
|
|
)
|
|
|
|
|
.font(.system(size: Values.mediumFontSize))
|
|
|
|
|
.foregroundColor(themeColor: (error?.isEmpty == false) ? .danger : .textPrimary)
|
|
|
|
|
.onReceive(text.publisher, perform: { _ in
|
|
|
|
|
error = nil
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SwiftUI.TextField(
|
|
|
|
|
"",
|
|
|
|
|
text: $text
|
|
|
|
|
.padding(.horizontal, Values.largeSpacing)
|
|
|
|
|
.frame(
|
|
|
|
|
maxWidth: .infinity,
|
|
|
|
|
maxHeight: Self.height
|
|
|
|
|
)
|
|
|
|
|
.font(.system(size: Values.mediumFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .textPrimary)
|
|
|
|
|
}
|
|
|
|
|
.padding(.horizontal, Values.largeSpacing)
|
|
|
|
|
.frame(
|
|
|
|
|
maxWidth: .infinity,
|
|
|
|
|
maxHeight: Self.height
|
|
|
|
|
)
|
|
|
|
|
.overlay(
|
|
|
|
|
RoundedRectangle(
|
|
|
|
|
cornerSize: CGSize(
|
|
|
|
|
width: Self.cornerRadius,
|
|
|
|
|
height: Self.cornerRadius
|
|
|
|
|
.overlay(
|
|
|
|
|
RoundedRectangle(
|
|
|
|
|
cornerSize: CGSize(
|
|
|
|
|
width: Self.cornerRadius,
|
|
|
|
|
height: Self.cornerRadius
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
.stroke(themeColor: (error?.isEmpty == false) ? .danger : .borderSeparator)
|
|
|
|
|
)
|
|
|
|
|
.stroke(themeColor: .borderSeparator)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
Text(error ?? " ")
|
|
|
|
|
.bold()
|
|
|
|
|
.font(.system(size: Values.mediumFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .danger)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct SessionTextField_Previews: PreviewProvider {
|
|
|
|
|
@State static var text: String = ""
|
|
|
|
|
@State static var text: String = "test"
|
|
|
|
|
@State static var error: String? = "test error"
|
|
|
|
|
static var previews: some View {
|
|
|
|
|
SessionTextField($text, placeholder: "Placeholder")
|
|
|
|
|
SessionTextField($text, placeholder: "Placeholder", error: $error)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|