misc: swiftlint auto fix

This commit is contained in:
yicheng 2023-06-14 11:19:09 +08:00 committed by Yicheng
parent 209c1db1fa
commit f266dbf8b7
9 changed files with 48 additions and 55 deletions

View File

@ -21,7 +21,7 @@ extension NSView {
$0.leftAnchor.constraint(equalTo: $0.superview!.leftAnchor, constant: inset.left),
$0.rightAnchor.constraint(equalTo: $0.superview!.rightAnchor, constant: -inset.right),
$0.topAnchor.constraint(equalTo: $0.superview!.topAnchor, constant: inset.top),
$0.bottomAnchor.constraint(equalTo: $0.superview!.bottomAnchor, constant: -inset.bottom),
$0.bottomAnchor.constraint(equalTo: $0.superview!.bottomAnchor, constant: -inset.bottom)
] }
}
@ -29,7 +29,7 @@ extension NSView {
func makeConstraintsBindToCenterOfSuperview() -> Self {
return makeConstraints { [
$0.centerXAnchor.constraint(equalTo: $0.superview!.centerXAnchor),
$0.centerYAnchor.constraint(equalTo: $0.superview!.centerYAnchor),
$0.centerYAnchor.constraint(equalTo: $0.superview!.centerYAnchor)
] }
}
}

View File

@ -48,14 +48,14 @@ enum Settings {
static var apiPortAllowLan: Bool
@UserDefault("disableSSIDList", defaultValue: [])
static var disableSSIDList:[String]
static var disableSSIDList: [String]
@UserDefault("useSwiftUiMenuBar", defaultValue: true)
static var useSwiftUiMenuBar: Bool
static let apiSecretKey = "api-secret"
static var isApiSecretSet:Bool {
static var isApiSecretSet: Bool {
return UserDefaults.standard.object(forKey: apiSecretKey) != nil
}

View File

@ -24,7 +24,6 @@ class SSIDSuspendTool {
self?.update()
}.disposed(by: disposeBag)
ConfigManager.shared
.proxyShouldPaused
.asObservable()

View File

@ -28,7 +28,6 @@ class DebugSettingViewController: NSViewController {
@IBAction func actionOpenLocalConfig(_ sender: Any) {
NSWorkspace.shared.openFile(kConfigFolderPath)
}
@IBAction func actionOpenIcloudConfig(_ sender: Any) {
if ICloudManager.shared.icloudAvailable {

View File

@ -25,7 +25,6 @@ class GeneralSettingViewController: NSViewController {
@IBOutlet weak var apiSecretOverrideButton: NSButton!
var disposeBag = DisposeBag()
override func viewDidLoad() {
super.viewDidLoad()
@ -37,7 +36,6 @@ class GeneralSettingViewController: NSViewController {
Settings.proxyIgnoreList = arr
}.disposed(by: disposeBag)
ssidSuspendTextField.string = Settings.disableSSIDList.joined(separator: ",")
ssidSuspendTextField.rx
.string.debounce(.milliseconds(500), scheduler: MainScheduler.instance)

View File

@ -24,7 +24,6 @@ extension KeyboardShortcuts.Name {
}
enum KeyboardShortCutManager {
static func setup() {
KeyboardShortcuts.onKeyUp(for: .toggleSystemProxyMode) {
@ -78,27 +77,25 @@ class GlobalShortCutViewController: NSViewController {
let copyShellCommand = KeyboardShortcuts.RecorderCocoa(for: .copyShellCommand)
let copyShellCommandExternal = KeyboardShortcuts.RecorderCocoa(for: .copyExternalShellCommand)
addGridView(in: proxyBox.contentView!, with: [
[NSTextField(labelWithString: NSLocalizedString("System Proxy", comment: "")),systemProxy],
[NSTextField(labelWithString: NSLocalizedString("Copy Shell Command", comment: "")),copyShellCommand],
[NSTextField(labelWithString: NSLocalizedString("Copy Shell Command (External)", comment: "")),copyShellCommandExternal],
[NSTextField(labelWithString: NSLocalizedString("System Proxy", comment: "")), systemProxy],
[NSTextField(labelWithString: NSLocalizedString("Copy Shell Command", comment: "")), copyShellCommand],
[NSTextField(labelWithString: NSLocalizedString("Copy Shell Command (External)", comment: "")), copyShellCommandExternal]
])
addGridView(in: modeBoxView, with: [
[NSTextField(labelWithString: NSLocalizedString("Direct Mode", comment: "")),KeyboardShortcuts.RecorderCocoa(for: .modeDirect)],
[NSTextField(labelWithString: NSLocalizedString("Rule Mode", comment: "")),KeyboardShortcuts.RecorderCocoa(for: .modeRule)],
[NSTextField(labelWithString: NSLocalizedString("Global Mode", comment: "")),KeyboardShortcuts.RecorderCocoa(for: .modeGlobal)],
[NSTextField(labelWithString: NSLocalizedString("Direct Mode", comment: "")), KeyboardShortcuts.RecorderCocoa(for: .modeDirect)],
[NSTextField(labelWithString: NSLocalizedString("Rule Mode", comment: "")), KeyboardShortcuts.RecorderCocoa(for: .modeRule)],
[NSTextField(labelWithString: NSLocalizedString("Global Mode", comment: "")), KeyboardShortcuts.RecorderCocoa(for: .modeGlobal)]
])
addGridView(in: otherBoxView, with: [
[NSTextField(labelWithString: NSLocalizedString("Open Menu", comment: "")),KeyboardShortcuts.RecorderCocoa(for: .openMenu)],
[NSTextField(labelWithString: NSLocalizedString("Open Log", comment: "")),KeyboardShortcuts.RecorderCocoa(for: .log)],
[NSTextField(labelWithString: NSLocalizedString("Open Dashboard", comment: "")),KeyboardShortcuts.RecorderCocoa(for: .dashboard)],
[NSTextField(labelWithString: NSLocalizedString("Open Menu", comment: "")), KeyboardShortcuts.RecorderCocoa(for: .openMenu)],
[NSTextField(labelWithString: NSLocalizedString("Open Log", comment: "")), KeyboardShortcuts.RecorderCocoa(for: .log)],
[NSTextField(labelWithString: NSLocalizedString("Open Dashboard", comment: "")), KeyboardShortcuts.RecorderCocoa(for: .dashboard)]
])
}
func addGridView(in superView:NSView, with views: [[NSView]]) {
func addGridView(in superView: NSView, with views: [[NSView]]) {
let gridView = NSGridView(views: views)
gridView.rowSpacing = 10
gridView.rowAlignment = .firstBaseline

View File

@ -56,9 +56,9 @@ class StatusMenuViewModel: ObservableObject {
struct SwiftUIView: View {
@ObservedObject var viewModel: StatusMenuViewModel
var body: some View {
HStack(alignment:.center) {
HStack(alignment: .center) {
Image(nsImage: $viewModel.image.wrappedValue).renderingMode(.template)
.resizable().aspectRatio(contentMode: .fit).frame(width: 16,height: 16)
.resizable().aspectRatio(contentMode: .fit).frame(width: 16, height: 16)
if $viewModel.showSpeed.wrappedValue {
Spacer(minLength: 0)