902e8c3950
Changelog-Fixed: Fixed AddMuteItemView to trim leading and trailing whitespaces from mute text and disallow adding text with only whitespaces Signed-off-by: Terry Yiu <git@tyiu.xyz>
121 lines
4.2 KiB
Swift
121 lines
4.2 KiB
Swift
//
|
|
// AddMuteItemView.swift
|
|
// damus
|
|
//
|
|
// Created by Charlie Fish on 1/10/24.
|
|
//
|
|
import SwiftUI
|
|
|
|
struct AddMuteItemView: View {
|
|
let state: DamusState
|
|
@Binding var new_text: String
|
|
@State var expiration: DamusDuration = .indefinite
|
|
|
|
@Environment(\.dismiss) var dismiss
|
|
|
|
var trimmedText: String {
|
|
new_text.trimmingCharacters(in: .whitespaces)
|
|
}
|
|
|
|
var body: some View {
|
|
VStack {
|
|
Text("Add mute item", comment: "Title text to indicate user to an add an item to their mutelist.")
|
|
.font(.system(size: 20, weight: .bold))
|
|
.padding(.vertical)
|
|
|
|
Divider()
|
|
.padding(.bottom)
|
|
|
|
Picker(selection: $expiration) {
|
|
ForEach(DamusDuration.allCases, id: \.self) { duration in
|
|
Text(duration.title).tag(duration)
|
|
}
|
|
} label: {
|
|
Text("Duration", comment: "The duration in which to mute the given item.")
|
|
}
|
|
|
|
let trimmedText = self.trimmedText
|
|
|
|
HStack {
|
|
Label("", image: "copy2")
|
|
.onTapGesture {
|
|
if let pasted_text = UIPasteboard.general.string {
|
|
self.new_text = pasted_text.trimmingCharacters(in: .whitespaces)
|
|
}
|
|
}
|
|
TextField(NSLocalizedString("npub, #hashtag, phrase", comment: "Placeholder example for relay server address."), text: $new_text)
|
|
.autocorrectionDisabled(true)
|
|
.textInputAutocapitalization(.never)
|
|
|
|
Label("", image: "close-circle")
|
|
.foregroundColor(.accentColor)
|
|
.opacity(trimmedText.isEmpty ? 0.0 : 1.0)
|
|
.onTapGesture {
|
|
self.new_text = ""
|
|
}
|
|
}
|
|
.padding(10)
|
|
.background(.secondary.opacity(0.2))
|
|
.cornerRadius(10)
|
|
|
|
Button(action: {
|
|
let expiration_date: Date? = self.expiration.date_from_now
|
|
let mute_item: MuteItem? = {
|
|
if trimmedText.starts(with: "npub") {
|
|
if let pubkey: Pubkey = bech32_pubkey_decode(trimmedText) {
|
|
return .user(pubkey, expiration_date)
|
|
} else {
|
|
return nil
|
|
}
|
|
} else if trimmedText.starts(with: "#") {
|
|
// Remove the starting `#` character
|
|
return .hashtag(Hashtag(hashtag: String("\(trimmedText)".dropFirst())), expiration_date)
|
|
} else {
|
|
return .word(trimmedText, expiration_date)
|
|
}
|
|
}()
|
|
|
|
// Actually update & relay the new mute list
|
|
if let mute_item {
|
|
let existing_mutelist = state.mutelist_manager.event
|
|
|
|
guard
|
|
let full_keypair = state.keypair.to_full(),
|
|
let mutelist = create_or_update_mutelist(keypair: full_keypair, mprev: existing_mutelist, to_add: mute_item)
|
|
else {
|
|
return
|
|
}
|
|
|
|
state.mutelist_manager.set_mutelist(mutelist)
|
|
state.postbox.send(mutelist)
|
|
}
|
|
|
|
new_text = ""
|
|
|
|
this_app.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
|
|
|
|
dismiss()
|
|
}) {
|
|
HStack {
|
|
Text("Add mute item", comment: "Button to an add an item to the user's mutelist.")
|
|
.bold()
|
|
}
|
|
.frame(minWidth: 300, maxWidth: .infinity, alignment: .center)
|
|
}
|
|
.buttonStyle(GradientButtonStyle(padding: 10))
|
|
.padding(.vertical)
|
|
.opacity(trimmedText.isEmpty ? 0.5 : 1.0)
|
|
.disabled(trimmedText.isEmpty)
|
|
|
|
Spacer()
|
|
}
|
|
.padding()
|
|
}
|
|
}
|
|
|
|
struct AddMuteItemView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
AddMuteItemView(state: test_damus_state, new_text: .constant(""))
|
|
}
|
|
}
|