// File created from simpleScreenTemplate // $ createSimpleScreen.sh Dialpad Dialpad /* Copyright 2020 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import UIKit protocol DialpadViewControllerDelegate: class { func dialpadViewControllerDidTapSetupAction(_ viewController: DialpadViewController) func dialpadViewControllerDidCancel(_ viewController: DialpadViewController) } final class DialpadViewController: UIViewController { // MARK: - Properties // MARK: Outlets @IBOutlet private weak var logoImageView: UIImageView! @IBOutlet private weak var titleLabel: UILabel! @IBOutlet private weak var informationLabel: UILabel! @IBOutlet private weak var okButtonBackgroundView: UIView! @IBOutlet private weak var okButton: UIButton! // MARK: Private private var theme: Theme! // MARK: Public weak var delegate: DialpadViewControllerDelegate? // MARK: - Setup class func instantiate() -> DialpadViewController { let viewController = StoryboardScene.DialpadViewController.initialScene.instantiate() viewController.theme = ThemeService.shared().theme return viewController } // MARK: - Life cycle override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. self.title = "Template" self.vc_removeBackTitle() self.setupViews() self.registerThemeServiceDidChangeThemeNotification() self.update(theme: self.theme) } override var preferredStatusBarStyle: UIStatusBarStyle { return self.theme.statusBarStyle } // MARK: - Private private func setupViews() { let cancelBarButtonItem = MXKBarButtonItem(title: VectorL10n.cancel, style: .plain) { [weak self] in self?.cancelButtonAction() } self.navigationItem.rightBarButtonItem = cancelBarButtonItem // let logoImage = Asset.Images.* // self.logoImageView.image = keybackupLogoImage // self.titleLabel.text = VectorL10n.xxxxTitle // self.informationLabel.text = VectorL10n.xxxxDescription // // self.okButton.setTitle(VectorL10n.xxxxAction, for: .normal) } private func update(theme: Theme) { self.theme = theme self.view.backgroundColor = theme.headerBackgroundColor if let navigationBar = self.navigationController?.navigationBar { theme.applyStyle(onNavigationBar: navigationBar) } self.logoImageView.tintColor = theme.textPrimaryColor self.titleLabel.textColor = theme.textPrimaryColor self.informationLabel.textColor = theme.textPrimaryColor self.okButtonBackgroundView.backgroundColor = theme.backgroundColor theme.applyStyle(onButton: self.okButton) } private func registerThemeServiceDidChangeThemeNotification() { NotificationCenter.default.addObserver(self, selector: #selector(themeDidChange), name: .themeServiceDidChangeTheme, object: nil) } // MARK: - Actions @objc private func themeDidChange() { self.update(theme: ThemeService.shared().theme) } @IBAction private func validateButtonAction(_ sender: Any) { self.delegate?.dialpadViewControllerDidTapSetupAction(self) } private func cancelButtonAction() { self.delegate?.dialpadViewControllerDidCancel(self) } }