Михаил Капелько hace 1 año
padre
commit
e01477b228
Se han modificado 1 ficheros con 14 adiciones y 14 borrados
  1. +14
    -14
      src/VM.swift

+ 14
- 14
src/VM.swift Ver fichero

@@ -12,20 +12,20 @@ final class VM: ObservableObject {

init() {
Bus.send(
MeetupId.K.meetupIdTextUI.rawValue,
$text
// Исключаем конфликты от UI и App путём игнорирования спама.
.debounce(for: .seconds(0.3), scheduler: DispatchQueue.main)
.compactMap(onlyAcceptUIText)
.eraseToAnyPublisher(),
sub: &subscriptions
)
MeetupId.K.meetupIdTextUI.rawValue,
$text
// Исключаем конфликты от UI и App путём игнорирования спама.
.debounce(for: .seconds(0.3), scheduler: DispatchQueue.main)
.compactMap(onlyAcceptUIText)
.eraseToAnyPublisher(),
sub: &subscriptions
)

Bus.receive(
[MeetupId.K.meetupIdTextApp.rawValue],
{ [weak self] (_, v: String) in self?.text = "a:\(v)" },
opt: [.async],
sub: &subscriptions
)
Bus.receive(
[MeetupId.K.meetupIdTextApp.rawValue],
{ [weak self] (_, v: String) in self?.text = "a:\(v)" },
opt: [.async],
sub: &subscriptions
)
}
}

Cargando…
Cancelar
Guardar