File tree 3 files changed +92
-2
lines changed
3 files changed +92
-2
lines changed Original file line number Diff line number Diff line change 12
12
"require" : {
13
13
"php" : " ^5.6|^7.0" ,
14
14
"illuminate/support" : " ^5.0 || ^6.0" ,
15
- "league/fractal" :" 0.18 .*" ,
15
+ "league/fractal" :" 0.19 .*" ,
16
16
"doctrine/dbal" : " ^2.5"
17
17
},
18
18
"require-dev" : {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class UserTransformerStub extends TransformerAbstract
9
9
*
10
10
* @var array
11
11
*/
12
- protected $ availableIncludes = ['orders ' ];
12
+ protected $ availableIncludes = ['orders ' , ' order_histories ' ];
13
13
14
14
/**
15
15
* List of resources to automatically include.
@@ -52,4 +52,41 @@ public function includeOrders()
52
52
53
53
return $ this ->collection ($ orders , new OrderTransformerStub ());
54
54
}
55
+
56
+ public function includeOrderHistories ($ user , \League \Fractal \ParamBag $ params )
57
+ {
58
+ $ orders = new \Illuminate \Support \Collection ([
59
+ [
60
+ 'id ' => 1 ,
61
+ 'item ' => 'item 1 ' ,
62
+ 'qty ' => 100 ,
63
+ ],
64
+ [
65
+ 'id ' => 2 ,
66
+ 'item ' => 'item 2 ' ,
67
+ 'qty ' => 200 ,
68
+ ],
69
+ [
70
+ 'id ' => 3 ,
71
+ 'item ' => 'item 3 ' ,
72
+ 'qty ' => 300 ,
73
+ ],
74
+ [
75
+ 'id ' => 4 ,
76
+ 'item ' => 'item 4 ' ,
77
+ 'qty ' => 400 ,
78
+ ],
79
+ [
80
+ 'id ' => 5 ,
81
+ 'item ' => 'item 5 ' ,
82
+ 'qty ' => 500 ,
83
+ ]
84
+ ]);
85
+
86
+ list ($ limit , $ offset ) = $ params ->get ('limit ' );
87
+
88
+ $ orders = $ orders ->slice ($ offset )->take ($ limit );
89
+
90
+ return $ this ->collection ($ orders , new OrderTransformerStub ());
91
+ }
55
92
}
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ use Illuminate \Support \Arr ;
4
+
3
5
/**
4
6
* Class TranformationTest.
5
7
*/
@@ -99,4 +101,55 @@ public function test_with_meta_data()
99
101
],
100
102
], $ data );
101
103
}
104
+
105
+ public function test_sub_relation_with_getting_only_one_record_from_sub_relation ()
106
+ {
107
+ $ service = $ this ->getService ();
108
+
109
+ $ data = $ service ->includes ('order_histories:limit(1|0) ' )->collection ($ this ->getTestUserData (),
110
+ new UserTransformerStub ())->getArray ();
111
+
112
+
113
+ $ this ->assertEquals (1 , count (Arr::get ($ data , 'data.0.order_histories.data ' )));
114
+ $ this ->assertEquals ([
115
+ 'data ' => [
116
+ [
117
+ 'id ' => 1 ,
118
+ 'name ' => 'Foo ' ,
119
+ 'order_histories ' => [
120
+ 'data ' => [
121
+ [
122
+ 'id ' => 1 ,
123
+ 'item ' => 'item 1 ' ,
124
+ 'qty ' => 100 ,
125
+ ]
126
+ ],
127
+ ],
128
+ ],
129
+ [
130
+ 'id ' => 2 ,
131
+ 'name ' => 'Bar ' ,
132
+ 'order_histories ' => [
133
+ 'data ' => [
134
+ [
135
+ 'id ' => 1 ,
136
+ 'item ' => 'item 1 ' ,
137
+ 'qty ' => 100 ,
138
+ ]
139
+ ],
140
+ ],
141
+ ],
142
+ ],
143
+ ], $ data );
144
+ }
145
+
146
+ public function test_sub_relation_with_getting_only_n_record_from_sub_relation ()
147
+ {
148
+ $ service = $ this ->getService ();
149
+
150
+ $ data = $ service ->includes ('order_histories:limit(3|0) ' )->collection ($ this ->getTestUserData (),
151
+ new UserTransformerStub ())->getArray ();
152
+
153
+ $ this ->assertEquals (3 , count (Arr::get ($ data , 'data.0.order_histories.data ' )));
154
+ }
102
155
}
You can’t perform that action at this time.
0 commit comments