Removed unnecessary comments from RiotSwiftUI templates, fixed StateStoreViewModel typealias formatting

This commit is contained in:
Stefan Ceriu
2022-09-27 11:17:25 +03:00
committed by Stefan Ceriu
parent 43c28d23b7
commit fc2fdc8ae7
61 changed files with 62 additions and 288 deletions
@@ -22,25 +22,17 @@ struct TemplateUserProfileCoordinatorParameters {
}
final class TemplateUserProfileCoordinator: Coordinator, Presentable {
// MARK: - Properties
// MARK: Private
private let parameters: TemplateUserProfileCoordinatorParameters
private let templateUserProfileHostingController: UIViewController
private var templateUserProfileViewModel: TemplateUserProfileViewModelProtocol
private var indicatorPresenter: UserIndicatorTypePresenterProtocol
private var loadingIndicator: UserIndicator?
// MARK: Public
// Must be used only internally
var childCoordinators: [Coordinator] = []
var completion: (() -> Void)?
// MARK: - Setup
init(parameters: TemplateUserProfileCoordinatorParameters) {
self.parameters = parameters
let viewModel = TemplateUserProfileViewModel.makeTemplateUserProfileViewModel(templateUserProfileService: TemplateUserProfileService(session: parameters.session))