Can set default RSS reader in the General pane
This commit is contained in:
parent
c2c138218d
commit
2636a5cc72
@ -35,5 +35,19 @@
|
|||||||
<string>$(ORGANIZATION_IDENTIFIER)</string>
|
<string>$(ORGANIZATION_IDENTIFIER)</string>
|
||||||
<key>DeveloperEntitlements</key>
|
<key>DeveloperEntitlements</key>
|
||||||
<string>$(DEVELOPER_ENTITLEMENTS)</string>
|
<string>$(DEVELOPER_ENTITLEMENTS)</string>
|
||||||
|
<key>CFBundleURLTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Viewer</string>
|
||||||
|
<key>CFBundleURLName</key>
|
||||||
|
<string>RSS Feed</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>feed</string>
|
||||||
|
<string>feeds</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
@ -28,8 +28,20 @@ enum PreferencePane: Int, CaseIterable {
|
|||||||
class MacPreferencesModel: ObservableObject {
|
class MacPreferencesModel: ObservableObject {
|
||||||
|
|
||||||
@Published var currentPreferencePane: PreferencePane = PreferencePane.general
|
@Published var currentPreferencePane: PreferencePane = PreferencePane.general
|
||||||
@Published var rssReaders = Array(RSSReaderInfo.fetchRSSReaders(nil))
|
@Published var rssReaders = [RSSReader]()
|
||||||
@Published var rssReaderSelection: Set<RSSReader> = RSSReaderInfo.fetchRSSReaders(nil)
|
@Published var readerSelection: Int = 0 {
|
||||||
|
willSet {
|
||||||
|
if newValue != readerSelection {
|
||||||
|
registerAppWithBundleID(rssReaders[newValue].bundleID)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private let readerInfo = RSSReaderInfo()
|
||||||
|
|
||||||
|
init() {
|
||||||
|
prepareRSSReaders()
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,20 +50,27 @@ class MacPreferencesModel: ObservableObject {
|
|||||||
private extension MacPreferencesModel {
|
private extension MacPreferencesModel {
|
||||||
|
|
||||||
func prepareRSSReaders() {
|
func prepareRSSReaders() {
|
||||||
// Top item should always be: NetNewsWire (this app)
|
|
||||||
// Additional items should be sorted alphabetically.
|
|
||||||
// Any older versions of NetNewsWire should be listed as: NetNewsWire (old version)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Populate rssReaders
|
||||||
|
var thisApp = RSSReader(bundleID: Bundle.main.bundleIdentifier!)
|
||||||
|
thisApp?.nameMinusAppSuffix.append(" (this app—multiplatform)")
|
||||||
|
|
||||||
|
let otherRSSReaders = readerInfo.rssReaders.filter { $0.bundleID != Bundle.main.bundleIdentifier! }.sorted(by: { $0.nameMinusAppSuffix < $1.nameMinusAppSuffix })
|
||||||
|
rssReaders.append(thisApp!)
|
||||||
|
rssReaders.append(contentsOf: otherRSSReaders)
|
||||||
|
|
||||||
|
if readerInfo.defaultRSSReaderBundleID != nil {
|
||||||
|
let defaultReader = rssReaders.filter({ $0.bundleID == readerInfo.defaultRSSReaderBundleID })
|
||||||
|
if defaultReader.count == 1 {
|
||||||
|
let reader = defaultReader[0]
|
||||||
|
readerSelection = rssReaders.firstIndex(of: reader)!
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func registerAppWithBundleID(_ bundleID: String) {
|
func registerAppWithBundleID(_ bundleID: String) {
|
||||||
NSWorkspace.shared.setDefaultAppBundleID(forURLScheme: "feed", to: bundleID)
|
NSWorkspace.shared.setDefaultAppBundleID(forURLScheme: "feed", to: bundleID)
|
||||||
NSWorkspace.shared.setDefaultAppBundleID(forURLScheme: "feeds", to: bundleID)
|
NSWorkspace.shared.setDefaultAppBundleID(forURLScheme: "feeds", to: bundleID)
|
||||||
objectWillChange.send()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -61,23 +80,20 @@ private extension MacPreferencesModel {
|
|||||||
|
|
||||||
struct RSSReaderInfo {
|
struct RSSReaderInfo {
|
||||||
|
|
||||||
let defaultRSSReaderBundleID: String?
|
var defaultRSSReaderBundleID: String? {
|
||||||
|
NSWorkspace.shared.defaultAppBundleID(forURLScheme: RSSReaderInfo.feedURLScheme)
|
||||||
|
}
|
||||||
let rssReaders: Set<RSSReader>
|
let rssReaders: Set<RSSReader>
|
||||||
static let feedURLScheme = "feed:"
|
static let feedURLScheme = "feed:"
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
let defaultRSSReaderBundleID = NSWorkspace.shared.defaultAppBundleID(forURLScheme: RSSReaderInfo.feedURLScheme)
|
self.rssReaders = RSSReaderInfo.fetchRSSReaders()
|
||||||
self.defaultRSSReaderBundleID = defaultRSSReaderBundleID
|
|
||||||
self.rssReaders = RSSReaderInfo.fetchRSSReaders(defaultRSSReaderBundleID)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static func fetchRSSReaders(_ defaultRSSReaderBundleID: String?) -> Set<RSSReader> {
|
static func fetchRSSReaders() -> Set<RSSReader> {
|
||||||
let rssReaderBundleIDs = NSWorkspace.shared.bundleIDsForApps(forURLScheme: feedURLScheme)
|
let rssReaderBundleIDs = NSWorkspace.shared.bundleIDsForApps(forURLScheme: feedURLScheme)
|
||||||
|
|
||||||
var rssReaders = Set<RSSReader>()
|
var rssReaders = Set<RSSReader>()
|
||||||
if let defaultRSSReaderBundleID = defaultRSSReaderBundleID, let defaultReader = RSSReader(bundleID: defaultRSSReaderBundleID) {
|
|
||||||
rssReaders.insert(defaultReader)
|
|
||||||
}
|
|
||||||
rssReaderBundleIDs.forEach { (bundleID) in
|
rssReaderBundleIDs.forEach { (bundleID) in
|
||||||
if let reader = RSSReader(bundleID: bundleID) {
|
if let reader = RSSReader(bundleID: bundleID) {
|
||||||
rssReaders.insert(reader)
|
rssReaders.insert(reader)
|
||||||
@ -94,7 +110,7 @@ struct RSSReader: Hashable {
|
|||||||
|
|
||||||
let bundleID: String
|
let bundleID: String
|
||||||
let name: String
|
let name: String
|
||||||
let nameMinusAppSuffix: String
|
var nameMinusAppSuffix: String
|
||||||
let path: String
|
let path: String
|
||||||
|
|
||||||
init?(bundleID: String) {
|
init?(bundleID: String) {
|
||||||
|
@ -18,14 +18,16 @@ struct GeneralPreferencesView: View {
|
|||||||
selection: $defaults.interval,
|
selection: $defaults.interval,
|
||||||
content: {
|
content: {
|
||||||
ForEach(RefreshInterval.allCases, content: { interval in
|
ForEach(RefreshInterval.allCases, content: { interval in
|
||||||
Text(interval.description()).tag(interval.rawValue)
|
Text(interval.description())
|
||||||
|
.tag(interval.rawValue)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.frame(width: 300, alignment: .center)
|
.frame(width: 300, alignment: .center)
|
||||||
|
|
||||||
Picker("Default RSS reader", selection: $preferences.rssReaderSelection, content: {
|
Picker("Default RSS reader", selection: $preferences.readerSelection, content: {
|
||||||
ForEach(0..<preferences.rssReaders.count, content: { i in
|
ForEach(0..<preferences.rssReaders.count, content: { index in
|
||||||
Text(preferences.rssReaders[i].nameMinusAppSuffix)
|
Text(preferences.rssReaders[index].nameMinusAppSuffix)
|
||||||
|
.tag(index)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user