mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 11:01:38 +00:00
Some checks are pending
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
45 lines
1.7 KiB
C#
45 lines
1.7 KiB
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// The data structure for a Tauri event sent from the Rust backend to the C# frontend.
|
|
/// </summary>
|
|
/// <param name="EventType">The type of the Tauri event.</param>
|
|
/// <param name="Payload">The payload of the Tauri event.</param>
|
|
public readonly record struct TauriEvent(TauriEventType EventType, List<string> Payload)
|
|
{
|
|
/// <summary>
|
|
/// Attempts to parse the first payload element as a shortcut.
|
|
/// </summary>
|
|
/// <param name="shortcut">The parsed shortcut name if successful.</param>
|
|
/// <returns>True if parsing was successful, false otherwise.</returns>
|
|
public bool TryGetShortcut(out Shortcut shortcut)
|
|
{
|
|
shortcut = default;
|
|
if(this.EventType != TauriEventType.GLOBAL_SHORTCUT_PRESSED)
|
|
return false;
|
|
|
|
if (this.Payload.Count == 0)
|
|
return false;
|
|
|
|
// Try standard enum parsing (handles PascalCase and numeric values):
|
|
if (Enum.TryParse(this.Payload[0], ignoreCase: true, out shortcut))
|
|
return true;
|
|
|
|
// Try parsing snake_case format (e.g., "voice_recording_toggle"):
|
|
return TryParseSnakeCase(this.Payload[0], out shortcut);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tries to parse a snake_case string into a ShortcutName enum value.
|
|
/// </summary>
|
|
private static bool TryParseSnakeCase(string value, out Shortcut shortcut)
|
|
{
|
|
shortcut = default;
|
|
|
|
// Convert snake_case to UPPER_SNAKE_CASE for enum matching:
|
|
var upperSnakeCase = value.ToUpperInvariant();
|
|
|
|
// Try to match against enum names (which are in UPPER_SNAKE_CASE):
|
|
return Enum.TryParse(upperSnakeCase, ignoreCase: false, out shortcut);
|
|
}
|
|
}; |