This commit is contained in:
Михаил Капелько
2024-01-08 16:10:55 +03:00
parent 65977e902f
commit e7975f151c
2 changed files with 9 additions and 2 deletions

View File

@@ -8,6 +8,11 @@ extension BusUI {
let textUI: String
@Published public var id: String?
@Published public var v = "a:"
{
didSet {
/**/print("ИГР BusUMTF.v didSet: '\(v)'")
}
}
var subscriptions = [AnyCancellable]()
var sub = [AnyCancellable]()
@@ -52,6 +57,7 @@ extension BusUI {
Bus.receiveSync(
[textApp],
{ [weak self] (_, m: MPAK.Many<String>) in
/**/print("ИГР BusUMTF.receiveS-1 id: '\(id)'")
guard
let id,
m.keys.contains(id),
@@ -59,6 +65,7 @@ extension BusUI {
else {
return
}
/**/print("ИГР BusUMTF.receiveS-2 id: '\(id)'")
self?.v = "a:\(text)"
},

View File

@@ -70,7 +70,7 @@ public extension MeetupId {
let text = c.testTextUI.dict[id] ?? ""
d[id] = formatId(text)
}
let r = .init(c.testTextUI.keys, d)
let r = MPAK.Many(c.testTextUI.keys, d)
/**/print("ИГР MeetupIS.shouldMRT-3 r: '\(r)'")
return r
}