Revert "WIP: swipe actions for global search screen"

This reverts commit 5894197306.
pull/891/head
Ryan ZHAO 1 year ago
parent 5894197306
commit e7c40ac04d

@ -27,7 +27,6 @@ abstract_target 'GlobalDependencies' do
pod 'NVActivityIndicatorView'
pod 'YYImage/libwebp', git: 'https://github.com/signalapp/YYImage'
pod 'DifferenceKit'
pod 'SwipeActions'
target 'SessionTests' do
inherit! :complete

@ -44,7 +44,6 @@ PODS:
- SQLCipher/standard (4.5.3):
- SQLCipher/common
- SwiftProtobuf (1.5.0)
- SwipeActions (0.3.3)
- WebRTC-lib (114.0.0)
- xcbeautify (0.17.0)
- YapDatabase/SQLCipher (3.1.1):
@ -128,7 +127,6 @@ DEPENDENCIES:
- Sodium (from `https://github.com/oxen-io/session-ios-swift-sodium.git`, branch `session-build`)
- SQLCipher (~> 4.5.3)
- SwiftProtobuf (~> 1.5.0)
- SwipeActions
- WebRTC-lib
- xcbeautify
- YapDatabase/SQLCipher (from `https://github.com/oxen-io/session-ios-yap-database.git`, branch `signal-release`)
@ -149,7 +147,6 @@ SPEC REPOS:
- SAMKeychain
- SQLCipher
- SwiftProtobuf
- SwipeActions
- WebRTC-lib
- xcbeautify
@ -203,12 +200,11 @@ SPEC CHECKSUMS:
Sodium: a7d42cb46e789d2630fa552d35870b416ed055ae
SQLCipher: 57fa9f863fa4a3ed9dd3c90ace52315db8c0fdca
SwiftProtobuf: 241400280f912735c1e1b9fe675fdd2c6c4d42e2
SwipeActions: 3c35871b408cab23ea67f3946a650356795250d2
WebRTC-lib: d83df8976fa608b980f1d85796b3de66d60a1953
xcbeautify: 6e2f57af5c3a86d490376d5758030a8dcc201c1b
YapDatabase: b418a4baa6906e8028748938f9159807fd039af4
YYImage: f1ddd15ac032a58b78bbed1e012b50302d318331
PODFILE CHECKSUM: 27f8a988cf382c38e480ea914df9d0899bab1ed9
PODFILE CHECKSUM: dd814a5a92577bb2a94dac6a1cc482f193721cdf
COCOAPODS: 1.15.0

@ -8,7 +8,6 @@ import SessionMessagingKit
import SessionUtilitiesKit
import SignalUtilitiesKit
import SignalCoreKit
import SwipeActions
enum SearchSection: Int, Differentiable {
case noResults
@ -32,7 +31,6 @@ struct GlobalSearchScreen: View {
@State private var readConnection: Atomic<Database?> = Atomic(nil)
@State private var termForCurrentSearchResultSet: String = ""
@State private var lastSearchText: String?
@State private var swipeState: SwipeActions.SwipeState = .untouched
fileprivate static var defaultSearchResults: [SectionModel] = {
let result: [SessionThreadViewModel]? = Storage.shared.read { db -> [SessionThreadViewModel]? in
@ -189,50 +187,6 @@ struct GlobalSearchScreen: View {
}()
)
}
.addSwipeAction(
edge: .trailing,
state: $swipeState
) {
Button {
} label: {
VStack {
Image("icon_bin")
.renderingMode(.template)
.foregroundColor(themeColor: .textPrimary)
Text("TXT_DELETE_TITLE".localized())
.foregroundColor(themeColor: .textPrimary)
}
}
.frame(width: 60)
.frame(maxHeight: .infinity)
.contentShape(Rectangle())
.backgroundColor(themeColor: .danger)
}
Text("Text")
.addSwipeAction(
edge: .trailing,
state: $swipeState
) {
Button {
} label: {
VStack {
Image("icon_bin")
.renderingMode(.template)
.foregroundColor(themeColor: .textPrimary)
Text("TXT_DELETE_TITLE".localized())
.font(.system(size: Values.mediumFontSize))
.foregroundColor(themeColor: .textPrimary)
}
}
.frame(width: 100)
.frame(maxHeight: .infinity)
.contentShape(Rectangle())
.backgroundColor(themeColor: .danger)
}
}
}
}
@ -361,6 +315,9 @@ struct SearchResultCell: View {
var action: () -> Void
var body: some View {
Button {
action()
} label: {
HStack(
alignment: .center,
spacing: Values.mediumSpacing
@ -454,9 +411,6 @@ struct SearchResultCell: View {
Spacer(minLength: 0)
}
.padding(.leading, Values.mediumSpacing)
.contentShape(Rectangle())
.onTapGesture {
action()
}
}

Loading…
Cancel
Save