mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 02:06:36 +02: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 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] Closes: #41241 #41242 - [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>
73 lines
2.8 KiB
C#
73 lines
2.8 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.Collections.Generic;
|
|
using System.IO;
|
|
using Microsoft.CmdPal.Ext.Shell.Properties;
|
|
using Microsoft.CommandPalette.Extensions.Toolkit;
|
|
|
|
namespace Microsoft.CmdPal.Ext.Shell.Helpers;
|
|
|
|
public class SettingsManager : JsonSettingsManager, ISettingsInterface
|
|
{
|
|
private static readonly string _namespace = "shell";
|
|
|
|
private static string Namespaced(string propertyName) => $"{_namespace}.{propertyName}";
|
|
|
|
private static readonly List<ChoiceSetSetting.Choice> _choices =
|
|
[
|
|
new ChoiceSetSetting.Choice(Resources.find_executable_file_and_run_it, "2"), // idk why but this is how PT Run did it? Maybe ordering matters there
|
|
new ChoiceSetSetting.Choice(Resources.run_command_in_command_prompt, "0"),
|
|
new ChoiceSetSetting.Choice(Resources.run_command_in_powershell, "1"),
|
|
new ChoiceSetSetting.Choice(Resources.run_command_in_powershell_seven, "6"),
|
|
new ChoiceSetSetting.Choice(Resources.run_command_in_windows_terminal_cmd, "5"),
|
|
new ChoiceSetSetting.Choice(Resources.run_command_in_windows_terminal_powershell, "3"),
|
|
new ChoiceSetSetting.Choice(Resources.run_command_in_windows_terminal_powershell_seven, "4"),
|
|
];
|
|
|
|
private readonly ToggleSetting _leaveShellOpen = new(
|
|
Namespaced(nameof(LeaveShellOpen)),
|
|
Resources.leave_shell_open,
|
|
Resources.leave_shell_open,
|
|
false); // TODO -- double check default value
|
|
|
|
private readonly ChoiceSetSetting _shellCommandExecution = new(
|
|
Namespaced(nameof(ShellCommandExecution)),
|
|
Resources.shell_command_execution,
|
|
Resources.shell_command_execution_description,
|
|
_choices);
|
|
|
|
public bool LeaveShellOpen => _leaveShellOpen.Value;
|
|
|
|
public string ShellCommandExecution => _shellCommandExecution.Value ?? string.Empty;
|
|
|
|
public bool RunAsAdministrator { get; set; }
|
|
|
|
public Dictionary<string, int> Count { get; } = [];
|
|
|
|
public void AddCmdHistory(string cmdName) => Count[cmdName] = Count.TryGetValue(cmdName, out var currentCount) ? currentCount + 1 : 1;
|
|
|
|
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 SettingsManager()
|
|
{
|
|
FilePath = SettingsJsonPath();
|
|
|
|
Settings.Add(_leaveShellOpen);
|
|
Settings.Add(_shellCommandExecution);
|
|
|
|
// Load settings from file upon initialization
|
|
LoadSettings();
|
|
|
|
Settings.SettingsChanged += (s, a) => this.SaveSettings();
|
|
}
|
|
}
|