This repository was archived by the owner on Feb 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathHomePageSettingsModel.swift
378 lines (336 loc) · 15.2 KB
/
HomePageSettingsModel.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
//
// HomePageSettingsModel.swift
//
// Copyright © 2024 DuckDuckGo. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
import Combine
import Foundation
import NewTabPage
import os.log
import PixelKit
import SwiftUI
import SwiftUIExtensions
protocol SettingsVisibilityModelPersistor {
var didShowSettingsOnboarding: Bool { get set }
}
final class UserDefaultsSettingsVisibilityModelPersistor: SettingsVisibilityModelPersistor {
@UserDefaultsWrapper(key: .homePageDidShowSettingsOnboarding, defaultValue: false)
var didShowSettingsOnboarding: Bool
}
extension HomePage.Models {
/**
* This tiny model is used by HomePageViewController to expose a setting to control settings visibility,
* as well as to keep track of the settings onboarding popover.
*/
final class SettingsVisibilityModel: ObservableObject {
@Published var isSettingsVisible: Bool = false
var didShowSettingsOnboarding: Bool {
get {
persistor.didShowSettingsOnboarding
}
set {
persistor.didShowSettingsOnboarding = newValue
}
}
init(persistor: SettingsVisibilityModelPersistor = UserDefaultsSettingsVisibilityModelPersistor()) {
self.persistor = persistor
}
private var persistor: SettingsVisibilityModelPersistor
}
final class SettingsModel: ObservableObject {
enum Const {
static let maximumNumberOfUserImages = 8
static let defaultColorPickerColor = NSColor.white
}
enum ContentType: Equatable {
case root
case gradientPicker
case colorPicker
case customImagePicker
case defaultBackground
}
struct CustomBackgroundModeModel: Identifiable, Hashable {
let contentType: ContentType
let title: String
let customBackgroundThumbnail: CustomBackground?
var id: String {
title
}
}
let appearancePreferences: AppearancePreferences
let customImagesManager: UserBackgroundImagesManaging?
let sendPixel: (PixelKitEvent) -> Void
let openFilePanel: () -> URL?
let userColorProvider: () -> UserColorProviding
let showAddImageFailedAlert: () -> Void
let navigator: HomePageSettingsModelNavigator
let customizerOpener = NewTabPageCustomizerOpener()
@Published var settingsButtonWidth: CGFloat = .infinity
@Published private(set) var availableUserBackgroundImages: [UserBackgroundImage] = []
private var availableCustomImagesCancellable: AnyCancellable?
private var userColorCancellable: AnyCancellable?
private var customBackgroundPixelCancellable: AnyCancellable?
convenience init() {
self.init(
appearancePreferences: .shared,
userBackgroundImagesManager: UserBackgroundImagesManager(
maximumNumberOfImages: Const.maximumNumberOfUserImages,
applicationSupportDirectory: URL.sandboxApplicationSupportURL
),
sendPixel: { pixelEvent in
PixelKit.fire(pixelEvent)
},
openFilePanel: {
let panel = NSOpenPanel(allowedFileTypes: [.image])
guard case .OK = panel.runModal(), let url = panel.url else {
return nil
}
return url
},
userColorProvider: NSColorPanel.shared,
showAddImageFailedAlert: {
let alert = NSAlert.cannotReadImageAlert()
alert.runModal()
},
navigator: DefaultHomePageSettingsModelNavigator()
)
}
init(
appearancePreferences: AppearancePreferences,
userBackgroundImagesManager: UserBackgroundImagesManaging?,
sendPixel: @escaping (PixelKitEvent) -> Void,
openFilePanel: @escaping () -> URL?,
userColorProvider: @autoclosure @escaping () -> UserColorProviding,
showAddImageFailedAlert: @escaping () -> Void,
navigator: HomePageSettingsModelNavigator
) {
self.appearancePreferences = appearancePreferences
self.customImagesManager = userBackgroundImagesManager
if case .userImage = appearancePreferences.homePageCustomBackground, userBackgroundImagesManager == nil {
customBackground = nil
} else {
customBackground = appearancePreferences.homePageCustomBackground
}
self.sendPixel = sendPixel
self.openFilePanel = openFilePanel
self.userColorProvider = userColorProvider
self.showAddImageFailedAlert = showAddImageFailedAlert
self.navigator = navigator
subscribeToUserBackgroundImages()
subscribeToCustomBackground()
if let lastPickedCustomColorHexValue, let customColor = NSColor(hex: lastPickedCustomColorHexValue) {
lastPickedCustomColor = customColor
}
updateSolidColorPickerItems(pickerColor: lastPickedCustomColor ?? Const.defaultColorPickerColor)
}
private func subscribeToUserBackgroundImages() {
availableCustomImagesCancellable = customImagesManager?.availableImagesPublisher
.receive(on: DispatchQueue.main)
.handleEvents(receiveOutput: { [weak self] images in
guard case .userImage(let userBackgroundImage) = self?.customBackground, !images.contains(userBackgroundImage) else {
return
}
if let firstImage = images.first {
self?.customBackground = .userImage(firstImage)
} else {
self?.customBackground = nil
withAnimation {
self?.contentType = .root
}
}
})
.assign(to: \.availableUserBackgroundImages, onWeaklyHeld: self)
}
private func subscribeToCustomBackground() {
let customBackgroundPublisher: AnyPublisher<CustomBackground?, Never> = {
if NSApp.runType == .unitTests {
return $customBackground.dropFirst().eraseToAnyPublisher()
}
return $customBackground.dropFirst()
.throttle(for: .seconds(1), scheduler: DispatchQueue.main, latest: true)
.eraseToAnyPublisher()
}()
customBackgroundPixelCancellable = customBackgroundPublisher
.sink { [weak self] customBackground in
switch customBackground {
case .gradient:
self?.sendPixel(NewTabBackgroundPixel.newTabBackgroundSelectedGradient)
case .solidColor:
self?.sendPixel(NewTabBackgroundPixel.newTabBackgroundSelectedSolidColor)
case .userImage:
self?.sendPixel(NewTabBackgroundPixel.newTabBackgroundSelectedUserImage)
case .none:
self?.sendPixel(NewTabBackgroundPixel.newTabBackgroundReset)
}
}
}
var hasUserImages: Bool {
guard let customImagesManager else {
return false
}
return !customImagesManager.availableImages.isEmpty
}
func popToRootView() {
withAnimation {
contentType = .root
}
}
func handleRootGridSelection(_ modeModel: CustomBackgroundModeModel) {
if modeModel.contentType == .customImagePicker && !hasUserImages {
Task {
await addNewImage()
}
} else if modeModel.contentType == .defaultBackground {
withAnimation {
customBackground = nil
}
} else {
withAnimation {
contentType = modeModel.contentType
}
}
}
func openSettings() {
navigator.openAppearanceSettings()
}
@Published private(set) var contentType: ContentType = .root {
didSet {
assert(contentType != .defaultBackground, "contentType can't be set to .defaultBackground")
if contentType == .root, oldValue == .customImagePicker {
customImagesManager?.sortImagesByLastUsed()
}
}
}
@Published var customBackground: CustomBackground? {
didSet {
appearancePreferences.homePageCustomBackground = customBackground
switch customBackground {
case .solidColor(let solidColorBackground) where solidColorBackground.predefinedColorName == nil:
lastPickedCustomColor = solidColorBackground.color
case .userImage(let userBackgroundImage):
customImagesManager?.updateSelectedTimestamp(for: userBackgroundImage)
default:
break
}
if let customBackground {
Logger.homePageSettings.debug("Home page background updated: \(customBackground), color scheme: \(customBackground.colorScheme)")
} else {
Logger.homePageSettings.debug("Home page background reset")
}
}
}
private(set) var solidColorPickerItems: [SolidColorBackgroundPickerItem] = []
@MainActor
func addNewImage() async {
guard let customImagesManager, let url = openFilePanel() else {
return
}
do {
let image = try await customImagesManager.addImage(with: url)
customBackground = .userImage(image)
Logger.homePageSettings.debug("New user image added")
} catch {
sendPixel(DebugEvent(NewTabBackgroundPixel.newTabBackgroundAddImageError, error: error))
showAddImageFailedAlert()
Logger.homePageSettings.error("Failed to add user image: \(error)")
}
}
@Published private(set) var lastPickedCustomColor: NSColor? {
didSet {
guard let lastPickedCustomColor else {
return
}
lastPickedCustomColorHexValue = lastPickedCustomColor.hex()
updateSolidColorPickerItems(pickerColor: lastPickedCustomColor)
}
}
private func updateSolidColorPickerItems(pickerColor: NSColor = Const.defaultColorPickerColor) {
let predefinedColorBackgrounds = SolidColorBackground.predefinedColors.map(SolidColorBackgroundPickerItem.background)
solidColorPickerItems = [.picker(.init(color: pickerColor))] + predefinedColorBackgrounds
}
@UserDefaultsWrapper(key: .homePageLastPickedCustomColor, defaultValue: nil)
private var lastPickedCustomColorHexValue: String?
func openColorPanel() {
userColorCancellable?.cancel()
let provider = userColorProvider()
provider.showColorPanel(with: lastPickedCustomColorHexValue.flatMap(NSColor.init(hex:)) ?? Const.defaultColorPickerColor)
userColorCancellable = provider.colorPublisher
.map { CustomBackground.solidColor(.init(color: $0)) }
.assign(to: \.customBackground, onWeaklyHeld: self)
}
func onColorPickerDisappear() {
userColorCancellable?.cancel()
userColorProvider().closeColorPanel()
}
var customBackgroundModes: [CustomBackgroundModeModel] {
[
customBackgroundModeModel(for: .defaultBackground),
customBackgroundModeModel(for: .colorPicker),
customBackgroundModeModel(for: .gradientPicker),
customBackgroundModeModel(for: .customImagePicker)
]
.compactMap { $0 }
}
/**
* This function is used from Debug Menu and shouldn't otherwise be used in the code accessible to the users.
*/
func resetAllCustomizations() {
customBackground = nil
lastPickedCustomColor = nil
lastPickedCustomColorHexValue = nil
customImagesManager?.availableImages.forEach { image in
customImagesManager?.deleteImage(image)
}
updateSolidColorPickerItems()
onColorPickerDisappear()
}
private func customBackgroundModeModel(for contentType: ContentType) -> CustomBackgroundModeModel? {
switch contentType {
case .root:
assertionFailure("\(#function) must not be called for ContentType.root")
return CustomBackgroundModeModel(contentType: .root, title: "", customBackgroundThumbnail: nil)
case .gradientPicker:
return CustomBackgroundModeModel(
contentType: .gradientPicker,
title: UserText.gradients,
customBackgroundThumbnail: .gradient(customBackground?.gradient ?? CustomBackground.placeholderGradient)
)
case .colorPicker:
return CustomBackgroundModeModel(
contentType: .colorPicker,
title: UserText.solidColors,
customBackgroundThumbnail: .solidColor(customBackground?.solidColor ?? CustomBackground.placeholderColor)
)
case .customImagePicker:
guard let customImagesManager else {
return nil
}
let title = customImagesManager.availableImages.isEmpty ? UserText.addBackground : UserText.myBackgrounds
let thumbnail: CustomBackground? = {
guard customBackground?.userBackgroundImage == nil else {
return customBackground
}
guard let lastUsedUserBackgroundImage = customImagesManager.availableImages.first else {
return nil
}
return .userImage(lastUsedUserBackgroundImage)
}()
return CustomBackgroundModeModel(contentType: .customImagePicker, title: title, customBackgroundThumbnail: thumbnail)
case .defaultBackground:
return CustomBackgroundModeModel(contentType: .defaultBackground, title: UserText.defaultBackground, customBackgroundThumbnail: nil)
}
}
}
}