@@ -22,20 +22,32 @@ public class HtmxResponseHeaders
22
22
23
23
public static class Keys
24
24
{
25
- public const string PushUrl = "HX-Push-Url" ;
25
+ // Sorted by https://htmx.org/reference/#response_headers to make it easier to update
26
26
public const string Location = "HX-Location" ;
27
+ public const string PushUrl = "HX-Push-Url" ;
27
28
public const string Redirect = "HX-Redirect" ;
28
29
public const string Refresh = "HX-Refresh" ;
30
+ public const string ReplaceUrl = "HX-Replace-Url" ;
31
+ public const string Reswap = "HX-Reswap" ;
32
+ public const string Retarget = "HX-Retarget" ;
33
+ public const string Reselect = "HX-Reselect" ;
29
34
public const string Trigger = "HX-Trigger" ;
30
35
public const string TriggerAfterSettle = "HX-Trigger-After-Settle" ;
31
36
public const string TriggerAfterSwap = "HX-Trigger-After-Swap" ;
32
- public const string Reswap = "HX-Reswap" ;
33
- public const string Retarget = "HX-Retarget" ;
34
- public const string ReplaceUrl = "HX-Replace-Url" ;
35
37
36
38
public static string [ ] All { get ; } = new [ ]
37
39
{
38
- PushUrl , Location , Redirect , Refresh , Trigger , TriggerAfterSettle , TriggerAfterSwap , Reswap , Retarget , ReplaceUrl
40
+ Location ,
41
+ PushUrl ,
42
+ Redirect ,
43
+ Refresh ,
44
+ ReplaceUrl ,
45
+ Reswap ,
46
+ Retarget ,
47
+ Reselect ,
48
+ Trigger ,
49
+ TriggerAfterSettle ,
50
+ TriggerAfterSwap ,
39
51
} ;
40
52
}
41
53
@@ -88,6 +100,19 @@ public HtmxResponseHeaders Reswap(string value)
88
100
_headers [ Keys . Reswap ] = value ;
89
101
return this ;
90
102
}
103
+
104
+ /// <summary>
105
+ /// a CSS selector that allows you to choose which part of the response is used to be swapped in.
106
+ /// Overrides an existing hx-select on the triggering element
107
+ /// See https://htmx.org/attributes/hx-select/ for hx-select behavior.
108
+ /// </summary>
109
+ /// <param name="value"></param>
110
+ /// <returns></returns>
111
+ public HtmxResponseHeaders Reselect ( string value )
112
+ {
113
+ _headers [ Keys . Reselect ] = value ;
114
+ return this ;
115
+ }
91
116
92
117
/// <summary>
93
118
/// Allows you to do a client-side redirect that does not do a full page reload
@@ -246,7 +271,7 @@ private void ParsePossibleExistingTriggers(string headerKey, HtmxTriggerTiming t
246
271
// this might still throw :(
247
272
var jsonObject = JsonNode . Parse ( ref reader ) ? . AsObject ( ) ;
248
273
// Load any existing triggers
249
- foreach ( var ( key , value ) in jsonObject ! )
274
+ foreach ( var ( key , value ) in jsonObject ! )
250
275
WithTrigger ( key , value , timing ) ;
251
276
}
252
277
else
0 commit comments