Supply a background for the icon if it is too short or hard to see. Issue #2220

This commit is contained in:
Maurice Parker 2020-07-20 21:01:25 -05:00
parent c0e9f28398
commit e315687cc9
5 changed files with 65 additions and 26 deletions

View File

@ -115,17 +115,21 @@ struct AppAssets {
}() }()
#if os(macOS) #if os(macOS)
static var iconBackgroundColor: NSColor = { static var nsIconBackgroundColor: NSColor = {
return NSColor(named: "IconBackgroundColor")! return NSColor(named: "IconBackgroundColor")!
}() }()
#endif #endif
#if os(iOS) #if os(iOS)
static var iconBackgroundColor: UIColor = { static var uiIconBackgroundColor: UIColor = {
return UIColor(named: "IconBackgroundColor")! return UIColor(named: "IconBackgroundColor")!
}() }()
#endif #endif
static var iconBackgroundColor: Color = {
return Color("IconBackgroundColor")
}()
static var markBelowAsReadImage: Image = { static var markBelowAsReadImage: Image = {
return Image(systemName: "arrowtriangle.down.circle") return Image(systemName: "arrowtriangle.down.circle")
}() }()
@ -154,12 +158,12 @@ struct AppAssets {
#if os(macOS) #if os(macOS)
let image = NSImage(systemSymbolName: "folder.fill", accessibilityDescription: nil)! let image = NSImage(systemSymbolName: "folder.fill", accessibilityDescription: nil)!
let coloredImage = image.tinted(with: NSColor(named: "AccentColor")!) let coloredImage = image.tinted(with: NSColor(named: "AccentColor")!)
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
#if os(iOS) #if os(iOS)
let image = UIImage(systemName: "folder.fill")! let image = UIImage(systemName: "folder.fill")!
let coloredImage = image.tinted(color: UIColor(named: "AccentColor")!)! let coloredImage = image.tinted(color: UIColor(named: "AccentColor")!)!
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
} }
@ -193,10 +197,10 @@ struct AppAssets {
static var searchFeedImage: IconImage = { static var searchFeedImage: IconImage = {
#if os(macOS) #if os(macOS)
return IconImage(NSImage(systemSymbolName: "magnifyingglass", accessibilityDescription: nil)!) return IconImage(NSImage(systemSymbolName: "magnifyingglass", accessibilityDescription: nil)!, isSymbol: true)
#endif #endif
#if os(iOS) #if os(iOS)
return IconImage(UIImage(systemName: "magnifyingglass")!) return IconImage(UIImage(systemName: "magnifyingglass")!, isSymbol: true)
#endif #endif
}() }()
@ -233,12 +237,12 @@ struct AppAssets {
#if os(macOS) #if os(macOS)
let image = NSImage(systemSymbolName: "star.fill", accessibilityDescription: nil)! let image = NSImage(systemSymbolName: "star.fill", accessibilityDescription: nil)!
let coloredImage = image.tinted(with: NSColor(named: "StarColor")!) let coloredImage = image.tinted(with: NSColor(named: "StarColor")!)
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
#if os(iOS) #if os(iOS)
let image = UIImage(systemName: "star.fill")! let image = UIImage(systemName: "star.fill")!
let coloredImage = image.tinted(color: UIColor(named: "StarColor")!)! let coloredImage = image.tinted(color: UIColor(named: "StarColor")!)!
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
}() }()
@ -276,12 +280,12 @@ struct AppAssets {
#if os(macOS) #if os(macOS)
let image = NSImage(systemSymbolName: "sun.max.fill", accessibilityDescription: nil)! let image = NSImage(systemSymbolName: "sun.max.fill", accessibilityDescription: nil)!
let coloredImage = image.tinted(with: .orange) let coloredImage = image.tinted(with: .orange)
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
#if os(iOS) #if os(iOS)
let image = UIImage(systemName: "sun.max.fill")! let image = UIImage(systemName: "sun.max.fill")!
let coloredImage = image.tinted(color: .orange)! let coloredImage = image.tinted(color: .orange)!
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
}() }()
@ -289,12 +293,12 @@ struct AppAssets {
#if os(macOS) #if os(macOS)
let image = NSImage(systemSymbolName: "largecircle.fill.circle", accessibilityDescription: nil)! let image = NSImage(systemSymbolName: "largecircle.fill.circle", accessibilityDescription: nil)!
let coloredImage = image.tinted(with: NSColor(named: "AccentColor")!) let coloredImage = image.tinted(with: NSColor(named: "AccentColor")!)
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
#if os(iOS) #if os(iOS)
let image = UIImage(systemName: "largecircle.fill.circle")! let image = UIImage(systemName: "largecircle.fill.circle")!
let coloredImage = image.tinted(color: UIColor(named: "AccentColor")!)! let coloredImage = image.tinted(color: UIColor(named: "AccentColor")!)!
return IconImage(coloredImage) return IconImage(coloredImage, isSymbol: true)
#endif #endif
} }

