Михаил Капелько 10 months ago
parent
commit
47f8109c0b
3 changed files with 3 additions and 6 deletions
  1. +1
    -1
      Modules/CordX/src/Cord.Button.swift
  2. +2
    -2
      Modules/MeetupIdX/src/MeetupId.Generated.swift
  3. +0
    -3
      Utilities/platform/2/generation/pipeBusSource.py

+ 1
- 1
Modules/CordX/src/Cord.Button.swift View File

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


+ 2
- 2
Modules/MeetupIdX/src/MeetupId.Generated.swift 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 }
)


+ 0
- 3
Utilities/platform/2/generation/pipeBusSource.py 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)

Loading…
Cancel
Save