This commit is contained in:
Михаил Капелько
2024-01-26 18:41:05 +03:00
parent 472af2e766
commit b9ca315dad
5 changed files with 47 additions and 18 deletions

View File

@@ -1,10 +1,14 @@
version: 2
model:
activeIds: [[String], []]
activityDates: [[String:Date], [:]]
service:
actions:
shouldResetActivityDates: Bus.send(K.activityDates, v)
pipes:
activeIds: [recent, K.activeIds]
activityDates: [recent, K.activityDates]
world:

View File

@@ -11,6 +11,7 @@ import UIKit
// MARK: - Context
public protocol MicContext {
var activeIds: MPAK.Recent<[String]> { get }
var activityDates: MPAK.Recent<[String:Date]> { get }
}
@@ -32,6 +33,7 @@ extension Mic {
// MARK: - Model
public struct Model: MicContext {
public var activeIds: MPAK.Recent<[String]> = .init([])
public var activityDates: MPAK.Recent<[String:Date]> = .init([:])
}
@@ -76,10 +78,28 @@ extension Mic {
) {
// MARK: - SectionGenerated Service Actions
ctrl.m
.compactMap { shouldResetActivityDates($0) }
.receive(on: DispatchQueue.main)
.sink { v in Bus.send(K.activityDates, v) }
.store(in: &service.subscriptions)
// MARK: - SectionGenerated Service Pipes
ctrl.pipeValue(
dbg: "activeI",
sub: nil,
Bus.events.compactMap { Bus.convertKeyValue(K.activeIds, $0) }.map { (k: String, v: [String]) in v }.eraseToAnyPublisher(),
{
$0.activeIds.value = $1
$0.activeIds.isRecent = true
},
{ m, _ in m.activeIds.isRecent = false }
)
ctrl.pipeValue(
dbg: "activityD",
sub: nil,

View File

@@ -1,5 +1,6 @@
public extension Mic {
enum K {
public static let activeIds = "Mic.activeIds"
public static let activityDate = "Mic.activityDate"
public static let activityDates = "Mic.activityDates"
public static let isActive = "Mic.isActive"

View File

@@ -0,0 +1,12 @@
public extension Mic {
/// Следует обновить словарь состояний звуковой активности
///
/// Условия:
/// 1. ???
///
/// - Returns: Словарь активных состояний
static func shouldResetActivityDates(_ c: MicContext) -> [String: Date]? {
return nil
}
}