mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
## Summary of the Pull Request This change marks the System command provider as special, ensuring fallback items are surfaced at the top of the list. Additionally, the SystemCommandExtensionProvider ID has been updated to comply with the new naming convention. As a small cleanup, SystemCommandExtensionProvider is now sealed. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] Related to: #42524 - [ ] **Communication:** I've discussed this with core contributors already. If the work hasn't been agreed, this work might be rejected - [ ] **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
52 lines
2.6 KiB
C#
52 lines
2.6 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.Globalization;
|
|
using System.Text;
|
|
using Microsoft.CmdPal.Ext.TimeDate.Helpers;
|
|
using Microsoft.CmdPal.Ext.TimeDate.Pages;
|
|
using Microsoft.CommandPalette.Extensions;
|
|
using Microsoft.CommandPalette.Extensions.Toolkit;
|
|
|
|
namespace Microsoft.CmdPal.Ext.TimeDate;
|
|
|
|
public sealed partial class TimeDateCommandsProvider : CommandProvider
|
|
{
|
|
private readonly CommandItem _command;
|
|
private static readonly SettingsManager _settingsManager = new SettingsManager();
|
|
private static readonly CompositeFormat MicrosoftPluginTimedatePluginDescription = System.Text.CompositeFormat.Parse(Resources.Microsoft_plugin_timedate_plugin_description);
|
|
private static readonly TimeDateExtensionPage _timeDateExtensionPage = new(_settingsManager);
|
|
private readonly FallbackTimeDateItem _fallbackTimeDateItem = new(_settingsManager);
|
|
|
|
public TimeDateCommandsProvider()
|
|
{
|
|
DisplayName = Resources.Microsoft_plugin_timedate_plugin_name;
|
|
Id = "com.microsoft.cmdpal.builtin.datetime";
|
|
_command = new CommandItem(_timeDateExtensionPage)
|
|
{
|
|
Icon = _timeDateExtensionPage.Icon,
|
|
Title = Resources.Microsoft_plugin_timedate_plugin_name,
|
|
Subtitle = GetTranslatedPluginDescription(),
|
|
MoreCommands = [new CommandContextItem(_settingsManager.Settings.SettingsPage)],
|
|
};
|
|
|
|
Icon = _timeDateExtensionPage.Icon;
|
|
Settings = _settingsManager.Settings;
|
|
}
|
|
|
|
private string GetTranslatedPluginDescription()
|
|
{
|
|
// The extra strings for the examples are required for correct translations.
|
|
var timeExample = Resources.Microsoft_plugin_timedate_plugin_description_example_time + "::" + DateTime.Now.ToString("T", CultureInfo.CurrentCulture);
|
|
var dayExample = Resources.Microsoft_plugin_timedate_plugin_description_example_day + "::" + DateTime.Now.ToString("d", CultureInfo.CurrentCulture);
|
|
var calendarWeekExample = Resources.Microsoft_plugin_timedate_plugin_description_example_calendarWeek + "::" + DateTime.Now.ToString("d", CultureInfo.CurrentCulture);
|
|
return string.Format(CultureInfo.CurrentCulture, MicrosoftPluginTimedatePluginDescription, Resources.Microsoft_plugin_timedate_plugin_description_example_day, dayExample, timeExample, calendarWeekExample);
|
|
}
|
|
|
|
public override ICommandItem[] TopLevelCommands() => [_command];
|
|
|
|
public override IFallbackCommandItem[] FallbackCommands() => [_fallbackTimeDateItem];
|
|
}
|