Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit 72d191a

Browse files
Merge pull request #27 from patrickjahr/feature/move-packages
Feature/move packages
2 parents bdf741d + fc9cf66 commit 72d191a

File tree

9 files changed

+108
-79
lines changed

9 files changed

+108
-79
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
uses: actions/setup-dotnet@v1
2121
with:
2222
dotnet-version: 7.0.x
23-
23+
2424
# Install dotnet wasm buildtools workload
2525
- name: Install .NET WASM Build Tools
2626
run: dotnet workload install wasm-tools
27-
27+
2828
# Publishes Blazor project to the release-folder
2929
- name: Publish .NET Core Project
3030
run: dotnet publish samples/Thinktecture.Blazor.Sample/Thinktecture.Blazor.Sample.csproj -c:Release -p:GHPages=true -o dist/Web --nologo

src/Thinktecture.Blazor.AsyncClipboard/README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
⚠️ **This package is deprecated and will no longer receive updates.**
2+
3+
We recommend migrating to the new package, [PatrickJahr.AsyncClipboard](https://www.nuget.org/packages/PatrickJahr.Blazor.AsyncClipboard/), which offers improved features and better compatibility with the latest Blazor versions.
4+
15
# Thinktecture.Blazor.AsyncClipboard
26

37
[![NuGet Downloads (official NuGet)](https://img.shields.io/nuget/dt/Thinktecture.Blazor.AsyncClipboard?label=NuGet%20Downloads)](https://www.nuget.org/packages/Thinktecture.Blazor.AsyncClipboard/)
@@ -59,7 +63,7 @@ else
5963
```
6064

6165
Internally, this method tests for the presence of the `write()` method on the `navigator.clipboard` object of the target browser.
62-
This method allows copying (more or less) arbitrary data to the clipboard.
66+
This method allows copying (more or less) arbitrary data to the clipboard.
6367
Please note that Firefox only supports the `writeText()` method which writes plain text to the clipboard.
6468
If you want to support browsers that only ship with support for `writeText()`, please implement a custom check.
6569

@@ -103,7 +107,7 @@ With the following JavaScript code:
103107

104108
```js
105109
export function getTextPromise() {
106-
return new Promise((resolve) => resolve("Hello world"));
110+
return new Promise((resolve) => resolve("Hello world"));
107111
}
108112
```
109113

src/Thinktecture.Blazor.Badging/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
⚠️ **This package is deprecated and will no longer receive updates.**
2+
3+
We recommend migrating to the new package, [PatrickJahr.Badging](https://www.nuget.org/packages/PatrickJahr.Blazor.Badging/), which offers improved features and better compatibility with the latest Blazor versions.
4+
15
# Thinktecture.Blazor.Badging
26

37
[![NuGet Downloads (official NuGet)](https://img.shields.io/nuget/dt/Thinktecture.Blazor.Badging?label=NuGet%20Downloads)](https://www.nuget.org/packages/Thinktecture.Blazor.Badging/)

src/Thinktecture.Blazor.FileHandling/README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
⚠️ **This package is deprecated and will no longer receive updates.**
2+
3+
We recommend migrating to the new package, [PatrickJahr.FileHandling](https://www.nuget.org/packages/PatrickJahr.Blazor.FileHandling/), which offers improved features and better compatibility with the latest Blazor versions.
4+
15
# Thinktecture.Blazor.FileHandling
26

37
[![NuGet Downloads (official NuGet)](https://img.shields.io/nuget/dt/Thinktecture.Blazor.FileHandling?label=NuGet%20Downloads)](https://www.nuget.org/packages/Thinktecture.Blazor.FileHandling/)
@@ -69,12 +73,14 @@ The `action` property contains the address that should be launched when a file w
6973

7074
```json
7175
{
72-
"file_handlers": [{
73-
"action": "./",
74-
"accept": {
75-
"text/plain": [".txt"]
76+
"file_handlers": [
77+
{
78+
"action": "./",
79+
"accept": {
80+
"text/plain": [".txt"]
81+
}
7682
}
77-
}]
83+
]
7884
}
7985
```
8086

@@ -100,10 +106,10 @@ if (isSupported)
100106
if (fileSystemHandle is FileSystemFileHandle fileSystemFileHandle)
101107
{
102108
var file = await fileSystemFileHandle.GetFileAsync();
103-
109+
104110
var text1 = await file.TextAsync();
105111
Console.WriteLine(text1);
106-
112+
107113
var bytes = await file.ArrayBufferAsync();
108114
var text2 = System.Text.Encoding.UTF8.GetString(bytes);
109115
Console.WriteLine(text2);

src/Thinktecture.Blazor.GrpcWeb.DevTools/README.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
⚠️ **This package is deprecated and will no longer receive updates.**
2+
3+
We recommend migrating to the new package, [PatrickJahr.GrpcWeb.DevTools](https://www.nuget.org/packages/PatrickJahr.Blazor.GrpcWeb.DevTools/), which offers improved features and better compatibility with the latest Blazor versions.
4+
15
## Introduction
26

37
[![NuGet Downloads (official NuGet)](https://img.shields.io/nuget/dt/Thinktecture.Blazor.GrpcWeb.DevTools?label=NuGet%20Downloads)](https://www.nuget.org/packages/Thinktecture.Blazor.GrpcWeb.DevTools/)
@@ -21,7 +25,6 @@ You also need the gRPC-Web Developer Tools Chrome Extsion
2125

2226
[Install gRPC-Web Developer Tools](https://chrome.google.com/webstore/detail/grpc-web-developer-tools/kanmilmfkjnoladbbamlclhccicldjaj)
2327

24-
2528
### Platform support
2629

2730
The gRPC-Web Developer Tools only available for Google Chrome and Microsoft Edge browser.
@@ -38,20 +41,19 @@ dotnet add package Thinktecture.Blazor.GrpcWebDevTools
3841

3942
The package can be used in Blazor WebAssembly projects.
4043

41-
4244
### Enable gRPC-Web Developer Tools on your project
4345

4446
At first you have to register a `GrpcChannel` in your `ServiceCollection` like this:
4547

4648
```csharp
4749
builder.Services.AddScoped(services =>
4850
{
49-
var channel = GrpcChannel.ForAddress(backendUrl,
50-
new GrpcChannelOptions
51-
{
52-
HttpHandler = new GrpcWebHandler(GrpcWebMode.GrpcWeb, new HttpClientHandler())
51+
var channel = GrpcChannel.ForAddress(backendUrl,
52+
new GrpcChannelOptions
53+
{
54+
HttpHandler = new GrpcWebHandler(GrpcWebMode.GrpcWeb, new HttpClientHandler())
5355
});
54-
56+
5557
return channel;
5658
});
5759
```

src/Thinktecture.Blazor.PwaUpdate/README.md

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
# Thinktecture.Blazor.PwaUpdate
1+
⚠️ **This package is deprecated and will no longer receive updates.**
2+
3+
We recommend migrating to the new package, [PatrickJahr.PwaUpdate](https://www.nuget.org/packages/PatrickJahr.Blazor.PwaUpdate/), which offers improved features and better compatibility with the latest Blazor versions.
24

5+
# Thinktecture.Blazor.PwaUpdate
36

47
[![NuGet Downloads (official NuGet)](https://img.shields.io/nuget/dt/Thinktecture.Blazor.PwaUpdate?label=NuGet%20Downloads)](https://www.nuget.org/packages/Thinktecture.Blazor.PwaUpdate/)
58

@@ -41,6 +44,7 @@ To make the UpdateService available on all pages, register it at the IServiceCol
4144
builder.Services.AddUpdateService();
4245

4346
```
47+
4448
### Add to Imports
4549

4650
To use the default UpdateModal component on the hole app razor files, register it in the `_Imports.razor` file.
@@ -77,37 +81,37 @@ To use the default update modal, add the component to the main layout. For examp
7781
<UpdateModal InformationMessage="Update available!"></UpdateModal>
7882

7983
...
80-
8184
```
85+
8286
As soon as an update is available, a modal will appear in the upper right corner as shown in the example.
8387

8488
![Pwa Update Model](../../images/update_sample.png)
8589

86-
If you do not want to use the default layout, you can also pass a ChildContent, which will be displayed instead of the default.
90+
If you do not want to use the default layout, you can also pass a ChildContent, which will be displayed instead of the default.
8791

8892
```html
8993
<UpdateModal>
90-
<div>Update available!</div>
91-
<button onclick="@Reload">Update</button>
94+
<div>Update available!</div>
95+
<button onclick="@Reload">Update</button>
9296
</UpdateModal>
9397
```
9498

9599
Another option is to override CSS variables:
100+
96101
- The color of the close icon can be changed by this variable: `--close-icon-color`
97-
- The color must be an rgb valur like this: `255, 255, 255`
102+
- The color must be an rgb valur like this: `255, 255, 255`
98103
- The action button color can be changed by this variable: `--action-button-color`
99-
- The color must be an rgb valur like this: `208, 188, 255`
104+
- The color must be an rgb valur like this: `208, 188, 255`
100105
- The background color of the modal can be changed by this variable: `--modal-background`
101106
- The text color of the modal can be changed by this variable: `--on-modal-background`
102107

103108
### Update Service
104109

105-
If you do not want to use the modal, you can also use only the update service. To do this, you can make the `IUpdateService` service available to the component,
106-
page, or service via dependency injection. To receive the event for an update, simply register for the `UpdateAvailable` event.
110+
If you do not want to use the modal, you can also use only the update service. To do this, you can make the `IUpdateService` service available to the component,
111+
page, or service via dependency injection. To receive the event for an update, simply register for the `UpdateAvailable` event.
107112

108113
Then call the initialization method `InitializeServiceWorkerUpdateAsync` to start the registration of the `StateChanged` event of the service worker.
109114

110-
111115
```csharp
112116
protected override async Task OnInitializedAsync()
113117
{
@@ -117,8 +121,6 @@ protected override async Task OnInitializedAsync()
117121
}
118122
```
119123

120-
121-
122124
## Acknowledgements
123125

124126
Thanks to [Kristoffer Strube](https://twitter.com/kstrubeg) who provides [a Blazor wrapper for the File System Access API](https://github.com/KristofferStrube/Blazor.FileSystemAccess).

src/Thinktecture.Blazor.ScreenWakeLock/README.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
⚠️ **This package is deprecated and will no longer receive updates.**
2+
3+
We recommend migrating to the new package, [PatrickJahr.ScreenWakeLock](https://www.nuget.org/packages/PatrickJahr.Blazor.ScreenWakeLock/), which offers improved features and better compatibility with the latest Blazor versions.
4+
15
# Thinktecture.Blazor.ScreenWakeLock
26

37
[![NuGet Downloads (official NuGet)](https://img.shields.io/nuget/dt/Thinktecture.Blazor.ScreenWakeLock?label=NuGet%20Downloads)](https://www.nuget.org/packages/Thinktecture.Blazor.ScreenWakeLock/)
@@ -60,16 +64,16 @@ else
6064
### Request screen wake lock
6165

6266
To request a screen wake lock, you need to call the `RequestWakeLockAsync()` method from the `IScreenWakeLockService` service.
63-
The browser can refuse the request for various reasons (for example, because the battery charge level is too low),
64-
so it's a good practice to wrap the call in a `try…catch` statement.
67+
The browser can refuse the request for various reasons (for example, because the battery charge level is too low),
68+
so it's a good practice to wrap the call in a `try…catch` statement.
6569
The exception's message will contain more details in case of failure.
6670

6771
```csharp
68-
try
72+
try
6973
{
7074
await _screenWakeLockService.RequestWakeLockAsync();
7175
}
72-
catch(Exception e)
76+
catch(Exception e)
7377
{
7478
// Handle exxception
7579
}
@@ -89,18 +93,17 @@ As soon as the object was released the action `WakeLockReleased` will be fired.
8993
protected override async Task OnInitializedAsync()
9094
{
9195
//...
92-
96+
9397
_screenWakeLockService.WakeLockReleased = () =>
9498
{
9599
_wakeLockRequested = false;
96100
};
97-
101+
98102
//...
99103
await base.OnInitializedAsync();
100104
}
101105
```
102106

103-
104107
## Related articles
105108

106109
- [Documentation on MDN](https://developer.mozilla.org/en-US/docs/Web/API/WakeLock)

src/Thinktecture.Blazor.ViewTransitions/README.md

+43-39
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
⚠️ **This package is deprecated and will no longer receive updates.**
2+
3+
We recommend migrating to the new package, [PatrickJahr.ViewTransitions](https://www.nuget.org/packages/PatrickJahr.Blazor.ViewTransitions/), which offers improved features and better compatibility with the latest Blazor versions.
4+
15
# Thinktecture.Blazor.ViewTransitions
26

37
[![NuGet Downloads (official NuGet)](https://img.shields.io/nuget/dt/Thinktecture.Blazor.ViewTransitions?label=NuGet%20Downloads)](https://www.nuget.org/packages/Thinktecture.Blazor.ViewTransitions/)
48

59
## Introduction
10+
611
This package should help you to use the View Transition API in your Blazor application. The package contains two ways to use the View Transition API.
712
If you want to know how the View Transition API works look [here](https://drafts.csswg.org/css-view-transitions/#viewtransition).
813

@@ -22,14 +27,12 @@ Please note that View Transition API is not yet supported in all major browsers.
2227

2328
### Installation
2429

25-
2630
You can install the package via NuGet with the Package Manager in your IDE or alternatively using the command line:
2731

2832
```
2933
dotnet add package Thinktecture.Blazor.ViewTransitions
3034
```
3135

32-
3336
## Usage
3437

3538
The package can be used in Blazor WebAssembly projects.
@@ -57,56 +60,57 @@ For this, you must add the component `RoutingViewTransition` to App.razor.
5760
<RoutingViewTransition />
5861

5962
<Router AppAssembly="@typeof(App).Assembly">
60-
<Found Context="routeData">
61-
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
62-
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
63-
</Found>
64-
<NotFound>
65-
<PageTitle>Not found</PageTitle>
66-
<LayoutView Layout="@typeof(MainLayout)">
67-
<p role="alert">Sorry, there's nothing at this address.</p>
68-
</LayoutView>
69-
</NotFound>
63+
<Found Context="routeData">
64+
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
65+
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
66+
</Found>
67+
<NotFound>
68+
<PageTitle>Not found</PageTitle>
69+
<LayoutView Layout="@typeof(MainLayout)">
70+
<p role="alert">Sorry, there's nothing at this address.</p>
71+
</LayoutView>
72+
</NotFound>
7073
</Router>
7174
```
7275

7376
### Manual view transition
7477

7578
The second option is to start the View Transition API using the IViewTransitionService.
7679
The following steps are necessary for this:
80+
7781
- Add the IViewTransitionService to the component or class using DependencyInjection.
7882

7983
`[Inject] private IViewTransitionService _viewTransitionService { get; set; } = default!;`
8084

8185
- To perform a view transition, use the method `StartViewTransitionAsync()`. This takes two parameters.
8286

83-
- The first parameter is a task. This Task specifies when the transition can be performed. That means the new view is ready, and the transition can start. Please note that the View Transition API must first take a screenshot of the current state before the DOM is changed. The following example opens a dialog. The method `StartViewTransitionAsync()`, passed as a task, first waits briefly before setting the necessary parameters.
84-
85-
```csharp
86-
private async Task ShowDialog(User user)
87-
{
88-
await _viewTransitionService.StartViewTransitionAsync(
89-
InternalShowDialog(user),
90-
CancellationToken.None);
91-
}
92-
93-
private async Task InternalShowDialog(User user)
94-
{
95-
// New user is set and will dispatched
96-
_dialogUser = user;
97-
_dispatcher.Dispatch(new SelectUserAction(user));
98-
// Wait for the first Screenshot of the current state
99-
await Task.Delay(32);
100-
// Reset the selected user. Because a view-transition-name css property may appear only once in the DOM.
101-
_dispatcher.Dispatch(new SelectUserAction(null));
102-
// Wait until the state has changed.
103-
await Task.Delay(32);
104-
_showDialog = true;
105-
StateHasChanged();
106-
}
107-
```
108-
109-
- The second parameter is the `CancellationToken` to cancel the operation.
87+
- The first parameter is a task. This Task specifies when the transition can be performed. That means the new view is ready, and the transition can start. Please note that the View Transition API must first take a screenshot of the current state before the DOM is changed. The following example opens a dialog. The method `StartViewTransitionAsync()`, passed as a task, first waits briefly before setting the necessary parameters.
88+
89+
```csharp
90+
private async Task ShowDialog(User user)
91+
{
92+
await _viewTransitionService.StartViewTransitionAsync(
93+
InternalShowDialog(user),
94+
CancellationToken.None);
95+
}
96+
97+
private async Task InternalShowDialog(User user)
98+
{
99+
// New user is set and will dispatched
100+
_dialogUser = user;
101+
_dispatcher.Dispatch(new SelectUserAction(user));
102+
// Wait for the first Screenshot of the current state
103+
await Task.Delay(32);
104+
// Reset the selected user. Because a view-transition-name css property may appear only once in the DOM.
105+
_dispatcher.Dispatch(new SelectUserAction(null));
106+
// Wait until the state has changed.
107+
await Task.Delay(32);
108+
_showDialog = true;
109+
StateHasChanged();
110+
}
111+
```
112+
113+
- The second parameter is the `CancellationToken` to cancel the operation.
110114

111115
That's it. Just try it out, and feel free to give feedback :-)
112116

0 commit comments

Comments
 (0)