Look and feel updates
This commit is contained in:
parent
3fdb0d1f04
commit
0c196dca88
@ -75,22 +75,26 @@ struct AddAccountsView: View {
|
|||||||
webAccounts
|
webAccounts
|
||||||
selfhostedAccounts
|
selfhostedAccounts
|
||||||
|
|
||||||
HStack {
|
HStack(spacing: 12) {
|
||||||
Spacer()
|
Spacer()
|
||||||
if #available(OSX 11.0, *) {
|
if #available(OSX 11.0, *) {
|
||||||
Button(action: {
|
Button(action: {
|
||||||
parent?.dismiss(nil)
|
parent?.dismiss(nil)
|
||||||
}, label: {
|
}, label: {
|
||||||
Text("Cancel")
|
Text("Cancel")
|
||||||
.accessibility(label: Text("Add Account"))
|
.frame(width: 80)
|
||||||
}).keyboardShortcut(.cancelAction)
|
})
|
||||||
|
.help("Cancel")
|
||||||
|
.keyboardShortcut(.cancelAction)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Button(action: {
|
Button(action: {
|
||||||
parent?.dismiss(nil)
|
parent?.dismiss(nil)
|
||||||
}, label: {
|
}, label: {
|
||||||
Text("Cancel")
|
Text("Cancel")
|
||||||
.accessibility(label: Text("Add Account"))
|
.frame(width: 80)
|
||||||
})
|
})
|
||||||
|
.accessibility(label: Text("Add Account"))
|
||||||
}
|
}
|
||||||
if #available(OSX 11.0, *) {
|
if #available(OSX 11.0, *) {
|
||||||
Button(action: {
|
Button(action: {
|
||||||
@ -98,21 +102,26 @@ struct AddAccountsView: View {
|
|||||||
parent?.dismiss(nil)
|
parent?.dismiss(nil)
|
||||||
}, label: {
|
}, label: {
|
||||||
Text("Continue")
|
Text("Continue")
|
||||||
}).keyboardShortcut(.defaultAction)
|
.frame(width: 80)
|
||||||
|
})
|
||||||
|
.help("Add Account")
|
||||||
|
.keyboardShortcut(.defaultAction)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Button(action: {
|
Button(action: {
|
||||||
addAccountDelegate?.presentSheetForAccount(selectedAccount)
|
addAccountDelegate?.presentSheetForAccount(selectedAccount)
|
||||||
parent?.dismiss(nil)
|
parent?.dismiss(nil)
|
||||||
}, label: {
|
}, label: {
|
||||||
Text("Continue")
|
Text("Continue")
|
||||||
|
.frame(width: 80)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}.padding([.top, .bottom], 4)
|
}.padding([.top, .bottom], 4)
|
||||||
}
|
}
|
||||||
.pickerStyle(RadioGroupPickerStyle())
|
.pickerStyle(RadioGroupPickerStyle())
|
||||||
.fixedSize(horizontal: false, vertical: true)
|
.fixedSize(horizontal: false, vertical: true)
|
||||||
.frame(width: 400)
|
.frame(width: 420)
|
||||||
.padding(12)
|
.padding()
|
||||||
}
|
}
|
||||||
|
|
||||||
var localAccount: some View {
|
var localAccount: some View {
|
||||||
@ -123,11 +132,13 @@ struct AddAccountsView: View {
|
|||||||
Picker(selection: $selectedAccount, label: Text(""), content: {
|
Picker(selection: $selectedAccount, label: Text(""), content: {
|
||||||
ForEach(AddAccountSections.local.sectionContent, id: \.self, content: { account in
|
ForEach(AddAccountSections.local.sectionContent, id: \.self, content: { account in
|
||||||
HStack(alignment: .top) {
|
HStack(alignment: .top) {
|
||||||
Image(nsImage: AppAssets.image(for: account)!)
|
account.image()
|
||||||
.resizable()
|
.resizable()
|
||||||
.aspectRatio(contentMode: .fit)
|
.aspectRatio(contentMode: .fit)
|
||||||
.frame(width: 25, height: 25, alignment: .center)
|
.frame(width: 25, height: 25, alignment: .center)
|
||||||
.offset(CGSize(width: 0, height: -2.5))
|
.offset(CGSize(width: 0, height: -2.5))
|
||||||
|
.padding(.leading, 4)
|
||||||
|
|
||||||
|
|
||||||
VStack(alignment: .leading, spacing: 4) {
|
VStack(alignment: .leading, spacing: 4) {
|
||||||
Text(account.localizedAccountName())
|
Text(account.localizedAccountName())
|
||||||
@ -139,6 +150,7 @@ struct AddAccountsView: View {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
.pickerStyle(RadioGroupPickerStyle())
|
.pickerStyle(RadioGroupPickerStyle())
|
||||||
|
.offset(x: 7.5, y: 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -151,11 +163,12 @@ struct AddAccountsView: View {
|
|||||||
Picker(selection: $selectedAccount, label: Text(""), content: {
|
Picker(selection: $selectedAccount, label: Text(""), content: {
|
||||||
ForEach(AddAccountSections.icloud.sectionContent, id: \.self, content: { account in
|
ForEach(AddAccountSections.icloud.sectionContent, id: \.self, content: { account in
|
||||||
HStack(alignment: .top) {
|
HStack(alignment: .top) {
|
||||||
Image(nsImage: AppAssets.image(for: account)!)
|
account.image()
|
||||||
.resizable()
|
.resizable()
|
||||||
.aspectRatio(contentMode: .fit)
|
.aspectRatio(contentMode: .fit)
|
||||||
.frame(width: 25, height: 25, alignment: .center)
|
.frame(width: 25, height: 25, alignment: .center)
|
||||||
.offset(CGSize(width: 0, height: -5))
|
.offset(CGSize(width: 0, height: -5))
|
||||||
|
.padding(.leading, 4)
|
||||||
|
|
||||||
VStack(alignment: .leading, spacing: 4) {
|
VStack(alignment: .leading, spacing: 4) {
|
||||||
Text(account.localizedAccountName())
|
Text(account.localizedAccountName())
|
||||||
@ -166,6 +179,7 @@ struct AddAccountsView: View {
|
|||||||
.tag(account)
|
.tag(account)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
.offset(x: 7.5, y: 0)
|
||||||
.disabled(isCloudInUse())
|
.disabled(isCloudInUse())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -179,10 +193,11 @@ struct AddAccountsView: View {
|
|||||||
ForEach(AddAccountSections.web.sectionContent.filter({ isRestricted($0) != true }), id: \.self, content: { account in
|
ForEach(AddAccountSections.web.sectionContent.filter({ isRestricted($0) != true }), id: \.self, content: { account in
|
||||||
|
|
||||||
HStack(alignment: .center) {
|
HStack(alignment: .center) {
|
||||||
Image(nsImage: AppAssets.image(for: account)!)
|
account.image()
|
||||||
.resizable()
|
.resizable()
|
||||||
.aspectRatio(contentMode: .fit)
|
.aspectRatio(contentMode: .fit)
|
||||||
.frame(width: 25, height: 25, alignment: .center)
|
.frame(width: 25, height: 25, alignment: .center)
|
||||||
|
.padding(.leading, 4)
|
||||||
|
|
||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
Text(account.localizedAccountName())
|
Text(account.localizedAccountName())
|
||||||
@ -192,6 +207,7 @@ struct AddAccountsView: View {
|
|||||||
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
.offset(x: 7.5, y: 0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,20 +219,23 @@ struct AddAccountsView: View {
|
|||||||
Picker(selection: $selectedAccount, label: Text(""), content: {
|
Picker(selection: $selectedAccount, label: Text(""), content: {
|
||||||
ForEach(AddAccountSections.selfhosted.sectionContent, id: \.self, content: { account in
|
ForEach(AddAccountSections.selfhosted.sectionContent, id: \.self, content: { account in
|
||||||
HStack {
|
HStack {
|
||||||
Image(nsImage: AppAssets.image(for: account)!)
|
account.image()
|
||||||
.resizable()
|
.resizable()
|
||||||
.aspectRatio(contentMode: .fit)
|
.aspectRatio(contentMode: .fit)
|
||||||
.frame(width: 25, height: 25, alignment: .center)
|
.frame(width: 25, height: 25, alignment: .center)
|
||||||
|
.padding(.leading, 4)
|
||||||
|
|
||||||
Text(account.localizedAccountName())
|
Text(account.localizedAccountName())
|
||||||
}.tag(account)
|
}.tag(account)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
.offset(x: 7.5, y: 0)
|
||||||
|
|
||||||
Text("Web and self-hosted accounts sync across all signed-in devices.")
|
Text("Web and self-hosted accounts sync across all signed-in devices.")
|
||||||
.font(.caption)
|
.font(.caption)
|
||||||
.padding(.leading, 62)
|
|
||||||
.foregroundColor(.gray)
|
.foregroundColor(.gray)
|
||||||
|
.padding(.horizontal)
|
||||||
|
.offset(x: 57)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
"version" : 1
|
"version" : 1
|
||||||
},
|
},
|
||||||
"properties" : {
|
"properties" : {
|
||||||
|
"preserves-vector-representation" : true,
|
||||||
"template-rendering-intent" : "original"
|
"template-rendering-intent" : "original"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
"filename" : "NewsBlur.pdf",
|
"filename" : "Newsblur-any.pdf",
|
||||||
"idiom" : "universal"
|
"idiom" : "universal"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
"filename" : "theOldReaderAny.pdf",
|
"filename" : "oldreader-icon-any.pdf",
|
||||||
"idiom" : "universal"
|
"idiom" : "universal"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -11,7 +11,7 @@
|
|||||||
"value" : "dark"
|
"value" : "dark"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filename" : "theOldReaderDark.pdf",
|
"filename" : "oldreader-icon-dark.pdf",
|
||||||
"idiom" : "universal"
|
"idiom" : "universal"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -13,6 +13,7 @@ import AppKit
|
|||||||
#else
|
#else
|
||||||
import UIKit
|
import UIKit
|
||||||
#endif
|
#endif
|
||||||
|
import SwiftUI
|
||||||
|
|
||||||
extension AccountType {
|
extension AccountType {
|
||||||
|
|
||||||
@ -54,11 +55,32 @@ extension AccountType {
|
|||||||
default:
|
default:
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: - SwiftUI Images
|
||||||
|
func image() -> Image {
|
||||||
|
switch self {
|
||||||
|
case .onMyMac:
|
||||||
|
return Image("accountLocal")
|
||||||
|
case .bazQux:
|
||||||
|
return Image("accountBazQux")
|
||||||
|
case .cloudKit:
|
||||||
|
return Image("accountCloudKit")
|
||||||
|
case .feedWrangler:
|
||||||
|
return Image("accountFeedWrangler")
|
||||||
|
case .feedbin:
|
||||||
|
return Image("accountFeedbin")
|
||||||
|
case .feedly:
|
||||||
|
return Image("accountFeedly")
|
||||||
|
case .freshRSS:
|
||||||
|
return Image("accountFreshRSS")
|
||||||
|
case .inoreader:
|
||||||
|
return Image("accountInoreader")
|
||||||
|
case .newsBlur:
|
||||||
|
return Image("accountNewsBlur")
|
||||||
|
case .theOldReader:
|
||||||
|
return Image("accountTheOldReader")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user