NetNewsWire/Multiplatform/Shared/MainApp.swift

99 lines
3.0 KiB
Swift
Raw Normal View History

2020-06-27 18:22:01 +02:00
//
// MainApp.swift
2020-06-27 18:22:01 +02:00
// Shared
//
// Created by Maurice Parker on 6/27/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import SwiftUI
@main
struct MainApp: App {
#if os(macOS)
@NSApplicationDelegateAdaptor(AppDelegate.self) private var delegate
#endif
#if os(iOS)
@UIApplicationDelegateAdaptor(AppDelegate.self) private var delegate
#endif
@StateObject private var refreshProgress = RefreshProgressModel()
2020-07-02 03:57:36 +02:00
@StateObject private var defaults = AppDefaults.shared
@SceneBuilder var body: some Scene {
#if os(macOS)
WindowGroup {
2020-06-28 21:21:43 +02:00
SceneNavigationView()
.frame(minWidth: 600, idealWidth: 1000, maxWidth: .infinity, minHeight: 600, idealHeight: 700, maxHeight: .infinity)
.onAppear { refreshProgress.startup() }
.environmentObject(refreshProgress)
.environmentObject(defaults)
2020-07-14 08:57:55 +02:00
.preferredColorScheme(AppDefaults.userInterfaceColorScheme)
}
.windowToolbarStyle(UnifiedWindowToolbarStyle())
.commands {
2020-08-05 04:11:06 +02:00
SidebarCommands()
CommandGroup(after: .newItem, addition: {
Button("New Feed", action: {})
.keyboardShortcut("N")
Button("New Folder", action: {})
.keyboardShortcut("N", modifiers: [.shift, .command])
Button("Refresh", action: {})
.keyboardShortcut("R")
})
CommandMenu("Subscriptions", content: {
Button("Import Subscriptions", action: {})
.keyboardShortcut("I", modifiers: [.shift, .command])
Button("Import NNW 3 Subscriptions", action: {})
.keyboardShortcut("O", modifiers: [.shift, .command])
Button("Export Subscriptions", action: {})
.keyboardShortcut("E", modifiers: [.shift, .command])
})
CommandMenu("Go", content: {
Button("Next Unread", action: {})
.keyboardShortcut("/", modifiers: [.command])
Button("Today", action: {})
.keyboardShortcut("1", modifiers: [.command])
Button("All Unread", action: {})
.keyboardShortcut("2", modifiers: [.command])
Button("Starred", action: {})
.keyboardShortcut("3", modifiers: [.command])
})
CommandMenu("Article", content: {
Button("Mark as Read", action: {})
.keyboardShortcut("U", modifiers: [.shift, .command])
Button("Mark All as Read", action: {})
.keyboardShortcut("K", modifiers: [.command])
Button("Mark Older as Read", action: {})
.keyboardShortcut("K", modifiers: [.shift, .command])
Button("Mark as Starred", action: {})
.keyboardShortcut("L", modifiers: [.shift, .command])
Button("Open in Browser", action: {})
.keyboardShortcut(.rightArrow, modifiers: [.command])
})
}
// Mac Preferences
Settings {
MacPreferencesView()
.padding()
.frame(width: 500)
.navigationTitle("Preferences")
2020-07-02 03:57:36 +02:00
.environmentObject(defaults)
.preferredColorScheme(AppDefaults.userInterfaceColorScheme)
}
#endif
#if os(iOS)
WindowGroup {
2020-06-28 21:21:43 +02:00
SceneNavigationView()
.onAppear { refreshProgress.startup() }
.environmentObject(refreshProgress)
.environmentObject(defaults)
.preferredColorScheme(AppDefaults.userInterfaceColorScheme)
}
#endif
}
2020-06-27 18:22:01 +02:00
}