Михаил Капелько 1年前
コミット
e01477b228
1個のファイルの変更14行の追加14行の削除
  1. +14
    -14
      src/VM.swift

+ 14
- 14
src/VM.swift ファイルの表示

@@ -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
)
}
}

読み込み中…
キャンセル
保存