Skip to content

Commit 897b385

Browse files
committed
feat: Update to the latest Stl.Fusion.
1 parent 6a18011 commit 897b385

26 files changed

+104
-234
lines changed

docs/tutorial/Tutorial.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Stl.Fusion.Client" Version="0.1.280" />
20-
<PackageReference Include="Stl.Fusion.Server" Version="0.1.280" />
19+
<PackageReference Include="Stl.Fusion.Client" Version="0.1.291" />
20+
<PackageReference Include="Stl.Fusion.Server" Version="0.1.291" />
2121
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20303.1" />
2222
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.3.0-alpha.20303.1" />
2323
</ItemGroup>

src/Blazor/Client/Models/ChatState.cs

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public Local Clone()
3434
=> (Local) MemberwiseClone();
3535
}
3636

37+
[LiveStateUpdater]
3738
public class Updater : ILiveStateUpdater<Local, ChatState>
3839
{
3940
protected IChatService Chat { get; }

src/Blazor/Client/Models/CompositionState.cs

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public string Parameter {
2727
public ILiveState<Local, CompositionState>? LiveState { get; set; }
2828
}
2929

30+
[LiveStateUpdater]
3031
public class Updater : ILiveStateUpdater<Local, CompositionState>
3132
{
3233
protected ILocalComposerService LocalComposer { get; }

src/Blazor/Client/Models/ServerScreenState.cs

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public int Width {
2929
public ILiveState<Local, ServerScreenState>? LiveState { get; set; }
3030
}
3131

32+
[LiveStateUpdater]
3233
public class Updater : ILiveStateUpdater<Local, ServerScreenState>
3334
{
3435
protected IScreenshotService Screenshot { get; }

src/Blazor/Client/Models/ServerTimeState.cs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public class ServerTimeState
1010
{
1111
public DateTime? Time { get; set; }
1212

13+
[LiveStateUpdater]
1314
public class Updater : ILiveStateUpdater<ServerTimeState>
1415
{
1516
protected ITimeService Time { get; }

src/Blazor/Client/Program.cs

+14-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Net.Http;
4+
using System.Reflection;
45
using System.Threading.Tasks;
56
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
67
using Microsoft.Extensions.DependencyInjection;
@@ -9,14 +10,15 @@
910
using Stl.Fusion.Client;
1011
using Stl.Fusion.UI;
1112
using Stl.OS;
12-
using Samples.Blazor.Client.Services;
1313
using Samples.Blazor.Client.Models;
14-
using Samples.Blazor.Common.Services;
14+
using Stl.DependencyInjection;
1515

1616
namespace Samples.Blazor.Client
1717
{
1818
public class Program
1919
{
20+
public const string ClientSideScope = nameof(ClientSideScope);
21+
2022
public static Task Main(string[] args)
2123
{
2224
if (OSInfo.Kind != OSKind.WebAssembly)
@@ -38,38 +40,28 @@ public static Task Main(string[] args)
3840

3941
public static void ConfigureServices(IServiceCollection services, WebAssemblyHostBuilder builder)
4042
{
41-
ConfigureSharedServices(services);
4243

4344
var baseUri = new Uri(builder.HostEnvironment.BaseAddress);
45+
var apiBaseUri = new Uri($"{baseUri}api/");
46+
services.AddTransient(c => new HttpClient() { BaseAddress = apiBaseUri });
4447
services.AddFusionWebSocketClient((c, o) => {
4548
o.BaseUri = baseUri;
4649
// o.MessageLogLevel = LogLevel.Information;
4750
});
4851

49-
// Replica services
50-
var apiBaseUri = new Uri($"{baseUri}api/");
51-
services.AddTransient(c => new HttpClient() { BaseAddress = apiBaseUri });
52-
services.AddReplicaService<ITimeClient>("time");
53-
services.AddReplicaService<IScreenshotClient>("screenshot");
54-
services.AddReplicaService<IChatClient>("chat");
55-
services.AddReplicaService<IComposerClient>("composer");
56-
// Client-side versions of server-side services
57-
services.AddSingleton<ITimeService, ClientTimeService>();
58-
services.AddSingleton<IScreenshotService, ClientScreenshotService>();
59-
services.AddSingleton<IChatService, ClientChatService>();
60-
services.AddSingleton<IComposerService, ClientComposerService>();
52+
// This method registers services marked with any of ServiceAttributeBase descendants, including:
53+
// [Service], [ComputedService], [RestEaseReplicaService], [LiveStateUpdater]
54+
services.AddServices(ClientSideScope, Assembly.GetExecutingAssembly());
55+
ConfigureSharedServices(services);
6156
}
6257

6358
public static void ConfigureSharedServices(IServiceCollection services)
6459
{
65-
// Computed services
66-
services.AddComputedService<ILocalComposerService, LocalComposerService>();
67-
6860
// Configuring live updaters
6961
services.AddSingleton(c => new UpdateDelayer.Options() {
7062
Delay = TimeSpan.FromSeconds(0.1),
7163
});
72-
services.AutoAddLiveState(typeof(Program).Assembly, (c, options) => {
64+
services.AddSingleton<Action<IServiceProvider, LiveState.Options>>((c, options) => {
7365
if (options is LiveState<ServerScreenState.Local, ServerScreenState>.Options) {
7466
// Server Screen part always updates as quickly as it can
7567
options.UpdateDelayer = new UpdateDelayer(new UpdateDelayer.Options() {
@@ -90,6 +82,9 @@ public static void ConfigureSharedServices(IServiceCollection services)
9082
}
9183
});
9284

85+
// This method registers services marked with any of ServiceAttributeBase descendants, including:
86+
// [Service], [ComputedService], [RestEaseReplicaService], [LiveStateUpdater]
87+
services.AddServices(Assembly.GetExecutingAssembly());
9388
}
9489
}
9590
}

src/Blazor/Client/Samples.Blazor.Client.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="3.2.1" PrivateAssets="all" />
1717
-->
1818
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.6" />
19-
<PackageReference Include="Stl.Fusion.Client" Version="0.1.280" />
19+
<PackageReference Include="Stl.Fusion.Blazor" Version="0.1.291" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

src/Blazor/Client/Services/ClientChatClient.cs

-55
This file was deleted.

src/Blazor/Client/Services/ClientComposerService.cs

-22
This file was deleted.

src/Blazor/Client/Services/ClientScreenshotService.cs

-22
This file was deleted.

src/Blazor/Client/Services/ClientTimeService.cs

-24
This file was deleted.

src/Blazor/Client/Services/Clients.cs

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
using System;
2+
using System.Threading;
3+
using System.Threading.Tasks;
4+
using RestEase;
5+
using Samples.Blazor.Common.Services;
6+
using Stl.Fusion.Bridge;
7+
using Stl.Fusion.Client;
8+
using Stl.Fusion.Client.RestEase;
9+
10+
namespace Samples.Blazor.Client.Services
11+
{
12+
[RestEaseReplicaService(typeof(ITimeService), Scope = Program.ClientSideScope)]
13+
[BasePath("time")]
14+
public interface ITimeClient : IRestEaseReplicaClient
15+
{
16+
[Get("get")]
17+
Task<DateTime> GetTimeAsync(CancellationToken cancellationToken = default);
18+
}
19+
20+
[RestEaseReplicaService(typeof(IScreenshotService), Scope = Program.ClientSideScope)]
21+
[BasePath("screenshot")]
22+
public interface IScreenshotClient : IRestEaseReplicaClient
23+
{
24+
[Get("get")]
25+
Task<Screenshot> GetScreenshotAsync(int width, CancellationToken cancellationToken = default);
26+
}
27+
28+
[RestEaseReplicaService(typeof(IChatService), Scope = Program.ClientSideScope)]
29+
[BasePath("chat")]
30+
public interface IChatClient : IRestEaseReplicaClient
31+
{
32+
// Writers
33+
[Post("createUser"), ReplicaServiceMethod(false)]
34+
Task<ChatUser> CreateUserAsync(string name, CancellationToken cancellationToken = default);
35+
[Post("setUserName"), ReplicaServiceMethod(false)]
36+
Task<ChatUser> SetUserNameAsync(long id, string name, CancellationToken cancellationToken = default);
37+
[Post("addMessage"), ReplicaServiceMethod(false)]
38+
Task<ChatMessage> AddMessageAsync(long userId, string text, CancellationToken cancellationToken = default);
39+
40+
// Readers
41+
[Get("getUserCount")]
42+
Task<long> GetUserCountAsync(CancellationToken cancellationToken = default);
43+
[Get("getActiveUserCount")]
44+
Task<long> GetActiveUserCountAsync(CancellationToken cancellationToken = default);
45+
[Get("getUser")]
46+
Task<ChatUser> GetUserAsync(long id, CancellationToken cancellationToken = default);
47+
[Get("getChatTail")]
48+
Task<ChatPage> GetChatTailAsync(int length, CancellationToken cancellationToken = default);
49+
[Get("getChatPage")]
50+
Task<ChatPage> GetChatPageAsync(long minMessageId, long maxMessageId, CancellationToken cancellationToken = default);
51+
}
52+
53+
[RestEaseReplicaService(typeof(IComposerService), Scope = Program.ClientSideScope)]
54+
[BasePath("composer")]
55+
public interface IComposerClient : IRestEaseReplicaClient
56+
{
57+
[Get("get")]
58+
Task<ComposedValue> GetComposedValueAsync(string? parameter, CancellationToken cancellationToken = default);
59+
}
60+
}

src/Blazor/Client/Services/IReplicaClient.cs

-11
This file was deleted.

src/Blazor/Client/Services/LocalComposerService.cs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
namespace Samples.Blazor.Client.Services
1010
{
11+
[ComputedService(typeof(ILocalComposerService))]
1112
public class LocalComposerService : ILocalComposerService, IComputedService
1213
{
1314
protected ILogger Log { get; }

0 commit comments

Comments
 (0)