Toolbelt.Blazor.HotKeys
2.0.0
Configuration-centric keyboard shortcuts for your Blazor apps.
See the version list below for details.
Install-Package Toolbelt.Blazor.HotKeys -Version 2.0.0
dotnet add package Toolbelt.Blazor.HotKeys --version 2.0.0
<PackageReference Include="Toolbelt.Blazor.HotKeys" Version="2.0.0" />
paket add Toolbelt.Blazor.HotKeys --version 2.0.0
Blazor HotKeys 
Summary
This is a class library that provides configuration-centric keyboard shortcuts for your Blazor apps.
You can declare associations of keyboard shortcut and callback action, like this code:
// The method "OnSelectAll" will be invoked
// when the user typed Ctrl+A key combination.
this.HotKeysContext = this.HotKeys.CreateContext()
.Add(ModKeys.Ctrl, Keys.A, OnSelectAll)
.Add(...)
...;
This library was created inspired by "angular-hotkeys".
Requirements
Client-side Blazor v.0.8.0
How to install and use?
1. Installation and Registration
Step.1 Install the library via NuGet package, like this.
> dotnet add package Toolbelt.Blazor.HotKeys
Step.2 Register "HotKeys" service into the DI container, at ConfigureService
method in the Startup
class of your Blazor application.
using Toolbelt.Blazor.Extensions.DependencyInjection; // <- Add this line, and...
...
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddHotKeys(); // <- Add this line.
...
2. Usage in your Blazor component (.cshtml)
Step.1 Implement IDisposable
interface to the component.
@implements IDisposable @* <- Add this at top of the component. *@
...
@functions {
...
public void Dispose() // <- Add "Dispose" method.
{
}
}
Step.2 Open the Toolbelt.Blazor.HotKeys
namespace, and inject the HotKeys
service into the component.
@implements IDisposable
@using Toolbelt.Blazor.HotKeys @* <- Add this, and ... *@
@inject HotKeys HotKeys @* <- And add this. *@
...
Step.3 Invoke CreateContext()
method of the HotKeys
service instance to create and activate hot keys entries at startup of the component such as OnInit()
method.
You can add the combination with key and action to the HotKeysContext
object that is returned from CreateContext()
method, using Add()
method.
Please remember that you have to keep the HotKeys Context
object in the component field.
@functions {
HotKeysContext HotKeysContext;
protected override void OnInit()
{
this.HotKeysContext = this.HotKeys.CreateContext()
.Add(ModKeys.Ctrl|ModKeys.Shift, Keys.A, FooBar, "do foo bar.")
.Add(...)
...;
}
void FooBar() // <- This will be invoked when Ctrl+Shift+A typed.
{
...
}
}
Note.1: You can also specify the async method to the callback action argument.
Note.2: The method of the callback action can take an argument which is
HotKeyEntry
object.
Step.4 Destroy the HotKeysContext
when the component is disposing, in the Dispose()
method of the component.
@functions {
...
public void Dispose()
{
this.HotKeysContext.Dispose(); // <- Add this.
}
}
The complete source code (.cshtml) of this component is bellow.
@page "/"
@implements IDisposable
@using Toolbelt.Blazor.HotKeys
@inject HotKeys HotKeys
@functions {
HotKeysContext HotKeysContext;
protected override void OnInit()
{
this.HotKeysContext = this.HotKeys.CreateContext()
.Add(ModKeys.Ctrl|ModKeys.Shift, Keys.A, FooBar, "do foo bar.");
}
void FooBar()
{
// Do something here.
}
public void Dispose()
{
this.HotKeysContext.Dispose();
}
}
Limitations
Server-side Blazor is not supported
This library doesn't support Server-side Blazor, at this time.
No "Cheat Sheet"
Unlike "angular-hotkeys", this library doesn't provide "cheat sheet" feature, at this time.
Instead, the HotKeysContext
object provides Keys
property, so you can implement your own "Cheat Sheet" UI, like this code:
<ul>
@foreach (var key in this.HotKeysContext.Keys)
{
<li>@key</li>
}
</ul>
The rendering result:
- Shift+Ctrl+A: do foo bar.
- ...
Release Note
- v.2.0.0 - BREAKING CHANGE: Support Blazor v.0.8.0 (not compatible with v.0.7.0 or before.)
- v.1.1.0 - Support Blazor v.0.6.0 - it was signed strong name.
- v.1.0.0 - 1st release.
License
Blazor HotKeys 
Summary
This is a class library that provides configuration-centric keyboard shortcuts for your Blazor apps.
You can declare associations of keyboard shortcut and callback action, like this code:
// The method "OnSelectAll" will be invoked
// when the user typed Ctrl+A key combination.
this.HotKeysContext = this.HotKeys.CreateContext()
.Add(ModKeys.Ctrl, Keys.A, OnSelectAll)
.Add(...)
...;
This library was created inspired by "angular-hotkeys".
Requirements
Client-side Blazor v.0.8.0
How to install and use?
1. Installation and Registration
Step.1 Install the library via NuGet package, like this.
> dotnet add package Toolbelt.Blazor.HotKeys
Step.2 Register "HotKeys" service into the DI container, at ConfigureService
method in the Startup
class of your Blazor application.
using Toolbelt.Blazor.Extensions.DependencyInjection; // <- Add this line, and...
...
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddHotKeys(); // <- Add this line.
...
2. Usage in your Blazor component (.cshtml)
Step.1 Implement IDisposable
interface to the component.
@implements IDisposable @* <- Add this at top of the component. *@
...
@functions {
...
public void Dispose() // <- Add "Dispose" method.
{
}
}
Step.2 Open the Toolbelt.Blazor.HotKeys
namespace, and inject the HotKeys
service into the component.
@implements IDisposable
@using Toolbelt.Blazor.HotKeys @* <- Add this, and ... *@
@inject HotKeys HotKeys @* <- And add this. *@
...
Step.3 Invoke CreateContext()
method of the HotKeys
service instance to create and activate hot keys entries at startup of the component such as OnInit()
method.
You can add the combination with key and action to the HotKeysContext
object that is returned from CreateContext()
method, using Add()
method.
Please remember that you have to keep the HotKeys Context
object in the component field.
@functions {
HotKeysContext HotKeysContext;
protected override void OnInit()
{
this.HotKeysContext = this.HotKeys.CreateContext()
.Add(ModKeys.Ctrl|ModKeys.Shift, Keys.A, FooBar, "do foo bar.")
.Add(...)
...;
}
void FooBar() // <- This will be invoked when Ctrl+Shift+A typed.
{
...
}
}
Note.1: You can also specify the async method to the callback action argument.
Note.2: The method of the callback action can take an argument which is
HotKeyEntry
object.
Step.4 Destroy the HotKeysContext
when the component is disposing, in the Dispose()
method of the component.
@functions {
...
public void Dispose()
{
this.HotKeysContext.Dispose(); // <- Add this.
}
}
The complete source code (.cshtml) of this component is bellow.
@page "/"
@implements IDisposable
@using Toolbelt.Blazor.HotKeys
@inject HotKeys HotKeys
@functions {
HotKeysContext HotKeysContext;
protected override void OnInit()
{
this.HotKeysContext = this.HotKeys.CreateContext()
.Add(ModKeys.Ctrl|ModKeys.Shift, Keys.A, FooBar, "do foo bar.");
}
void FooBar()
{
// Do something here.
}
public void Dispose()
{
this.HotKeysContext.Dispose();
}
}
Limitations
Server-side Blazor is not supported
This library doesn't support Server-side Blazor, at this time.
No "Cheat Sheet"
Unlike "angular-hotkeys", this library doesn't provide "cheat sheet" feature, at this time.
Instead, the HotKeysContext
object provides Keys
property, so you can implement your own "Cheat Sheet" UI, like this code:
<ul>
@foreach (var key in this.HotKeysContext.Keys)
{
<li>@key</li>
}
</ul>
The rendering result:
- Shift+Ctrl+A: do foo bar.
- ...
Release Note
- v.2.0.0 - BREAKING CHANGE: Support Blazor v.0.8.0 (not compatible with v.0.7.0 or before.)
- v.1.1.0 - Support Blazor v.0.6.0 - it was signed strong name.
- v.1.0.0 - 1st release.
License
Release Notes
v.2.0.0
- BREAKING CHANGE: Support Blazor v.0.8.0 (not compatible with v.0.7.0 or before.)
v.1.1.0
- Support Blazor v.0.6.0 - it was signed strong name.
v.1.0.0
- 1st release.
Dependencies
-
.NETStandard 2.0
- Microsoft.AspNetCore.Blazor (>= 0.8.0-preview-19104-04)
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
9.0.1 | 169 | 12/12/2020 |
9.0.0 | 132 | 12/11/2020 |
8.3.0 | 522 | 8/6/2020 |
8.2.1 | 164 | 7/28/2020 |
8.2.0 | 133 | 7/19/2020 |
8.1.0 | 149 | 5/31/2020 |
8.0.0 | 304 | 1/10/2020 |
7.0.0 | 249 | 9/5/2019 |
6.0.0.1 | 125 | 8/17/2019 |
5.0.0 | 136 | 6/16/2019 |
4.0.0 | 193 | 5/2/2019 |
3.0.0 | 209 | 3/9/2019 |
2.0.0 | 219 | 2/10/2019 |
1.1.0 | 283 | 10/3/2018 |
1.0.0 | 276 | 9/21/2018 |