Михаил Капелько 4 个月前
父节点
当前提交
9fb885b26d
共有 6 个文件被更改,包括 54 次插入10 次删除
  1. +16
    -0
      src/Cord.Button.swift
  2. +20
    -0
      src/Cord.ReadOnly.swift
  3. +1
    -1
      src/Cord.TextField.swift
  4. +4
    -0
      src/MeetupId.swift
  5. +12
    -7
      src/V.swift
  6. +1
    -2
      src/VM.swift

+ 16
- 0
src/Cord.Button.swift 查看文件

@@ -0,0 +1,16 @@
import Combine

extension Cord {
final class Button: ObservableObject {
let press = PassthroughSubject<Void, Never>()
var subscriptions = [AnyCancellable]()
init(_ key: String) {
Bus.send(
key,
press.eraseToAnyPublisher(),
sub: &subscriptions
)
}
}
}

+ 20
- 0
src/Cord.ReadOnly.swift 查看文件

@@ -0,0 +1,20 @@
import Combine

extension Cord {
final class ReadOnly<T>: ObservableObject {
@Published var value: T
var subscriptions = [AnyCancellable]()
init(
_ key: String,
_ defaultValue: T
) {
value = defaultValue
Bus.receive(
[key],
{ [weak self] (_, v: T) in self?.value = v },
sub: &subscriptions
)
}
}
}

+ 1
- 1
src/Cord.TextField.swift 查看文件

@@ -12,7 +12,7 @@ extension Cord {
) {
Bus.send(
textUI,
$value.compactMap(onlyUIText).eraseToAnyPublisher(),
$value.removeDuplicates().compactMap(onlyUIText).eraseToAnyPublisher(),
sub: &subscriptions
)


+ 4
- 0
src/MeetupId.swift 查看文件

@@ -7,6 +7,10 @@ enum MeetupId {
case meetupIdTextUI
}

static func onlyAllowJoin(_ s: String) -> Bool? {
s.hasPrefix("123")
}

static func onlyFormat(_ s: String) -> String? {
let digits = s.components(separatedBy: NSCharacterSet.decimalDigits.inverted).reduce("") { $0 + $1 }
var r = ""


+ 12
- 7
src/V.swift 查看文件

@@ -1,27 +1,32 @@
import SwiftUI

struct V: View {
@StateObject var tf = Cord.TextField("text.app", "text.ui")
@StateObject var vm = VM()
@StateObject var isJoinAvailable = Cord.ReadOnly("joinAvailable", false)
@StateObject var join = Cord.Button("join")
@StateObject var textF = Cord.TextField("text.app", "text.ui")
let test = Bus.Processor("text.ui", "joinAvailable", MeetupId.onlyAllowJoin)
var body: some View {
VStack {
HStack {
Text("Check text field:")
Text("'\(tf.value)'")
Text("'\(textF.value)'")
.fontWeight(.bold)
}

TextField("Binding-3", value: $tf.value, formatter: TextFieldValueOwner())
TextField("Binding-3", value: $textF.value, formatter: TextFieldValueOwner())
.padding(8)
.border(Color.blue, width: 2)

Button(action: vm.join.send) {
Button(action: join.press.send) {
Text("Join")
.padding(8)
.border(vm.isJoinAvailable ? Color.green : Color.red, width: 4)
.border(
isJoinAvailable.value ? Color.green : Color.gray,
width: isJoinAvailable.value ? 4 : 1
)
}

.disabled(!isJoinAvailable.value)
}
.frame(width: 320)
.padding()


+ 1
- 2
src/VM.swift 查看文件

@@ -10,8 +10,7 @@ final class VM: ObservableObject {
MeetupId.onlyFormat
)
*/
var isJoinAvailable = true
let join = PassthroughSubject<Void, Never>()
var isJoinAvailable = false
var subscriptions = [AnyCancellable]()

init() {


正在加载...
取消
保存