-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract NTP-related persistence from AppUserDefaults
- Loading branch information
Showing
17 changed files
with
148 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// | ||
// NewTabPageStorage.swift | ||
// DuckDuckGo | ||
// | ||
// 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 Foundation | ||
import Core | ||
|
||
protocol NewTabPageIntroDataStoring: AnyObject { | ||
var newTabPageIntroMessageEnabled: Bool? { get set } | ||
var newTabPageIntroMessageSeenCount: Int { get set } | ||
} | ||
|
||
protocol NewTabPageSettingsDataStoring: AnyObject { | ||
var newTabPageShortcutsSettings: Data? { get set } | ||
var newTabPageSectionsSettings: Data? { get set } | ||
} | ||
|
||
final class NewTabPageIntroDataUserDefaultsStorage: NewTabPageIntroDataStoring { | ||
@UserDefaultsWrapper(key: .newTabPageIntroMessageEnabled, defaultValue: nil) | ||
var newTabPageIntroMessageEnabled: Bool? | ||
|
||
@UserDefaultsWrapper(key: .newTabPageIntroMessageSeenCount, defaultValue: 0) | ||
var newTabPageIntroMessageSeenCount: Int | ||
} | ||
|
||
final class NewTabPageSettingsDataUserDefaultsStorage: NewTabPageSettingsDataStoring { | ||
@UserDefaultsWrapper(key: .newTabPageShortcutsSettings, defaultValue: nil) | ||
var newTabPageShortcutsSettings: Data? | ||
|
||
@UserDefaultsWrapper(key: .newTabPageSectionsSettings, defaultValue: nil) | ||
var newTabPageSectionsSettings: Data? | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.