Михаил Капелько 9 months ago
parent
commit
1d1e235d99
2 changed files with 10 additions and 2 deletions
  1. +1
    -1
      Modules/MicX/Mic/Mic.yml
  2. +9
    -1
      src/App.swift

+ 1
- 1
Modules/MicX/Mic/Mic.yml View File

@@ -6,7 +6,7 @@ model:


service: service:
actions: actions:
shouldResetActivityDates: Bus.send(K.activityDates, v)
shouldResetActivityDates: Bus.send(K.activityDates, v);Bus.deliver(K.activityDate, v)
pipes: pipes:
activeIds: [recent, K.activeIds] activeIds: [recent, K.activeIds]
activityDates: [recent, K.activityDates] activityDates: [recent, K.activityDates]


+ 9
- 1
src/App.swift View File

@@ -68,6 +68,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate
{ {
let meetupIS = MeetupId.Service(.init()) let meetupIS = MeetupId.Service(.init())
let micS = Mic.Service(.init()) let micS = Mic.Service(.init())
var subscriptions = [AnyCancellable]()
var window: UIWindow? var window: UIWindow?


func application( func application(
@@ -83,6 +84,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate
window?.makeKeyAndVisible() window?.makeKeyAndVisible()


/**/print("ИГР App.didFLWO") /**/print("ИГР App.didFLWO")
printBus()
//testMic1() //testMic1()
//testMic2() //testMic2()
//testMic2_id("1") //testMic2_id("1")
@@ -94,6 +96,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate
testMic4() testMic4()
return true return true
} }

func printBus() {
Bus.events
.sink { v in print("ИГР App.printB k/v: '\(v.0)'/'\(v.1)'") }
.store(in: &subscriptions)
}
func testMic1() { func testMic1() {
DispatchQueue.main.asyncAfter(deadline: .now() + 1) { DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
@@ -117,7 +126,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate
} }
} }


var subscriptions = [AnyCancellable]()
func testMic2_id(_ id: String) { func testMic2_id(_ id: String) {
DispatchQueue.main.asyncAfter(deadline: .now() + 2) { DispatchQueue.main.asyncAfter(deadline: .now() + 2) {
Bus.send(Bus.keyId(Mic.K.activityDate, id), Date() + 2) Bus.send(Bus.keyId(Mic.K.activityDate, id), Date() + 2)


Loading…
Cancel
Save