[Feature] Open Wikipedia app (#12)
This PR contains the work done to open the *Places* view of the **Wikipedia** app with the screen centered on the coordinates from a selected location in the `LocationsListViewController` view controller. To give further details about the work done: - [x] implemented the `wikipediaPlacesURL` property in the `Location+URLs` extension; - [x] improved the `LocationsListCoordination` protocol and the `LocationsListCoordinator` coordinator to support the opening of the Wikipedia app; - [x] improved the `LocationsListViewModeling` protocol and the `LocationsListViewModel` view model to support the opening of the Wikipedia app; - [x] implemented the "tableView(_: didSelectAt: )" function in the `LocationsListViewController` view controller; - [x] added the "wikipedia" to the Queried URL schemes in the Info.plist file to support querying to the Wikipedia app; - [x] improved the naming of some properties and functions in the `LocationsAddCoordination`, `LocationsListCoordination`, and `LocationsListViewModeling` protocols. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: rock-n-code/deep-linking-assignment#12
This commit is contained in:
parent
8ae955008e
commit
57f4b3c237
@ -1,5 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict/>
|
<dict>
|
||||||
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>wikipedia</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
@ -42,7 +42,7 @@ extension LocationsAddCoordinator: LocationsAddCoordination {
|
|||||||
|
|
||||||
// MARK: Functions
|
// MARK: Functions
|
||||||
|
|
||||||
func closeAddLocation() {
|
func closeLocationsAddScreen() {
|
||||||
router.dismiss(animated: true)
|
router.dismiss(animated: true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ extension LocationsListCoordinator: LocationsListCoordination {
|
|||||||
|
|
||||||
// MARK: Functions
|
// MARK: Functions
|
||||||
|
|
||||||
func openAddLocation() {
|
func openLocationsAddScreen() {
|
||||||
guard let viewController else {
|
guard let viewController else {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -61,4 +61,12 @@ extension LocationsListCoordinator: LocationsListCoordination {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func openWikipediaApp(with url: URL) {
|
||||||
|
guard UIApplication.shared.canOpenURL(url) else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
UIApplication.shared.open(url)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
46
Apps/Locations/Sources/Extensions/Location+URLs.swift
Normal file
46
Apps/Locations/Sources/Extensions/Location+URLs.swift
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
//
|
||||||
|
// Location+URLs.swift
|
||||||
|
// Locations
|
||||||
|
//
|
||||||
|
// Created by Javier Cicchelli on 13/04/2023.
|
||||||
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
import Foundation
|
||||||
|
import Persistence
|
||||||
|
|
||||||
|
extension Location {
|
||||||
|
|
||||||
|
var wikipediaPlacesURL: URL? {
|
||||||
|
var urlComponents = URLComponents()
|
||||||
|
|
||||||
|
urlComponents.scheme = .Scheme.wikipedia
|
||||||
|
urlComponents.host = .Host.places
|
||||||
|
urlComponents.queryItems = [
|
||||||
|
.init(
|
||||||
|
name: .Query.key,
|
||||||
|
value: .init(format: .Query.value, latitude, longitude)
|
||||||
|
)
|
||||||
|
]
|
||||||
|
|
||||||
|
return urlComponents.url
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: - String+Constants
|
||||||
|
|
||||||
|
private extension String {
|
||||||
|
enum Scheme {
|
||||||
|
static let wikipedia = "wikipedia"
|
||||||
|
}
|
||||||
|
|
||||||
|
enum Host {
|
||||||
|
static let places = "places"
|
||||||
|
}
|
||||||
|
|
||||||
|
enum Query {
|
||||||
|
static let key = "coordinates"
|
||||||
|
static let value = "%f,%f"
|
||||||
|
}
|
||||||
|
}
|
@ -10,6 +10,6 @@ protocol LocationsAddCoordination: AnyObject {
|
|||||||
|
|
||||||
// MARK: Functions
|
// MARK: Functions
|
||||||
|
|
||||||
func closeAddLocation()
|
func closeLocationsAddScreen()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,13 @@
|
|||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
import Foundation
|
||||||
|
|
||||||
protocol LocationsListCoordination: AnyObject {
|
protocol LocationsListCoordination: AnyObject {
|
||||||
|
|
||||||
// MARK: Functions
|
// MARK: Functions
|
||||||
|
|
||||||
func openAddLocation()
|
func openLocationsAddScreen()
|
||||||
|
func openWikipediaApp(with url: URL)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -17,14 +17,15 @@ protocol LocationsListViewModeling: AnyObject {
|
|||||||
var coordinator: LocationsListCoordination? { get set }
|
var coordinator: LocationsListCoordination? { get set }
|
||||||
|
|
||||||
var locationsDidChangePublisher: PassthroughSubject<[Change], Never> { get }
|
var locationsDidChangePublisher: PassthroughSubject<[Change], Never> { get }
|
||||||
|
var numberOfLocationSections: Int { get }
|
||||||
var viewStatusPublisher: Published<LocationsListViewStatus>.Publisher { get }
|
var viewStatusPublisher: Published<LocationsListViewStatus>.Publisher { get }
|
||||||
var numberOfSectionsInData: Int { get }
|
|
||||||
|
|
||||||
// MARK: Functions
|
// MARK: Functions
|
||||||
|
|
||||||
func openAddLocation()
|
|
||||||
func loadLocations()
|
func loadLocations()
|
||||||
func numberOfDataItems(in section: Int) -> Int
|
func location(at indexPath: IndexPath) -> Location
|
||||||
func dataItem(at indexPath: IndexPath) -> Location
|
func numberOfLocations(in section: Int) -> Int
|
||||||
|
func openLocationsAdd()
|
||||||
|
func openWikipedia(at indexPath: IndexPath)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ extension LocationsAddViewModel: LocationsAddViewModeling {
|
|||||||
longitude: location.longitude
|
longitude: location.longitude
|
||||||
)
|
)
|
||||||
|
|
||||||
coordinator?.closeAddLocation()
|
coordinator?.closeLocationsAddScreen()
|
||||||
}
|
}
|
||||||
|
|
||||||
func setLocation(latitude: Float, longitude: Float) {
|
func setLocation(latitude: Float, longitude: Float) {
|
||||||
|
@ -67,14 +67,14 @@ extension LocationsListViewController: UITableViewDataSource {
|
|||||||
// MARK: Functions
|
// MARK: Functions
|
||||||
|
|
||||||
func numberOfSections(in tableView: UITableView) -> Int {
|
func numberOfSections(in tableView: UITableView) -> Int {
|
||||||
viewModel.numberOfSectionsInData
|
viewModel.numberOfLocationSections
|
||||||
}
|
}
|
||||||
|
|
||||||
func tableView(
|
func tableView(
|
||||||
_ tableView: UITableView,
|
_ tableView: UITableView,
|
||||||
numberOfRowsInSection section: Int
|
numberOfRowsInSection section: Int
|
||||||
) -> Int {
|
) -> Int {
|
||||||
viewModel.numberOfDataItems(in: section)
|
viewModel.numberOfLocations(in: section)
|
||||||
}
|
}
|
||||||
|
|
||||||
func tableView(
|
func tableView(
|
||||||
@ -88,7 +88,7 @@ extension LocationsListViewController: UITableViewDataSource {
|
|||||||
return .init()
|
return .init()
|
||||||
}
|
}
|
||||||
|
|
||||||
let entity = viewModel.dataItem(at: indexPath)
|
let entity = viewModel.location(at: indexPath)
|
||||||
|
|
||||||
cell.update(
|
cell.update(
|
||||||
iconName: entity.source == .remote ? "network" : "house",
|
iconName: entity.source == .remote ? "network" : "house",
|
||||||
@ -104,7 +104,20 @@ extension LocationsListViewController: UITableViewDataSource {
|
|||||||
|
|
||||||
// MARK: - UITableViewDelegate
|
// MARK: - UITableViewDelegate
|
||||||
|
|
||||||
extension LocationsListViewController: UITableViewDelegate {}
|
extension LocationsListViewController: UITableViewDelegate {
|
||||||
|
|
||||||
|
// MARK: Functions
|
||||||
|
|
||||||
|
func tableView(
|
||||||
|
_ tableView: UITableView,
|
||||||
|
didSelectRowAt indexPath: IndexPath
|
||||||
|
) {
|
||||||
|
viewModel.openWikipedia(at: indexPath)
|
||||||
|
|
||||||
|
tableView.deselectRow(at: indexPath, animated: true)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// MARK: - Helpers
|
// MARK: - Helpers
|
||||||
|
|
||||||
@ -163,7 +176,7 @@ private extension LocationsListViewController {
|
|||||||
.store(in: &cancellables)
|
.store(in: &cancellables)
|
||||||
|
|
||||||
viewModel
|
viewModel
|
||||||
.controllerDidChangePublisher
|
.locationsDidChangePublisher
|
||||||
.sink(receiveValue: { [weak self] updates in
|
.sink(receiveValue: { [weak self] updates in
|
||||||
var movedToIndexPaths = [IndexPath]()
|
var movedToIndexPaths = [IndexPath]()
|
||||||
|
|
||||||
@ -199,7 +212,7 @@ private extension LocationsListViewController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@objc func addLocationPressed() {
|
@objc func addLocationPressed() {
|
||||||
viewModel.openAddLocation()
|
viewModel.openLocationsAdd()
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -42,15 +42,11 @@ extension LocationsListViewModel: LocationsListViewModeling {
|
|||||||
// MARK: Properties
|
// MARK: Properties
|
||||||
|
|
||||||
var locationsDidChangePublisher: PassthroughSubject<[Persistence.Change], Never> { locationProvider.didChangePublisher }
|
var locationsDidChangePublisher: PassthroughSubject<[Persistence.Change], Never> { locationProvider.didChangePublisher }
|
||||||
var numberOfSectionsInData: Int { locationProvider.numberOfSections }
|
var numberOfLocationSections: Int { locationProvider.numberOfSections }
|
||||||
var viewStatusPublisher: Published<LocationsListViewStatus>.Publisher { $viewStatus }
|
var viewStatusPublisher: Published<LocationsListViewStatus>.Publisher { $viewStatus }
|
||||||
|
|
||||||
// MARK: Functions
|
// MARK: Functions
|
||||||
|
|
||||||
func openAddLocation() {
|
|
||||||
coordinator?.openAddLocation()
|
|
||||||
}
|
|
||||||
|
|
||||||
func loadLocations() {
|
func loadLocations() {
|
||||||
Task {
|
Task {
|
||||||
do {
|
do {
|
||||||
@ -67,12 +63,25 @@ extension LocationsListViewModel: LocationsListViewModeling {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func numberOfDataItems(in section: Int) -> Int {
|
|
||||||
|
func location(at indexPath: IndexPath) -> Location {
|
||||||
|
locationProvider.location(at: indexPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
func numberOfLocations(in section: Int) -> Int {
|
||||||
locationProvider.numberOfLocationsInSection(section)
|
locationProvider.numberOfLocationsInSection(section)
|
||||||
}
|
}
|
||||||
|
|
||||||
func dataItem(at indexPath: IndexPath) -> Location {
|
func openLocationsAdd() {
|
||||||
locationProvider.location(at: indexPath)
|
coordinator?.openLocationsAddScreen()
|
||||||
|
}
|
||||||
|
|
||||||
|
func openWikipedia(at indexPath: IndexPath) {
|
||||||
|
guard let url = locationProvider.location(at: indexPath).wikipediaPlacesURL else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
coordinator?.openWikipediaApp(with: url)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -12,9 +12,10 @@
|
|||||||
02031EC929E60B29003C108C /* DependencyService+Keys.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031EC829E60B29003C108C /* DependencyService+Keys.swift */; };
|
02031EC929E60B29003C108C /* DependencyService+Keys.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031EC829E60B29003C108C /* DependencyService+Keys.swift */; };
|
||||||
02031EE829E68D9B003C108C /* LoadingSpinnerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031EE729E68D9B003C108C /* LoadingSpinnerView.swift */; };
|
02031EE829E68D9B003C108C /* LoadingSpinnerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031EE729E68D9B003C108C /* LoadingSpinnerView.swift */; };
|
||||||
02031EEA29E6B495003C108C /* ErrorMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031EE929E6B495003C108C /* ErrorMessageView.swift */; };
|
02031EEA29E6B495003C108C /* ErrorMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031EE929E6B495003C108C /* ErrorMessageView.swift */; };
|
||||||
|
02031F0829E75EF0003C108C /* SaveLocalLocationUseCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031F0729E75EED003C108C /* SaveLocalLocationUseCase.swift */; };
|
||||||
|
02031F0A29E7645F003C108C /* Location+URLs.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02031F0929E7645F003C108C /* Location+URLs.swift */; };
|
||||||
4656CBC229E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4656CBC129E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift */; };
|
4656CBC229E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4656CBC129E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift */; };
|
||||||
4656CBC829E6F2E400600EE6 /* LocationViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4656CBC729E6F2E400600EE6 /* LocationViewCell.swift */; };
|
4656CBC829E6F2E400600EE6 /* LocationViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4656CBC729E6F2E400600EE6 /* LocationViewCell.swift */; };
|
||||||
4656CBE629E7360B00600EE6 /* SaveLocalLocationUseCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4656CBE529E7360B00600EE6 /* SaveLocalLocationUseCase.swift */; };
|
|
||||||
46C3B7C629E5BF1500F8F57C /* LocationsListCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C3B7C529E5BF1500F8F57C /* LocationsListCoordinator.swift */; };
|
46C3B7C629E5BF1500F8F57C /* LocationsListCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C3B7C529E5BF1500F8F57C /* LocationsListCoordinator.swift */; };
|
||||||
46C3B7CB29E5CD3200F8F57C /* LocationsListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C3B7CA29E5CD3200F8F57C /* LocationsListViewModel.swift */; };
|
46C3B7CB29E5CD3200F8F57C /* LocationsListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C3B7CA29E5CD3200F8F57C /* LocationsListViewModel.swift */; };
|
||||||
46C3B7CF29E5D00E00F8F57C /* LocationsAddViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C3B7CE29E5D00E00F8F57C /* LocationsAddViewModel.swift */; };
|
46C3B7CF29E5D00E00F8F57C /* LocationsAddViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C3B7CE29E5D00E00F8F57C /* LocationsAddViewModel.swift */; };
|
||||||
@ -131,9 +132,10 @@
|
|||||||
02031EC829E60B29003C108C /* DependencyService+Keys.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "DependencyService+Keys.swift"; sourceTree = "<group>"; };
|
02031EC829E60B29003C108C /* DependencyService+Keys.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "DependencyService+Keys.swift"; sourceTree = "<group>"; };
|
||||||
02031EE729E68D9B003C108C /* LoadingSpinnerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadingSpinnerView.swift; sourceTree = "<group>"; };
|
02031EE729E68D9B003C108C /* LoadingSpinnerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadingSpinnerView.swift; sourceTree = "<group>"; };
|
||||||
02031EE929E6B495003C108C /* ErrorMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ErrorMessageView.swift; sourceTree = "<group>"; };
|
02031EE929E6B495003C108C /* ErrorMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ErrorMessageView.swift; sourceTree = "<group>"; };
|
||||||
|
02031F0729E75EED003C108C /* SaveLocalLocationUseCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SaveLocalLocationUseCase.swift; sourceTree = "<group>"; };
|
||||||
|
02031F0929E7645F003C108C /* Location+URLs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Location+URLs.swift"; sourceTree = "<group>"; };
|
||||||
4656CBC129E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadRemoteLocationsUseCase.swift; sourceTree = "<group>"; };
|
4656CBC129E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadRemoteLocationsUseCase.swift; sourceTree = "<group>"; };
|
||||||
4656CBC729E6F2E400600EE6 /* LocationViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationViewCell.swift; sourceTree = "<group>"; };
|
4656CBC729E6F2E400600EE6 /* LocationViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationViewCell.swift; sourceTree = "<group>"; };
|
||||||
4656CBE529E7360B00600EE6 /* SaveLocalLocationUseCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SaveLocalLocationUseCase.swift; sourceTree = "<group>"; };
|
|
||||||
46C3B7C529E5BF1500F8F57C /* LocationsListCoordinator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationsListCoordinator.swift; sourceTree = "<group>"; };
|
46C3B7C529E5BF1500F8F57C /* LocationsListCoordinator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationsListCoordinator.swift; sourceTree = "<group>"; };
|
||||||
46C3B7CA29E5CD3200F8F57C /* LocationsListViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationsListViewModel.swift; sourceTree = "<group>"; };
|
46C3B7CA29E5CD3200F8F57C /* LocationsListViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationsListViewModel.swift; sourceTree = "<group>"; };
|
||||||
46C3B7CE29E5D00E00F8F57C /* LocationsAddViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationsAddViewModel.swift; sourceTree = "<group>"; };
|
46C3B7CE29E5D00E00F8F57C /* LocationsAddViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationsAddViewModel.swift; sourceTree = "<group>"; };
|
||||||
@ -180,6 +182,7 @@
|
|||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
02031EC829E60B29003C108C /* DependencyService+Keys.swift */,
|
02031EC829E60B29003C108C /* DependencyService+Keys.swift */,
|
||||||
|
02031F0929E7645F003C108C /* Location+URLs.swift */,
|
||||||
);
|
);
|
||||||
path = Extensions;
|
path = Extensions;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -225,7 +228,7 @@
|
|||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
4656CBC129E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift */,
|
4656CBC129E6D33C00600EE6 /* LoadRemoteLocationsUseCase.swift */,
|
||||||
4656CBE529E7360B00600EE6 /* SaveLocalLocationUseCase.swift */,
|
02031F0729E75EED003C108C /* SaveLocalLocationUseCase.swift */,
|
||||||
);
|
);
|
||||||
path = "Use Cases";
|
path = "Use Cases";
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -547,7 +550,8 @@
|
|||||||
02031EBF29E5F949003C108C /* LocationsAddViewModeling.swift in Sources */,
|
02031EBF29E5F949003C108C /* LocationsAddViewModeling.swift in Sources */,
|
||||||
4656CBC829E6F2E400600EE6 /* LocationViewCell.swift in Sources */,
|
4656CBC829E6F2E400600EE6 /* LocationViewCell.swift in Sources */,
|
||||||
46C3B7DE29E5ED2E00F8F57C /* LocationsAddCoordinator.swift in Sources */,
|
46C3B7DE29E5ED2E00F8F57C /* LocationsAddCoordinator.swift in Sources */,
|
||||||
4656CBE629E7360B00600EE6 /* SaveLocalLocationUseCase.swift in Sources */,
|
02031F0A29E7645F003C108C /* Location+URLs.swift in Sources */,
|
||||||
|
02031F0829E75EF0003C108C /* SaveLocalLocationUseCase.swift in Sources */,
|
||||||
02031EEA29E6B495003C108C /* ErrorMessageView.swift in Sources */,
|
02031EEA29E6B495003C108C /* ErrorMessageView.swift in Sources */,
|
||||||
46C3B7DC29E5ED2300F8F57C /* LocationsAddCoordination.swift in Sources */,
|
46C3B7DC29E5ED2300F8F57C /* LocationsAddCoordination.swift in Sources */,
|
||||||
46C3B7D829E5E55000F8F57C /* LocationsListCoordination.swift in Sources */,
|
46C3B7D829E5E55000F8F57C /* LocationsListCoordination.swift in Sources */,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user