Change to no longer copy app distributed themes to the Themes folder. Fixes #3447
This commit is contained in:
parent
8a55c1ce16
commit
ea6e5b8434
@ -817,7 +817,7 @@ internal extension AppDelegate {
|
|||||||
guard let window = mainWindowController?.window else { return }
|
guard let window = mainWindowController?.window else { return }
|
||||||
|
|
||||||
do {
|
do {
|
||||||
let theme = try ArticleTheme(path: filename)
|
let theme = try ArticleTheme(path: filename, isAppTheme: false)
|
||||||
let alert = NSAlert()
|
let alert = NSAlert()
|
||||||
alert.alertStyle = .informational
|
alert.alertStyle = .informational
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ struct ArticleTheme: Equatable {
|
|||||||
let path: String?
|
let path: String?
|
||||||
let template: String?
|
let template: String?
|
||||||
let css: String?
|
let css: String?
|
||||||
|
let isAppTheme: Bool
|
||||||
|
|
||||||
var name: String {
|
var name: String {
|
||||||
guard let path = path else { return Self.defaultThemeName }
|
guard let path = path else { return Self.defaultThemeName }
|
||||||
@ -49,9 +50,11 @@ struct ArticleTheme: Equatable {
|
|||||||
|
|
||||||
let templatePath = Bundle.main.path(forResource: "template", ofType: "html")!
|
let templatePath = Bundle.main.path(forResource: "template", ofType: "html")!
|
||||||
template = Self.stringAtPath(templatePath)!
|
template = Self.stringAtPath(templatePath)!
|
||||||
|
|
||||||
|
isAppTheme = true
|
||||||
}
|
}
|
||||||
|
|
||||||
init(path: String) throws {
|
init(path: String, isAppTheme: Bool) throws {
|
||||||
self.path = path
|
self.path = path
|
||||||
|
|
||||||
let infoPath = (path as NSString).appendingPathComponent("Info.plist")
|
let infoPath = (path as NSString).appendingPathComponent("Info.plist")
|
||||||
@ -68,6 +71,8 @@ struct ArticleTheme: Equatable {
|
|||||||
|
|
||||||
let templatePath = (path as NSString).appendingPathComponent("template.html")
|
let templatePath = (path as NSString).appendingPathComponent("template.html")
|
||||||
self.template = Self.stringAtPath(templatePath)
|
self.template = Self.stringAtPath(templatePath)
|
||||||
|
|
||||||
|
self.isAppTheme = isAppTheme
|
||||||
}
|
}
|
||||||
|
|
||||||
static func stringAtPath(_ f: String) -> String? {
|
static func stringAtPath(_ f: String) -> String? {
|
||||||
|
@ -48,6 +48,10 @@ final class ArticleThemesManager: NSObject, NSFilePresenter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var themes: [ArticleTheme] {
|
||||||
|
return themeNames.compactMap { articleThemeWithThemeName($0) }
|
||||||
|
}
|
||||||
|
|
||||||
init(folderPath: String) {
|
init(folderPath: String) {
|
||||||
self.folderPath = folderPath
|
self.folderPath = folderPath
|
||||||
self.currentTheme = ArticleTheme.defaultTheme
|
self.currentTheme = ArticleTheme.defaultTheme
|
||||||
@ -61,15 +65,6 @@ final class ArticleThemesManager: NSObject, NSFilePresenter {
|
|||||||
abort()
|
abort()
|
||||||
}
|
}
|
||||||
|
|
||||||
let themeFilenames = Bundle.main.paths(forResourcesOfType: ArticleTheme.nnwThemeSuffix, inDirectory: nil)
|
|
||||||
let installedThemes = readInstalledThemes() ?? [String: Date]()
|
|
||||||
for themeFilename in themeFilenames {
|
|
||||||
let themeName = ArticleTheme.themeNameForPath(themeFilename)
|
|
||||||
if !installedThemes.keys.contains(themeName) {
|
|
||||||
try? importTheme(filename: themeFilename)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
updateThemeNames()
|
updateThemeNames()
|
||||||
updateCurrentTheme()
|
updateCurrentTheme()
|
||||||
|
|
||||||
@ -98,11 +93,6 @@ final class ArticleThemesManager: NSObject, NSFilePresenter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try FileManager.default.copyItem(atPath: filename, toPath: toFilename)
|
try FileManager.default.copyItem(atPath: filename, toPath: toFilename)
|
||||||
|
|
||||||
let themeName = ArticleTheme.themeNameForPath(filename)
|
|
||||||
var installedThemes = readInstalledThemes() ?? [String: Date]()
|
|
||||||
installedThemes[themeName] = Date()
|
|
||||||
writeInstalledThemes(installedThemes)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func deleteTheme(themeName: String) {
|
func deleteTheme(themeName: String) {
|
||||||
@ -118,8 +108,14 @@ final class ArticleThemesManager: NSObject, NSFilePresenter {
|
|||||||
private extension ArticleThemesManager {
|
private extension ArticleThemesManager {
|
||||||
|
|
||||||
func updateThemeNames() {
|
func updateThemeNames() {
|
||||||
let updatedThemeNames = allThemePaths(folderPath).map { ArticleTheme.themeNameForPath($0) }
|
let appThemeFilenames = Bundle.main.paths(forResourcesOfType: ArticleTheme.nnwThemeSuffix, inDirectory: nil)
|
||||||
let sortedThemeNames = updatedThemeNames.sorted(by: { $0.compare($1, options: .caseInsensitive) == .orderedAscending })
|
let appThemeNames = Set(appThemeFilenames.map { ArticleTheme.themeNameForPath($0) })
|
||||||
|
|
||||||
|
let installedThemeNames = Set(allThemePaths(folderPath).map { ArticleTheme.themeNameForPath($0) })
|
||||||
|
|
||||||
|
let allThemeNames = appThemeNames.union(installedThemeNames)
|
||||||
|
|
||||||
|
let sortedThemeNames = allThemeNames.sorted(by: { $0.compare($1, options: .caseInsensitive) == .orderedAscending })
|
||||||
if sortedThemeNames != themeNames {
|
if sortedThemeNames != themeNames {
|
||||||
themeNames = sortedThemeNames
|
themeNames = sortedThemeNames
|
||||||
}
|
}
|
||||||
@ -130,11 +126,20 @@ private extension ArticleThemesManager {
|
|||||||
return ArticleTheme.defaultTheme
|
return ArticleTheme.defaultTheme
|
||||||
}
|
}
|
||||||
|
|
||||||
guard let path = pathForThemeName(themeName, folder: folderPath) else {
|
let path: String
|
||||||
|
let isAppTheme: Bool
|
||||||
|
if let appThemePath = Bundle.main.url(forResource: themeName, withExtension: ArticleTheme.nnwThemeSuffix)?.path {
|
||||||
|
path = appThemePath
|
||||||
|
isAppTheme = true
|
||||||
|
} else if let installedPath = pathForThemeName(themeName, folder: folderPath) {
|
||||||
|
path = installedPath
|
||||||
|
isAppTheme = false
|
||||||
|
} else {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
return try ArticleTheme(path: path)
|
return try ArticleTheme(path: path, isAppTheme: isAppTheme)
|
||||||
} catch {
|
} catch {
|
||||||
NotificationCenter.default.post(name: .didFailToImportThemeWithError, object: nil, userInfo: ["error": error])
|
NotificationCenter.default.post(name: .didFailToImportThemeWithError, object: nil, userInfo: ["error": error])
|
||||||
return nil
|
return nil
|
||||||
@ -178,14 +183,4 @@ private extension ArticleThemesManager {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func readInstalledThemes() -> [String: Date]? {
|
|
||||||
let filePath = (folderPath as NSString).appendingPathComponent("InstalledThemes.plist")
|
|
||||||
return NSDictionary(contentsOfFile: filePath) as? [String: Date]
|
|
||||||
}
|
|
||||||
|
|
||||||
func writeInstalledThemes(_ dict: [String: Date]) {
|
|
||||||
let filePath = (folderPath as NSString).appendingPathComponent("InstalledThemes.plist")
|
|
||||||
(dict as NSDictionary).write(toFile: filePath, atomically: true)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ import UIKit
|
|||||||
struct ArticleThemeImporter {
|
struct ArticleThemeImporter {
|
||||||
|
|
||||||
static func importTheme(controller: UIViewController, filename: String) throws {
|
static func importTheme(controller: UIViewController, filename: String) throws {
|
||||||
let theme = try ArticleTheme(path: filename)
|
let theme = try ArticleTheme(path: filename, isAppTheme: false)
|
||||||
|
|
||||||
let localizedTitleText = NSLocalizedString("Install theme “%@” by %@?", comment: "Theme message text")
|
let localizedTitleText = NSLocalizedString("Install theme “%@” by %@?", comment: "Theme message text")
|
||||||
let title = NSString.localizedStringWithFormat(localizedTitleText as NSString, theme.name, theme.creatorName) as String
|
let title = NSString.localizedStringWithFormat(localizedTitleText as NSString, theme.name, theme.creatorName) as String
|
||||||
|
Loading…
x
Reference in New Issue
Block a user