Skip to content

Commit 2dc5e86

Browse files
committed
Merge branch 'feature/merge-prop' into feature/defer-prop
# Conflicts: # InertiaCore/Inertia.cs # InertiaCore/Response.cs # InertiaCore/ResponseFactory.cs
2 parents 07ea498 + eb076cc commit 2dc5e86

14 files changed

+282
-219
lines changed

.github/workflows/dotnet.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup .NET
2424
uses: actions/setup-dotnet@v3
2525
with:
26-
dotnet-version: |
26+
dotnet-version: |
2727
6.0.x
2828
7.0.x
2929
8.0.x

InertiaCore/Extensions/InertiaExtensions.cs

+19-25
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,6 @@ namespace InertiaCore.Extensions;
88

99
internal static class InertiaExtensions
1010
{
11-
internal static Dictionary<string, object?> OnlyProps(this ActionContext context, Dictionary<string, object?> props)
12-
{
13-
var onlyKeys = context.HttpContext.Request.Headers[InertiaHeader.PartialOnly]
14-
.ToString().Split(',')
15-
.Select(k => k.Trim())
16-
.Where(k => !string.IsNullOrEmpty(k))
17-
.ToList();
18-
19-
return props.Where(kv => onlyKeys.Contains(kv.Key, StringComparer.OrdinalIgnoreCase))
20-
.ToDictionary(kv => kv.Key, kv => kv.Value);
21-
}
22-
23-
internal static Dictionary<string, object?> ExceptProps(this ActionContext context,
24-
Dictionary<string, object?> props)
25-
{
26-
var exceptKeys = context.HttpContext.Request.Headers[InertiaHeader.PartialExcept]
27-
.ToString().Split(',')
28-
.Select(k => k.Trim())
29-
.Where(k => !string.IsNullOrEmpty(k))
30-
.ToList();
31-
32-
return props.Where(kv => exceptKeys.Contains(kv.Key, StringComparer.OrdinalIgnoreCase) == false)
33-
.ToDictionary(kv => kv.Key, kv => kv.Value);
34-
}
35-
3611
internal static bool IsInertiaPartialComponent(this ActionContext context, string component) =>
3712
context.HttpContext.Request.Headers[InertiaHeader.PartialComponent] == component;
3813

@@ -55,4 +30,23 @@ internal static bool Override<TKey, TValue>(this IDictionary<TKey, TValue> dicti
5530

5631
return true;
5732
}
33+
34+
internal static Task<object?> ResolveAsync(this Func<object?> func)
35+
{
36+
var rt = func.Method.ReturnType;
37+
38+
if (!rt.IsGenericType || rt.GetGenericTypeDefinition() != typeof(Task<>))
39+
return Task.Run(func.Invoke);
40+
41+
var task = func.DynamicInvoke() as Task;
42+
return task!.ResolveResult();
43+
}
44+
45+
internal static async Task<object?> ResolveResult(this Task task)
46+
{
47+
await task.ConfigureAwait(false);
48+
var result = task.GetType().GetProperty("Result");
49+
50+
return result?.GetValue(task);
51+
}
5852
}

InertiaCore/Inertia.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ public static class Inertia
2929

3030
public static void Share(IDictionary<string, object?> data) => _factory.Share(data);
3131

32-
public static LazyProp Lazy(Func<object?> callback) => _factory.Lazy(callback);
33-
34-
public static LazyProp Lazy(Func<Task<object?>> callback) => _factory.Lazy(callback);
35-
3632
public static AlwaysProp Always(object? value) => _factory.Always(value);
3733

3834
public static AlwaysProp Always(Func<object?> callback) => _factory.Always(callback);
@@ -43,13 +39,17 @@ public static class Inertia
4339

4440
public static DeferProp Defer(Func<Task<object?>> callback, string group = "default") => _factory.Defer(callback, group);
4541

46-
public static MergeProp Merge(object? value) => _factory.Merge(value);
47-
48-
public static MergeProp Merge(Func<object?> callback) => _factory.Merge(callback);
42+
public static LazyProp Lazy(Func<object?> callback) => _factory.Lazy(callback);
4943

50-
public static MergeProp Merge(Func<Task<object?>> callback) => _factory.Merge(callback);
44+
public static LazyProp Lazy(Func<Task<object?>> callback) => _factory.Lazy(callback);
5145

5246
public static OptionalProp Optional(Func<object?> callback) => _factory.Optional(callback);
5347

5448
public static OptionalProp Optional(Func<Task<object?>> callback) => _factory.Optional(callback);
49+
50+
public static MergeProp Merge(object? value) => _factory.Merge(value);
51+
52+
public static MergeProp Merge(Func<object?> callback) => _factory.Merge(callback);
53+
54+
public static MergeProp Merge(Func<Task<object?>> callback) => _factory.Merge(callback);
5555
}

InertiaCore/Props/InvokableProp.cs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
using InertiaCore.Extensions;
2+
13
namespace InertiaCore.Props;
24

35
public class InvokableProp
@@ -10,9 +12,9 @@ public class InvokableProp
1012
{
1113
return _value switch
1214
{
13-
Func<Task<object?>> asyncCallable => asyncCallable.Invoke(),
14-
Func<object?> callable => Task.Run(() => callable.Invoke()),
15-
Task<object?> value => value,
15+
Func<object?> f => f.ResolveAsync(),
16+
Task t => t.ResolveResult(),
17+
InvokableProp p => p.Invoke(),
1618
_ => Task.FromResult(_value)
1719
};
1820
}

0 commit comments

Comments
 (0)