Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[refactor] ObservablePattern 다중 구독 구현하기 #387

Merged
merged 2 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 26 additions & 7 deletions KkuMulKum/Resource/ObservablePattern/ObservablePattern.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,42 +10,61 @@ import Foundation
class ObservablePattern<T> {
var value: T {
didSet {
listener?(value)
notifyListeners(value)
}
}

private var listener: ((T) -> Void)?
typealias Listener = (T) -> Void

private var listeners: [Listener] = []
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

캬...


init(_ value: T) {
self.value = value
}

private func notifyListeners(_ value: T) {
for listener in listeners {
listener(value)
}
}

Comment on lines +25 to +30
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

더 간편해졌군요!! 감사합니닷 ㅎㅎ

func bind(_ listener: @escaping (T) -> Void) {
self.listener = listener
listeners.append(listener)

listener(value)
}

func bind<Object: AnyObject>(with object: Object, _ listener: @escaping (Object, T) -> Void) {
self.listener = { [weak object] value in
listeners.append { [weak object] value in
guard let object else { return }
listener(object, value)
}

listener(object, value)
}

func bindOnMain(_ listener: @escaping (T) -> Void) {
self.listener = { value in
listeners.append { value in
DispatchQueue.main.async {
listener(value)
}
}

DispatchQueue.main.async {
listener(self.value)
}
}

func bindOnMain<Object: AnyObject>(with object: Object, _ listener: @escaping (Object, T) -> Void) {
self.listener = { [weak object] value in
listeners.append { [weak object] value in
guard let object else { return }
DispatchQueue.main.async {
listener(object, value)
}
}

DispatchQueue.main.async {
listener(object, self.value)
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ protocol PromiseServiceProtocol {
func deletePromise(promiseID: Int) async throws -> ResponseBodyDTO<EmptyModel>?
func exitPromise(promiseID: Int) async throws -> ResponseBodyDTO<EmptyModel>?
}