2019-09-04 23:24:16 +02:00
|
|
|
//
|
|
|
|
// RootSplitViewController.swift
|
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 9/4/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
2019-09-05 20:14:14 +02:00
|
|
|
import Account
|
2019-09-04 23:24:16 +02:00
|
|
|
|
|
|
|
class RootSplitViewController: UISplitViewController {
|
|
|
|
|
|
|
|
var coordinator: SceneCoordinator!
|
|
|
|
|
2019-11-19 02:12:24 +01:00
|
|
|
override var prefersStatusBarHidden: Bool {
|
|
|
|
return coordinator.prefersStatusBarHidden
|
|
|
|
}
|
|
|
|
|
|
|
|
override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {
|
|
|
|
return .slide
|
|
|
|
}
|
|
|
|
|
2019-09-09 23:59:24 +02:00
|
|
|
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
|
2019-11-20 23:41:13 +01:00
|
|
|
self.coordinator.configurePanelMode(for: size)
|
2019-10-31 00:02:57 +01:00
|
|
|
super.viewWillTransition(to: size, with: coordinator)
|
2019-09-09 23:59:24 +02:00
|
|
|
}
|
|
|
|
|
2019-09-04 23:24:16 +02:00
|
|
|
// MARK: Keyboard Shortcuts
|
2019-09-06 04:14:19 +02:00
|
|
|
|
2019-09-05 18:29:04 +02:00
|
|
|
@objc func scrollOrGoToNextUnread(_ sender: Any?) {
|
2019-09-06 04:14:19 +02:00
|
|
|
coordinator.scrollOrGoToNextUnread()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func goToPreviousUnread(_ sender: Any?) {
|
2019-09-06 01:02:40 +02:00
|
|
|
coordinator.selectPrevUnread()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func nextUnread(_ sender: Any?) {
|
2019-09-05 21:50:05 +02:00
|
|
|
coordinator.selectNextUnread()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func markRead(_ sender: Any?) {
|
2019-09-05 21:50:05 +02:00
|
|
|
coordinator.markAsReadForCurrentArticle()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func markUnreadAndGoToNextUnread(_ sender: Any?) {
|
2019-09-05 21:50:05 +02:00
|
|
|
coordinator.markAsUnreadForCurrentArticle()
|
|
|
|
coordinator.selectNextUnread()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func markAllAsReadAndGoToNextUnread(_ sender: Any?) {
|
2019-09-05 21:50:05 +02:00
|
|
|
coordinator.markAllAsReadInTimeline()
|
|
|
|
coordinator.selectNextUnread()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
2020-01-03 08:16:55 +01:00
|
|
|
@objc func markBelowAsRead(_ sender: Any?) {
|
|
|
|
coordinator.markBelowAsRead()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func markUnread(_ sender: Any?) {
|
2019-09-05 21:50:05 +02:00
|
|
|
coordinator.markAsUnreadForCurrentArticle()
|
2019-09-05 18:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func goToPreviousSubscription(_ sender: Any?) {
|
|
|
|
coordinator.selectPrevFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func goToNextSubscription(_ sender: Any?) {
|
|
|
|
coordinator.selectNextFeed()
|
|
|
|
}
|
2019-09-04 23:24:16 +02:00
|
|
|
|
|
|
|
@objc func openInBrowser(_ sender: Any?) {
|
|
|
|
coordinator.showBrowserForCurrentArticle()
|
|
|
|
}
|
|
|
|
|
2019-09-07 16:01:29 +02:00
|
|
|
@objc func articleSearch(_ sender: Any?) {
|
|
|
|
coordinator.showSearch()
|
|
|
|
}
|
|
|
|
|
2019-09-05 20:14:14 +02:00
|
|
|
@objc func addNewFeed(_ sender: Any?) {
|
2019-09-05 22:07:35 +02:00
|
|
|
coordinator.showAdd(.feed)
|
2019-09-05 20:14:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func addNewFolder(_ sender: Any?) {
|
2019-09-05 22:07:35 +02:00
|
|
|
coordinator.showAdd(.folder)
|
2019-09-05 20:14:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func refresh(_ sender: Any?) {
|
|
|
|
AccountManager.shared.refreshAll(errorHandler: ErrorHandler.present(self))
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func goToToday(_ sender: Any?) {
|
|
|
|
coordinator.selectTodayFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func goToAllUnread(_ sender: Any?) {
|
|
|
|
coordinator.selectAllUnreadFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func goToStarred(_ sender: Any?) {
|
|
|
|
coordinator.selectStarredFeed()
|
|
|
|
}
|
|
|
|
|
2019-09-05 22:43:01 +02:00
|
|
|
@objc func toggleRead(_ sender: Any?) {
|
|
|
|
coordinator.toggleReadForCurrentArticle()
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func toggleStarred(_ sender: Any?) {
|
|
|
|
coordinator.toggleStarredForCurrentArticle()
|
|
|
|
}
|
|
|
|
|
2019-09-04 23:24:16 +02:00
|
|
|
}
|