d
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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"
|
||||
|
||||
12
Modules/MicX/Mic/src/Mic.Shoulds.swift
Normal file
12
Modules/MicX/Mic/src/Mic.Shoulds.swift
Normal file
@@ -0,0 +1,12 @@
|
||||
public extension Mic {
|
||||
/// Следует обновить словарь состояний звуковой активности
|
||||
///
|
||||
/// Условия:
|
||||
/// 1. ???
|
||||
///
|
||||
/// - Returns: Словарь активных состояний
|
||||
static func shouldResetActivityDates(_ c: MicContext) -> [String: Date]? {
|
||||
|
||||
return nil
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user