-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,361 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
54 changes: 54 additions & 0 deletions
54
apps/mobile/metro-now/common/components/countdown.view.swift
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
import SwiftUI | ||
|
||
struct CountdownView: View { | ||
typealias CustomFormatFunctionType = (_ formattedTime: String) -> String | ||
|
||
let targetDate: Date | ||
let customFunction: CustomFormatFunctionType | ||
|
||
init(targetDate: Date, customFunction: CustomFormatFunctionType? = nil) { | ||
self.targetDate = targetDate | ||
self.customFunction = customFunction ?? { $0 } | ||
} | ||
|
||
@State private var timeRemaining: TimeInterval = 0 | ||
|
||
private let timer = Timer.publish(every: 0.1, on: .main, in: .common).autoconnect() | ||
|
||
var body: some View { | ||
Text(formattedTime) | ||
.onAppear { | ||
updateRemainingTime() | ||
} | ||
.onReceive(timer) { _ in | ||
updateRemainingTime() | ||
} | ||
} | ||
|
||
private var formattedTime: String { | ||
let remainingTime = abs(timeRemaining) | ||
let hours = Int(remainingTime) / 3600 | ||
let minutes = Int(remainingTime) % 3600 / 60 | ||
let seconds = Int(remainingTime) % 60 | ||
let isNegative = Bool(timeRemaining < 0) | ||
|
||
var res = isNegative ? "-" : "" | ||
|
||
if hours > 0 { | ||
res += "\(hours)h \(minutes)m" | ||
} else if minutes > 0 { | ||
res += "\(minutes)m \(seconds)s" | ||
} else { | ||
res += "\(seconds)s" | ||
} | ||
|
||
return customFunction(res) | ||
} | ||
|
||
private func updateRemainingTime() { | ||
timeRemaining = targetDate.timeIntervalSinceNow | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
let ENDPOINT: String = "https://api.metronow.dev" |
29 changes: 29 additions & 0 deletions
29
apps/mobile/metro-now/common/managers/location-manager.swift
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
import SwiftUI | ||
|
||
import CoreLocation | ||
import Foundation | ||
|
||
class LocationManager: NSObject, ObservableObject, CLLocationManagerDelegate { | ||
private let locationManager = CLLocationManager() | ||
|
||
@Published var location: CLLocation? | ||
|
||
override init() { | ||
super.init() | ||
locationManager.delegate = self | ||
locationManager.desiredAccuracy = kCLLocationAccuracyBest | ||
locationManager.requestWhenInUseAuthorization() | ||
locationManager.startUpdatingLocation() | ||
} | ||
|
||
func locationManager(_: CLLocationManager, didUpdateLocations locations: [CLLocation]) { | ||
if let location = locations.first { | ||
DispatchQueue.main.async { | ||
self.location = location | ||
} | ||
} | ||
} | ||
} |
120 changes: 120 additions & 0 deletions
120
apps/mobile/metro-now/common/managers/network-manager.swift
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
import Foundation | ||
|
||
final class NetworkManager { | ||
static let shared = NetworkManager() | ||
|
||
private init() {} | ||
|
||
func getMetroStops( | ||
completed: @escaping (Result<[ApiStop], FetchErrorNew>) -> Void | ||
) { | ||
guard let url = URL(string: "\(ENDPOINT)/stop/all?metroOnly=true") else { | ||
completed(.failure(.invalidUrl)) | ||
return | ||
} | ||
|
||
let task = URLSession.shared.dataTask( | ||
with: URLRequest(url: url) | ||
) { | ||
data, response, error in | ||
|
||
if let _ = error { | ||
completed(.failure(.general)) | ||
return | ||
} | ||
|
||
guard let response = response as? HTTPURLResponse, response.statusCode == 200 else { | ||
completed(.failure(.invalidResponse)) | ||
return | ||
} | ||
|
||
guard let data else { | ||
completed(.failure(.invalidData)) | ||
return | ||
} | ||
|
||
do { | ||
let decoder = JSONDecoder() | ||
let decodedResponse = try decoder.decode([ApiStop].self, from: data) | ||
completed(.success(decodedResponse)) | ||
return | ||
} catch { | ||
completed(.failure(.invalidData)) | ||
return | ||
} | ||
} | ||
|
||
task.resume() | ||
} | ||
|
||
func getDepartures( | ||
stopIds: [String], platformIds: [String], completed: @escaping (Result<[ApiDeparture], FetchErrorNew>) -> Void | ||
) { | ||
guard let baseUrl = URL(string: "\(ENDPOINT)/departure") else { | ||
completed(.failure(.invalidUrl)) | ||
return | ||
} | ||
|
||
let platformsQueryParams: [URLQueryItem] = platformIds.map { | ||
URLQueryItem(name: "platform[]", value: $0) | ||
} | ||
let stopsQueryParams: [URLQueryItem] = stopIds.map { | ||
URLQueryItem(name: "stop[]", value: $0) | ||
} | ||
|
||
let url = baseUrl | ||
.appending(queryItems: stopsQueryParams + platformsQueryParams + [ | ||
URLQueryItem(name: "metroOnly", value: "true"), | ||
]) | ||
|
||
|
||
let task = URLSession.shared.dataTask( | ||
with: URLRequest(url: url) | ||
) { | ||
data, response, error in | ||
|
||
if let _ = error { | ||
completed(.failure(.general)) | ||
return | ||
} | ||
|
||
guard let response = response as? HTTPURLResponse, response.statusCode == 200 else { | ||
completed(.failure(.invalidResponse)) | ||
return | ||
} | ||
|
||
guard let data else { | ||
completed(.failure(.invalidData)) | ||
return | ||
} | ||
|
||
do { | ||
let decoder = JSONDecoder() | ||
decoder.dateDecodingStrategy = .iso8601 | ||
|
||
let decodedResponse = try decoder.decode( | ||
[ApiDeparture].self, | ||
from: data | ||
) | ||
|
||
completed(.success(decodedResponse)) | ||
return | ||
} catch { | ||
completed(.failure(.invalidData)) | ||
return | ||
} | ||
} | ||
|
||
task.resume() | ||
} | ||
} | ||
|
||
enum FetchErrorNew: Error { | ||
case invalidUrl | ||
case invalidResponse | ||
case invalidData | ||
case general | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
import Foundation | ||
|
||
struct ApiStop: Codable { | ||
let id, name: String | ||
let avgLatitude, avgLongitude: Double | ||
let platforms: [ApiPlatform] | ||
} | ||
|
||
struct ApiPlatform: Codable { | ||
let id: String | ||
let latitude, longitude: Double | ||
let name: String | ||
let isMetro: Bool | ||
let routes: [ApiRoute] | ||
} | ||
|
||
struct ApiRoute: Codable { | ||
let id, name: String | ||
} | ||
|
||
struct ApiDepartureDate: Codable { | ||
let predicted: Date | ||
let scheduled: Date | ||
} | ||
|
||
struct ApiDeparture: Codable { | ||
let platformId: String | ||
let headsign: String | ||
|
||
let departure: ApiDepartureDate | ||
let delay: Int | ||
|
||
let route: String | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
enum MetroLine: String { | ||
case A | ||
case B | ||
case C | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
import SwiftUI | ||
|
||
func getMetroLineColor(_ line: MetroLine?) -> Color? { | ||
switch line { | ||
case .A: .green | ||
case .B: .yellow | ||
case .C: .red | ||
default: nil | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
// metro-now | ||
// https://github.com/krystxf/metro-now | ||
|
||
func shortenStopName(_ stop: String) -> String { | ||
if stop == "Nemocnice Motol" { | ||
return "N. Motol" | ||
} else if stop == "Jiřího z Poděbrad" { | ||
return "J. z Poděbrad" | ||
} else if stop == "Pražského povstání" { | ||
return "P. povstání" | ||
} else if stop == "Depo Hostivař" { | ||
return "D. Hostivař" | ||
} | ||
|
||
if stop.hasPrefix("Nádraží") { | ||
return stop.replacingOccurrences(of: "Nádraží", with: "N.") | ||
} else if stop.hasSuffix("nádraží") { | ||
return stop.replacingOccurrences(of: "nádraží", with: "nádr.") | ||
} | ||
|
||
if stop.hasPrefix("Náměstí") { | ||
return stop.replacingOccurrences(of: "Náměstí", with: "Nám.") | ||
} else if stop.hasSuffix("náměstí") { | ||
return stop.replacingOccurrences(of: "náměstí", with: "nám") | ||
} | ||
|
||
return stop | ||
} | ||
|
||
// All metro stops | ||
/* | ||
Anděl | ||
Bořislavka | ||
Bubenská | ||
Budějovická | ||
Černý Most | ||
Českomoravská | ||
Dejvická | ||
Depo Hostivař | ||
Flora | ||
Florenc | ||
Háje | ||
Hlavní nádraží | ||
Hloubětín | ||
Hradčanská | ||
Hůrka | ||
Chodov | ||
I. P. Pavlova | ||
Invalidovna | ||
Jinonice | ||
Jiřího z Poděbrad | ||
Kačerov | ||
Karlovo náměstí | ||
Kobylisy | ||
Kolbenova | ||
Křižíkova | ||
Ládví | ||
Letňany | ||
Luka | ||
Lužiny | ||
Malostranská | ||
Masarykovo nádraží | ||
Můstek | ||
Muzeum | ||
Nádraží Holešovice | ||
Nádraží Veleslavín | ||
Nádraží Vysočany | ||
Náměstí Míru | ||
Národní třída | ||
Nemocnice Motol | ||
Nové Butovice | ||
Opatov | ||
Palmovka | ||
Pankrác | ||
Petřiny | ||
Praha-Rajská zahrada | ||
Praha-Smíchov | ||
Pražského povstání | ||
Prosek | ||
Radlická | ||
Roztyly | ||
Skalka | ||
Staroměstská | ||
Stodůlky | ||
Strašnická | ||
Střížkov | ||
Vyšehrad | ||
Zličín | ||
Želivského | ||
*/ |
11 changes: 11 additions & 0 deletions
11
apps/mobile/metro-now/metro-now Watch App/Assets.xcassets/AccentColor.colorset/Contents.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"colors": [ | ||
{ | ||
"idiom": "universal" | ||
} | ||
], | ||
"info": { | ||
"author": "xcode", | ||
"version": 1 | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
apps/mobile/metro-now/metro-now Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"images": [ | ||
{ | ||
"idiom": "universal", | ||
"platform": "watchos", | ||
"size": "1024x1024" | ||
} | ||
], | ||
"info": { | ||
"author": "xcode", | ||
"version": 1 | ||
} | ||
} |
Oops, something went wrong.