Проверка шаблона шины для iOS

55 line
1.5KB

  1. import Combine
  2. import Foundation
  3. enum MeetupId {
  4. enum Keys: String, RawRepresentable {
  5. case meetupIdTextApp
  6. case meetupIdTextUI
  7. }
  8. static func shouldFormat(_ s: String) -> String? {
  9. s.components(separatedBy: NSCharacterSet.decimalDigits.inverted).reduce("") { $0 + $1 }
  10. }
  11. final class MeetupIdFormatter {
  12. var subscriptions = Set<AnyCancellable>()
  13. deinit {
  14. /**/print("ИГР MeetupIF.DEinit")
  15. }
  16. init() {
  17. Bus.receive(
  18. &subscriptions,
  19. [Keys.meetupIdTextUI.rawValue],
  20. { [weak self] k, v in self?.handleFormatting(k, v) }
  21. )
  22. /**/print("ИГР MeetupIF.init")
  23. }
  24. func handleFormatting(_: String, _ value: String) {
  25. let out = MeetupId.shouldFormat(value)
  26. /**/print("ИГР MeetupIF.handleF out/dt: '\(out)'/'\(Date())'")
  27. Bus.Service.singleton?.send(Keys.meetupIdTextApp.rawValue, out)
  28. }
  29. }
  30. /*
  31. struct V: View {
  32. /*@StateObject*/ var fmt = MeetupIdFormatter()
  33. @StateObject var txt = Bus.BindingPipe("", Keys.meetupIdTextApp.rawValue, Keys.meetupIdTextUI.rawValue)
  34. var body: some View {
  35. VStack {
  36. Text("Hi, the text is: '\(txt.value)'")
  37. .fontWeight(.bold)
  38. TextField("Placeholder", text: $txt.value)
  39. .padding(8)
  40. .border(Color.blue, width: 2)
  41. }
  42. .frame(width: 320)
  43. .padding()
  44. }
  45. }
  46. */
  47. }