Toolbelt.Blazor.LoadingBar
10.0.0
See the version list below for details.
dotnet add package Toolbelt.Blazor.LoadingBar --version 10.0.0
NuGet\Install-Package Toolbelt.Blazor.LoadingBar -Version 10.0.0
<PackageReference Include="Toolbelt.Blazor.LoadingBar" Version="10.0.0" />
paket add Toolbelt.Blazor.LoadingBar --version 10.0.0
#r "nuget: Toolbelt.Blazor.LoadingBar, 10.0.0"
// Install Toolbelt.Blazor.LoadingBar as a Cake Addin #addin nuget:?package=Toolbelt.Blazor.LoadingBar&version=10.0.0 // Install Toolbelt.Blazor.LoadingBar as a Cake Tool #tool nuget:?package=Toolbelt.Blazor.LoadingBar&version=10.0.0
Blazor WebAssembly (client-side) LoadingBar
Summary
This is a class library that inserts loading bar UI automatically into a client side Blazor WebAssembly application.
This is a porting from angular-loading-bar (except spinner UI).
Supported Blazor versions
"Blazor WebAssembly App (client-side) LoadingBar" ver.10.x supports Blazor WebAssembly App version 3.2 Preview 1.
How to install and use?
Step.1 Install the library via NuGet package, like this.
> dotnet add package Toolbelt.Blazor.LoadingBar
Step.2 Register "LoadingBar" service into the DI container, and declare contruct loading bar UI, at Main()
method in the Program
class of your Blazor application.
using Toolbelt.Blazor.Extensions.DependencyInjection; // <- Open namespace, and...
...
public class Program
{
public static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("app");
builder.Services.AddLoadingBar(); // <-- register the service, and...
await builder
.Build()
.UseLoadingBar() // <!-- declare construct loading bar UI.
.RunAsync();
...
That's all.
After doing those 3 step, you can see a loading bar effect on your Blazor application UI, during HttpClient request going on.
Configuration
The calling of AddLoadingBar()
and UseLoadingBar()
injects the references of JavaScript file (.js) and style sheet file (.css) - which are bundled with this package - into your page automatically.
If you don't want this behavior, you can disable these automatic injections, please call AddLoadingBar()
with configuration action like this:
builder.Services.AddLoadingBar(options =>
{
// If you don't want automatic injection of js file, add bellow;
options.DisableClientScriptAutoInjection = true;
// If you don't want automatic injection of css file, add bellow;
options.DisableStyleSheetAutoInjection = true;
});
You can inject those helper files manually. The URLs are bellow:
- .js file - _content/Toolbelt.Blazor.LoadingBar/script.min.js
- .css file - _content/Toolbelt.Blazor.LoadingBar/style.min.css
Credits
Credit goes to chieffancypants for his great works angular-loading-bar.
This library includes many codes, style sheet definition, and algorithms derived from angular-loading-bar.
Relese Note
- v.10.0.0 - BREAKING CHANGE: Support Blazor v.3.2.0 Preview 1 (not compatible with v.3.1.0 Preview 4 or before.)
- v.9.0.0 - BREAKING CHANGE: Support Blazor v.3.1.0 Preview 4 (not compatible with v.3.1.0 Preview 3 or before.)
- v.8.0.0 - BREAKING CHANGE: Support Blazor v.3.1.0 Preview 3 (not compatible with v.3.1.0 Preview 2 or before.)
- v.7.0.0 - BREAKING CHANGE: Support Blazor v.3.0.0 Preview 9 (not compatible with v.3.0.0 Preview 8 or before.)
- v.6.0.0 - BREAKING CHANGE: Support Blazor v.3.0.0 Preview 6 (not compatible with v.3.0.0 Preview 5 or before.)
- v.5.0.0 - BREAKING CHANGE: Support Blazor v.3.0.0 Preview 4 (not compatible with v.0.9.0 or before.)
- v.4.0.0 - BREAKING CHANGE: Support Blazor v.0.9.0 (not compatible with v.0.8.0 or before.)
- v.3.0.0 - BREAKING CHANGE: Support Blazor v.0.8.0 (not compatible with v.0.7.0 or before.)
- v.2.1.0 - Support Blazor v.0.6.0 - it was signed strong name.
- v.2.0.0 - BREAKING CHANGE: Fix namespace of LoadingBarExtension class.
- v.1.0.0 - 1st release.
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.AspNetCore.Components (>= 3.1.0)
- Toolbelt.Blazor.HttpClientInterceptor (>= 7.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Toolbelt.Blazor.LoadingBar:
Package | Downloads |
---|---|
Corsinvest.AppHero.Core.MudBlazorUI
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Toolbelt.Blazor.LoadingBar:
Repository | Stars |
---|---|
jsakamoto/Toolbelt.Blazor.LoadingBar
Loading bar UI for Client-Side Blazor application.
|
|
jasontaylordev/ModernWebDevWithBlazorWasm
The sample code from my presentation Modern Web Dev with Blazor WebAsembly and ASP.NET Core 6.
|
Version | Downloads | Last updated |
---|---|---|
14.0.0 | 27,886 | 8/26/2023 |
13.2.0 | 11,768 | 5/13/2023 |
13.1.2 | 93,666 | 11/19/2021 |
13.1.1 | 5,873 | 9/17/2021 |
13.1.0-preview.1.0 | 256 | 9/12/2021 |
13.0.0 | 1,845 | 9/8/2021 |
12.1.0 | 37,406 | 11/27/2020 |
12.0.1 | 10,262 | 7/22/2020 |
12.0.0 | 10,036 | 4/25/2020 |
11.0.0.1 | 3,314 | 3/12/2020 |
10.0.0 | 11,879 | 1/29/2020 |
9.0.0.3 | 1,925 | 1/12/2020 |
8.0.0 | 2,305 | 11/20/2019 |
7.0.0 | 2,977 | 9/5/2019 |
6.0.0 | 1,438 | 6/14/2019 |
5.0.0 | 1,257 | 4/26/2019 |
4.0.0 | 1,093 | 3/9/2019 |
3.0.0 | 1,141 | 2/8/2019 |
2.1.0 | 1,906 | 10/3/2018 |
2.0.0 | 1,255 | 9/21/2018 |
1.0.0 | 1,388 | 9/15/2018 |
v.10.0.0
- BREAKING CHANGE: Support Blazor v.3.2.0 Preview 1 (not compatible with v.3.1.0 Preview 4 or before.)
v.9.0.0
- BREAKING CHANGE: Support Blazor v.3.1.0 Preview 4 (not compatible with v.3.1.0 Preview 3 or before.)
v.8.0.0
- BREAKING CHANGE: Support Blazor v.3.1.0 Preview 3 (not compatible with v.3.1.0 Preview 2 or before.)
v.7.0.0
- BREAKING CHANGE: Support Blazor v.3.0.0 Preview 9 (not compatible with v.3.0.0 Preview 8 or before.)
v.6.0.0
- BREAKING CHANGE: Support Blazor v.3.0.0 Preview 6 (not compatible with v.3.0.0 Preview 5 or before.)
v.5.0.0
- BREAKING CHANGE: Support Blazor v.3.0.0 Preview 4 (not compatible with v.0.9.0 or before.)
v.4.0.0
- BREAKING CHANGE: Support Blazor v.0.9.0 (not compatible with v.0.8.0 or before.)
v.3.0.0
- BREAKING CHANGE: Support Blazor v.0.8.0 (not compatible with v.0.7.0 or before.)
v.2.1.0
- Support Blazor v.0.6.0 - it was signed strong name.
v.2.0.0
- BREAKING CHANGE: Fix namespace of LoadingBarExtension class.
v.1.0.0
- 1st release.