This commit is contained in:
Михаил Капелько
2023-12-30 09:44:39 +03:00
parent 6446a413b2
commit 47f8109c0b
3 changed files with 3 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ extension Cord {
public init(_ key: String) {
Bus.send(
key,
v.eraseToAnyPublisher(),
v.map { true }.eraseToAnyPublisher(),
sub: &subscriptions
)
}

View File

@@ -98,7 +98,7 @@ extension MeetupId {
ctrl.pipe(
dbg: "finishL",
sub: nil,
Bus.events.compactMap { Bus.convertKeyValue(K.finishLoading, $0) }.map { (k: String, v: Void) in v }.eraseToAnyPublisher(),
Bus.events.compactMap { Bus.convertKeyValue(K.finishLoading, $0) }.map { (k: String, v: Bool) in v }.eraseToAnyPublisher(),
{ $0.finishLoading = true },
{ $0.finishLoading = false }
)
@@ -124,7 +124,7 @@ extension MeetupId {
ctrl.pipe(
dbg: "join",
sub: nil,
Bus.events.compactMap { Bus.convertKeyValue(K.join, $0) }.map { (k: String, v: Void) in v }.eraseToAnyPublisher(),
Bus.events.compactMap { Bus.convertKeyValue(K.join, $0) }.map { (k: String, v: Bool) in v }.eraseToAnyPublisher(),
{ $0.join = true },
{ $0.join = false }
)

View File

@@ -1,8 +1,5 @@
def pipeBusSource(name, entity, busKey, structure, fmt):
valueType = structure.model.fields[name][0]
if "toggle" in entity.pipes[name]:
valueType = "Void"
return fmt \
.replace("%BUS_KEY%", busKey) \
.replace("%BUS_VALUE_TYPE%", valueType)