mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. Create Apps and Bookmarks ut project. 2. Refactor Apps and Bookmarks. And some interface in these extensions to add a abstraction layer for testing purpose. New interface list: * ISettingsInterface * IUWPApplication * IAppCache * IBookmarkDataSource 3. Add/Migrate some test case for Apps and Bookmarks extension <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] Closes: #41239 #41240 - [x] **Communication:** I've discussed this with core contributors already. If the work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [ ] **Localization:** All end-user-facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed, or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed --------- Co-authored-by: Yu Leng <yuleng@microsoft.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
97 lines
3.3 KiB
C#
97 lines
3.3 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Microsoft.CmdPal.Ext.Apps.Helpers;
|
|
using Microsoft.CmdPal.Ext.Apps.Programs;
|
|
using Microsoft.CmdPal.Ext.Apps.Properties;
|
|
using Microsoft.CommandPalette.Extensions.Toolkit;
|
|
|
|
namespace Microsoft.CmdPal.Ext.Apps;
|
|
|
|
public class AllAppsSettings : JsonSettingsManager, ISettingsInterface
|
|
{
|
|
private static readonly string _namespace = "apps";
|
|
|
|
private static string Namespaced(string propertyName) => $"{_namespace}.{propertyName}";
|
|
|
|
private static string Experimental(string propertyName) => $"{_namespace}.experimental.{propertyName}";
|
|
|
|
#pragma warning disable SA1401 // Fields should be private
|
|
internal static AllAppsSettings Instance = new();
|
|
#pragma warning restore SA1401 // Fields should be private
|
|
|
|
public DateTime LastIndexTime { get; set; }
|
|
|
|
public List<ProgramSource> ProgramSources { get; set; } = [];
|
|
|
|
public List<DisabledProgramSource> DisabledProgramSources { get; set; } = [];
|
|
|
|
public List<string> ProgramSuffixes { get; set; } = ["bat", "appref-ms", "exe", "lnk", "url"];
|
|
|
|
public List<string> RunCommandSuffixes { get; set; } = ["bat", "appref-ms", "exe", "lnk", "url", "cpl", "msc"];
|
|
|
|
public bool EnableStartMenuSource => _enableStartMenuSource.Value;
|
|
|
|
public bool EnableDesktopSource => _enableDesktopSource.Value;
|
|
|
|
public bool EnableRegistrySource => _enableRegistrySource.Value;
|
|
|
|
public bool EnablePathEnvironmentVariableSource => _enablePathEnvironmentVariableSource.Value;
|
|
|
|
private readonly ToggleSetting _enableStartMenuSource = new(
|
|
Namespaced(nameof(EnableStartMenuSource)),
|
|
Resources.enable_start_menu_source,
|
|
string.Empty,
|
|
true);
|
|
|
|
private readonly ToggleSetting _enableDesktopSource = new(
|
|
Namespaced(nameof(EnableDesktopSource)),
|
|
Resources.enable_desktop_source,
|
|
string.Empty,
|
|
true);
|
|
|
|
private readonly ToggleSetting _enableRegistrySource = new(
|
|
Namespaced(nameof(EnableRegistrySource)),
|
|
Resources.enable_registry_source,
|
|
string.Empty,
|
|
false); // This one is very noisy
|
|
|
|
private readonly ToggleSetting _enablePathEnvironmentVariableSource = new(
|
|
Namespaced(nameof(EnablePathEnvironmentVariableSource)),
|
|
Resources.enable_path_environment_variable_source,
|
|
string.Empty,
|
|
false); // this one is very VERY noisy
|
|
|
|
public double MinScoreThreshold { get; set; } = 0.75;
|
|
|
|
internal const char SuffixSeparator = ';';
|
|
|
|
internal static string SettingsJsonPath()
|
|
{
|
|
var directory = Utilities.BaseSettingsPath("Microsoft.CmdPal");
|
|
Directory.CreateDirectory(directory);
|
|
|
|
// now, the state is just next to the exe
|
|
return Path.Combine(directory, "settings.json");
|
|
}
|
|
|
|
public AllAppsSettings()
|
|
{
|
|
FilePath = SettingsJsonPath();
|
|
|
|
Settings.Add(_enableStartMenuSource);
|
|
Settings.Add(_enableDesktopSource);
|
|
Settings.Add(_enableRegistrySource);
|
|
Settings.Add(_enablePathEnvironmentVariableSource);
|
|
|
|
// Load settings from file upon initialization
|
|
LoadSettings();
|
|
|
|
Settings.SettingsChanged += (s, a) => this.SaveSettings();
|
|
}
|
|
}
|