This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import BackgroundTasks | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | |
BGTaskScheduler.shared.register( | |
forTaskWithIdentifier: "pl.snowdog.example.refresh", | |
using: DispatchQueue.global() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Published private var query: String = "" | |
private func fetchRepos(matching query: String) { | |
$query.flatMap { | |
self.githubService | |
.search(matching: $0) | |
.replaceError(with: []) | |
} | |
.subscribe(on: DispatchQueue.global()) | |
.receive(on: OperationQueue.main) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private func fetchRepos(matching query: String) { | |
githubService | |
.search(matching: query) | |
.replaceError(with: []) | |
.subscribe(on: DispatchQueue.global()) | |
.receive(on: OperationQueue.main) | |
.assign(to: \.repos, on: self) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let subject = CurrentValueSubject<String, Never>("Hello") | |
subject.sink { value in print(value) } | |
subject.send("World") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private func fetchRepos(matching query: String) { | |
githubService | |
.search(matching: query) | |
.replaceError(with: []) | |
.subscribe(on: DispatchQueue.global()) | |
.receive(on: OperationQueue.main) | |
.sink { repos in print("count:", repos.count) } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import Combine | |
class ViewController: UITableViewController { | |
private let githubService: GithubService | |
private var cancellable: AnyCancellable? | |
private var repos: [Repo] = [] { | |
didSet { | |
tableView.reloadData() | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Combine | |
struct Repo: Decodable { | |
var id: Int | |
let owner: Owner | |
let name: String | |
let description: String | |
struct Owner: Decodable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class StackViewController: UIViewController { | |
private let scrollView = UIScrollView() | |
private let stackView = UIStackView() | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
view.addSubview(scrollView) | |
scrollView.addSubview(stackView) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
override func layoutSubviews() { | |
super.layoutSubviews() | |
guard let max = values.max() else { return } | |
subviews.forEach { $0.removeFromSuperview() } | |
var x: CGFloat = Layout.barWidth | |
let maxHeight: CGFloat = bounds.height * Layout.maxHeightRatio | |
var accessibilityElements: [UIAccessibilityElement] = [] | |
values.forEach { value in | |
let height = CGFloat(value / max) * maxHeight |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class BarChartView: UIView { | |
private enum Layout { | |
static let barWidth: CGFloat = 30 | |
static let maxHeightRatio: CGFloat = 0.8 | |
} | |
var values: [Double] = [] { | |
didSet { |