@@ -39,13 +39,13 @@ class ActiveDataProvider extends \yii\data\BaseDataProvider
39
39
* if it is not explicitly set.
40
40
*/
41
41
public $ query ;
42
-
42
+
43
43
/**
44
44
* @var Connection|array|string the DB connection object or the application component ID of the DB connection.
45
45
* If not set, the default DB connection will be used.
46
46
*/
47
47
public $ db = 'dynamodb ' ;
48
-
48
+
49
49
/**
50
50
* @var string|callable the column that is used as the key of the data models.
51
51
* This can be either a column name, or a callable that returns the key value of a given data model.
@@ -59,7 +59,7 @@ class ActiveDataProvider extends \yii\data\BaseDataProvider
59
59
* @see getKeys()
60
60
*/
61
61
public $ key ;
62
-
62
+
63
63
/**
64
64
* Initializes the DB connection component.
65
65
* This method will initialize the [[db]] property to make sure it refers to a valid DB connection.
@@ -130,19 +130,22 @@ protected function prepareModels()
130
130
throw new InvalidConfigException ('The "query" property must be an instance of a class that ' .
131
131
'implements the UrbanIndo\Yii2\DynamoDb\Query or its subclasses. ' );
132
132
}
133
-
133
+
134
134
$ query = clone $ this ->query ;
135
135
if (($ pagination = $ this ->getPagination ()) !== false ) {
136
136
$ query ->limit ($ pagination ->getLimit ());
137
137
$ query ->offset ($ pagination ->getOffset ());
138
138
}
139
-
139
+
140
140
$ models = $ query ->all ($ this ->db );
141
141
if ($ pagination !== false ) {
142
142
$ peek = current (array_slice ($ models , -1 ));
143
- /* @var $peek ActiveRecord */
144
- $ nextLastKey = ArrayHelper::getValue ($ peek ->getResponseData (), 'LastEvaluatedKey ' );
145
- $ pagination ->setNextLastKey ($ nextLastKey );
143
+
144
+ if ($ peek != null ) {
145
+ /* @var $peek ActiveRecord */
146
+ $ nextLastKey = ArrayHelper::getValue ($ peek ->getResponseData (), 'LastEvaluatedKey ' );
147
+ $ pagination ->setNextLastKey ($ nextLastKey );
148
+ }
146
149
}
147
150
return $ models ;
148
151
}
@@ -155,7 +158,7 @@ protected function prepareTotalCount()
155
158
{
156
159
return 0 ;
157
160
}
158
-
161
+
159
162
/**
160
163
* Returns the pagination object used by this data provider.
161
164
* Note that you should call [[prepare()]] or [[getModels()]] first to get correct values
@@ -166,7 +169,7 @@ public function getPagination()
166
169
{
167
170
return parent ::getPagination ();
168
171
}
169
-
172
+
170
173
/**
171
174
* Sets the pagination for this data provider.
172
175
* @param array|Pagination|boolean $value The pagination to be used by this data provider.
0 commit comments