1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Shared/Search/SearchTextField.swift

113 lines
4.0 KiB
Swift
Raw Normal View History

2021-11-28 20:07:55 +05:30
import SwiftUI
struct SearchTextField: View {
private var navigation = NavigationModel.shared
@ObservedObject private var state = SearchModel.shared
2021-11-28 20:07:55 +05:30
#if os(macOS)
var body: some View {
ZStack {
2021-11-28 20:07:55 +05:30
fieldBorder
HStack(spacing: 0) {
2021-11-28 20:07:55 +05:30
Image(systemName: "magnifyingglass")
.resizable()
.scaledToFill()
2021-11-28 20:07:55 +05:30
.frame(width: 12, height: 12)
.padding(.horizontal, 6)
2021-11-28 20:07:55 +05:30
.opacity(0.8)
GeometryReader { geometry in
TextField("Search...", text: $state.queryText) {
state.changeQuery { query in
query.query = state.queryText
navigation.hideKeyboard()
}
RecentsModel.shared.addQuery(state.queryText)
}
.disableAutocorrection(true)
.frame(maxWidth: geometry.size.width - 5)
.textFieldStyle(.plain)
.padding(.vertical, 8)
.frame(height: 27, alignment: .center)
2022-03-26 19:52:29 +05:30
}
2021-12-05 01:05:41 +05:30
if !state.queryText.isEmpty {
clearButton
} else {
2021-12-06 23:43:20 +05:30
clearButton
.opacity(0)
}
2021-11-28 20:07:55 +05:30
}
}
.transaction { t in t.animation = nil }
2021-11-28 20:07:55 +05:30
}
#else
var body: some View {
ZStack {
HStack {
HStack(spacing: 0) {
Image(systemName: "magnifyingglass")
.foregroundColor(.gray)
.padding(.leading, 5)
.padding(.trailing, 5)
.imageScale(.medium)
TextField("Search...", text: $state.queryText) {
state.changeQuery { query in
query.query = state.queryText
navigation.hideKeyboard()
}
RecentsModel.shared.addQuery(state.queryText)
}
.disableAutocorrection(true)
.textFieldStyle(.plain)
.padding(.vertical, 7)
if !state.queryText.isEmpty {
clearButton
.padding(.leading, 5)
.padding(.trailing, 5)
}
}
.background(
RoundedRectangle(cornerRadius: 8)
.fill(Color("SearchTextFieldBackground"))
)
.frame(maxWidth: .infinity, alignment: .leading)
}
.padding(.horizontal, 0)
}
.transaction { t in t.animation = nil }
}
#endif
2021-11-28 20:07:55 +05:30
private var fieldBorder: some View {
RoundedRectangle(cornerRadius: 5, style: .continuous)
.fill(Color.background)
.frame(width: 250, height: 27)
2021-11-28 20:07:55 +05:30
.overlay(
RoundedRectangle(cornerRadius: 5, style: .continuous)
.stroke(Color.gray.opacity(0.4), lineWidth: 1)
.frame(width: 250, height: 27)
2021-11-28 20:07:55 +05:30
)
}
private var clearButton: some View {
Button(action: {
self.state.queryText = ""
}) {
Image(systemName: "xmark.circle.fill")
2022-12-10 06:49:36 +05:30
.imageScale(.medium)
2021-11-28 20:07:55 +05:30
}
.buttonStyle(PlainButtonStyle())
2022-12-10 06:49:36 +05:30
#if os(macOS)
.padding(.trailing, 5)
#elseif os(iOS)
.padding(.trailing, 5)
.foregroundColor(.gray)
2022-12-10 06:49:36 +05:30
#endif
.opacity(0.7)
2021-11-28 20:07:55 +05:30
}
}