Skip to content
This repository was archived by the owner on Aug 27, 2024. It is now read-only.

Commit 6a589ca

Browse files
author
Eugene
committed
Add ability to pass sort options into page and cursor methods
1 parent 231b5c8 commit 6a589ca

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

src/Contracts/IRepository.php

+12-2
Original file line numberDiff line numberDiff line change
@@ -112,25 +112,35 @@ public function getWhere(array $fieldValues): Collection;
112112
*
113113
* @param PagingInfo $paging Paging information
114114
* @param array $fieldValues Filters collection
115+
* @param SortOptions|null $sortOptions How list of items should be sorted
115116
*
116117
* @return LengthAwarePaginator
117118
*
118119
* @throws BadCriteriaException
119120
* @throws InvalidArgumentException
120121
*/
121-
public function getPage(PagingInfo $paging, array $fieldValues = []): LengthAwarePaginator;
122+
public function getPage(
123+
PagingInfo $paging,
124+
array $fieldValues = [],
125+
?SortOptions $sortOptions = null
126+
): LengthAwarePaginator;
122127

123128
/**
124129
* Get models collection as cursor.
125130
*
126131
* @param CursorRequest $cursor Request with cursor data
127132
* @param array $fieldValues Filters collection
133+
* @param SortOptions|null $sortOptions How list of items should be sorted
128134
*
129135
* @return CursorResult
130136
*
131137
* @throws BadCriteriaException
132138
*/
133-
public function getCursorPage(CursorRequest $cursor, array $fieldValues = []): CursorResult;
139+
public function getCursorPage(
140+
CursorRequest $cursor,
141+
array $fieldValues = [],
142+
?SortOptions $sortOptions = null
143+
): CursorResult;
134144

135145
/**
136146
* Retrieve list of entities that satisfied requested conditions.

src/Repositories/Repository.php

+20-6
Original file line numberDiff line numberDiff line change
@@ -188,18 +188,32 @@ public function get(): Collection
188188
}
189189

190190
/** {@inheritdoc} */
191-
public function getPage(PagingInfo $paging, array $fieldValues = []): LengthAwarePaginator
192-
{
193-
$builder = $this->query();
191+
public function getPage(
192+
PagingInfo $paging,
193+
array $fieldValues = [],
194+
?SortOptions $sortOptions = null
195+
): LengthAwarePaginator {
196+
$builder = $this
197+
->query()
198+
->when($sortOptions, function (Builder $query) use ($sortOptions) {
199+
return $query->orderBy($sortOptions->orderBy, $sortOptions->sortOrder);
200+
});
194201
$builder->addNestedWhereQuery($this->getNestedWhereConditions($builder->getQuery(), $fieldValues));
195202

196203
return $builder->paginate($paging->pageSize, ['*'], 'page', $paging->page);
197204
}
198205

199206
/** {@inheritdoc} */
200-
public function getCursorPage(CursorRequest $cursor, array $fieldValues = []): CursorResult
201-
{
202-
$builder = $this->query();
207+
public function getCursorPage(
208+
CursorRequest $cursor,
209+
array $fieldValues = [],
210+
?SortOptions $sortOptions = null
211+
): CursorResult {
212+
$builder = $this
213+
->query()
214+
->when($sortOptions, function (Builder $query) use ($sortOptions) {
215+
return $query->orderBy($sortOptions->orderBy, $sortOptions->sortOrder);
216+
});
203217
$builder->addNestedWhereQuery($this->getNestedWhereConditions($builder->getQuery(), $fieldValues));
204218

205219
return $this->toCursorResult($cursor, $builder);

0 commit comments

Comments
 (0)