File tree 2 files changed +20
-2
lines changed
resources/views/functional
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 6
6
-> mergeVueBinding (' :url' , $url )
7
7
} }
8
8
@if ($data ) :default =" @js ($data )" @else :default =" {!! $json ! !}" @endif
9
+ @if ($headers ) :headers =" @js ($headers )" @else :headers =" {!! $jsonHeaders ! !}" @endif
9
10
@if ($requestData ) :request =" @js ($requestData )" @else :request =" {!! $requestJson ! !}" @endif >
10
11
<template #default =" {!! $scope ! !}" >
11
12
{{ $slot } }
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ class Defer extends Component
18
18
19
19
public $ requestJson ;
20
20
21
+ public $ headers ;
22
+
23
+ public $ jsonHeaders ;
24
+
21
25
/**
22
26
* Create a new component instance.
23
27
*
@@ -32,6 +36,7 @@ public function __construct(
32
36
public bool $ manual = false ,
33
37
public string $ scope = '{ processing, response, reload } ' ,
34
38
public string $ url = '' ,
39
+ $ headers = null
35
40
) {
36
41
$ parsed = $ this ->parseJsonData ($ default );
37
42
@@ -54,6 +59,16 @@ public function __construct(
54
59
if (!Str::startsWith ($ url , '` ' ) && !Str::endsWith ($ url , '` ' )) {
55
60
$ this ->url = Js::from ($ url );
56
61
}
62
+
63
+ //
64
+
65
+ $ parsed = $ this ->parseJsonData ($ headers );
66
+
67
+ if ($ parsed ) {
68
+ $ this ->headers = $ parsed ;
69
+ } else {
70
+ $ this ->jsonHeaders = $ headers ?: '{} ' ;
71
+ }
57
72
}
58
73
59
74
/**
@@ -64,8 +79,10 @@ public function __construct(
64
79
public function render ()
65
80
{
66
81
return view ('splade::functional.defer ' , [
67
- 'data ' => $ this ->data ,
68
- 'json ' => $ this ->json ,
82
+ 'data ' => $ this ->data ,
83
+ 'json ' => $ this ->json ,
84
+ 'headers ' => $ this ->headers ,
85
+ 'jsonHeaders ' => $ this ->jsonHeaders ,
69
86
]);
70
87
}
71
88
}
You can’t perform that action at this time.
0 commit comments