View File

@ -10,18 +10,51 @@ import SwiftUI
struct IconImageView: View { struct IconImageView: View {
@Environment(\.colorScheme) var colorScheme
var iconImage: IconImage var iconImage: IconImage
var body: some View { @ViewBuilder var body: some View {
return Image(rsImage: iconImage.image) GeometryReader { proxy in
.resizable()
.scaledToFit() let newSize = newImageSize(viewSize: proxy.size)
let tooShort = newSize.height < proxy.size.height
let indistinguishable = colorScheme == .dark ? iconImage.isDark : iconImage.isBright
let showBackground = (tooShort && !iconImage.isSymbol) || indistinguishable
Group {
Image(rsImage: iconImage.image)
.resizable()
.scaledToFit()
.frame(width: newSize.width, height: newSize.height, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
}
.frame(width: proxy.size.width, height: proxy.size.height, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
.background(showBackground ? AppAssets.iconBackgroundColor : nil)
.cornerRadius(4) .cornerRadius(4)
}
} }
}
func newImageSize(viewSize: CGSize) -> CGSize {
struct IconImageView_Previews: PreviewProvider { let imageSize = iconImage.image.size
static var previews: some View { let newSize: CGSize
IconImageView(iconImage: IconImage(AppAssets.faviconTemplateImage))
} if imageSize.height == imageSize.width {
if imageSize.height >= viewSize.height * 0.75 {
newSize = CGSize(width: viewSize.width, height: viewSize.height)
} else {
newSize = CGSize(width: imageSize.width, height: imageSize.height)
}
} else if imageSize.height > imageSize.width {
let factor = viewSize.height / imageSize.height
let width = imageSize.width * factor
newSize = CGSize(width: width, height: viewSize.height)
} else {
let factor = viewSize.width / imageSize.width
let height = imageSize.height * factor
newSize = CGSize(width: viewSize.width, height: height)
}
return newSize
}
} }

View File

@ -76,7 +76,7 @@ final class IconView: UIView {
override func layoutSubviews() { override func layoutSubviews() {
imageView.setFrameIfNotEqual(rectForImageView()) imageView.setFrameIfNotEqual(rectForImageView())
if (iconImage != nil && isVerticalBackgroundExposed && !isSymbolImage) || !isDisconcernable { if (iconImage != nil && isVerticalBackgroundExposed && !isSymbolImage) || !isDisconcernable {
backgroundColor = AppAssets.iconBackgroundColor backgroundColor = AppAssets.uiIconBackgroundColor
} else { } else {
backgroundColor = nil backgroundColor = nil
} }

View File

@ -85,7 +85,7 @@ final class IconView: NSView {
return return
} }
let color = AppAssets.iconBackgroundColor let color = AppAssets.nsIconBackgroundColor
color.set() color.set()
dirtyRect.fill() dirtyRect.fill()
} }

View File

@ -25,9 +25,11 @@ final class IconImage {
}() }()
let image: RSImage let image: RSImage
var isSymbol: Bool
init(_ image: RSImage) {
init(_ image: RSImage, isSymbol: Bool = false) {
self.image = image self.image = image
self.isSymbol = isSymbol
} }
} }