Disable the Import Subscriptions menu item if there aren't any accounts that can import OPML files.
This commit is contained in:
parent
0b170b7ff5
commit
0d36b276e9
@ -418,32 +418,43 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations,
|
|||||||
if item.action == #selector(refreshAll(_:)) {
|
if item.action == #selector(refreshAll(_:)) {
|
||||||
return !AccountManager.shared.refreshInProgress && !AccountManager.shared.activeAccounts.isEmpty
|
return !AccountManager.shared.refreshInProgress && !AccountManager.shared.activeAccounts.isEmpty
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if item.action == #selector(importOPMLFromFile(_:)) {
|
||||||
|
return AccountManager.shared.activeAccounts.contains(where: { !$0.behaviors.contains(where: { $0 == .disallowOPMLImports }) })
|
||||||
|
}
|
||||||
|
|
||||||
if item.action == #selector(addAppNews(_:)) {
|
if item.action == #selector(addAppNews(_:)) {
|
||||||
return !isDisplayingSheet && !AccountManager.shared.anyAccountHasFeedWithURL(appNewsURLString) && !AccountManager.shared.activeAccounts.isEmpty
|
return !isDisplayingSheet && !AccountManager.shared.anyAccountHasFeedWithURL(appNewsURLString) && !AccountManager.shared.activeAccounts.isEmpty
|
||||||
}
|
}
|
||||||
|
|
||||||
if item.action == #selector(sortByNewestArticleOnTop(_:)) || item.action == #selector(sortByOldestArticleOnTop(_:)) {
|
if item.action == #selector(sortByNewestArticleOnTop(_:)) || item.action == #selector(sortByOldestArticleOnTop(_:)) {
|
||||||
return mainWindowController?.isOpen ?? false
|
return mainWindowController?.isOpen ?? false
|
||||||
}
|
}
|
||||||
|
|
||||||
if item.action == #selector(showAddWebFeedWindow(_:)) || item.action == #selector(showAddFolderWindow(_:)) {
|
if item.action == #selector(showAddWebFeedWindow(_:)) || item.action == #selector(showAddFolderWindow(_:)) {
|
||||||
return !isDisplayingSheet && !AccountManager.shared.activeAccounts.isEmpty
|
return !isDisplayingSheet && !AccountManager.shared.activeAccounts.isEmpty
|
||||||
}
|
}
|
||||||
|
|
||||||
if item.action == #selector(showAddRedditFeedWindow(_:)) {
|
if item.action == #selector(showAddRedditFeedWindow(_:)) {
|
||||||
guard !isDisplayingSheet && isSpecialAccountAvailable && ExtensionPointManager.shared.isRedditEnabled else {
|
guard !isDisplayingSheet && isSpecialAccountAvailable && ExtensionPointManager.shared.isRedditEnabled else {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return ExtensionPointManager.shared.isRedditEnabled
|
return ExtensionPointManager.shared.isRedditEnabled
|
||||||
}
|
}
|
||||||
|
|
||||||
if item.action == #selector(showAddTwitterFeedWindow(_:)) {
|
if item.action == #selector(showAddTwitterFeedWindow(_:)) {
|
||||||
guard !isDisplayingSheet && isSpecialAccountAvailable && ExtensionPointManager.shared.isTwitterEnabled else {
|
guard !isDisplayingSheet && isSpecialAccountAvailable && ExtensionPointManager.shared.isTwitterEnabled else {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return ExtensionPointManager.shared.isTwitterEnabled
|
return ExtensionPointManager.shared.isTwitterEnabled
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !MAC_APP_STORE
|
#if !MAC_APP_STORE
|
||||||
if item.action == #selector(toggleWebInspectorEnabled(_:)) {
|
if item.action == #selector(toggleWebInspectorEnabled(_:)) {
|
||||||
(item as! NSMenuItem).state = AppDefaults.shared.webInspectorEnabled ? .on : .off
|
(item as! NSMenuItem).state = AppDefaults.shared.webInspectorEnabled ? .on : .off
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user