Михаил Капелько 9 달 전
부모
커밋
4bb34d212a
2개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. +1
    -1
      Modules/MicX/MicItem/MicItem.yml
  2. +6
    -6
      Modules/MicX/MicItem/src/MicItem.Generated.swift

+ 1
- 1
Modules/MicX/MicItem/MicItem.yml 파일 보기

@@ -1,4 +1,4 @@
version: 5

activityDates: [Date?, nil, recent]
activityDate: [Date?, nil, recent]
timeout: [Bool, false, toggle]

+ 6
- 6
Modules/MicX/MicItem/src/MicItem.Generated.swift 파일 보기

@@ -11,7 +11,7 @@ import UIKit
// MARK: - Context

public protocol MicItemContext {
var activityDates: MPAK.Recent<Date?> { get }
var activityDate: MPAK.Recent<Date?> { get }
var timeout: Bool { get }
}

@@ -20,7 +20,7 @@ extension MicItem {
// MARK: - Model

public struct Model: MicItemContext {
public var activityDates: MPAK.Recent<Date?> = .init(nil)
public var activityDate: MPAK.Recent<Date?> = .init(nil)
public var timeout: Bool = false
}

@@ -45,12 +45,12 @@ extension MicItem {

pipeValue(
dbg: "activityD",
Bus.events.compactMap { Bus.convertKeyValue(Bus.keyId(K.activityDates, id), $0) }.map { (k: String, v: Date?) in v }.eraseToAnyPublisher(),
Bus.events.compactMap { Bus.convertKeyValue(Bus.keyId(K.activityDate, id), $0) }.map { (k: String, v: Date?) in v }.eraseToAnyPublisher(),
{
$0.activityDates.value = $1
$0.activityDates.isRecent = true
$0.activityDate.value = $1
$0.activityDate.isRecent = true
},
{ m, _ in m.activityDates.isRecent = false }
{ m, _ in m.activityDate.isRecent = false }
)
pipe(
dbg: "timeout",


불러오는 중...
취소
저장