|
15 | 15 | use craft\base\FieldLayoutElement;
|
16 | 16 | use craft\base\MemoizableArray;
|
17 | 17 | use craft\behaviors\CustomFieldBehavior;
|
| 18 | +use craft\db\FixedOrderExpression; |
18 | 19 | use craft\db\Query;
|
19 | 20 | use craft\db\Table;
|
20 | 21 | use craft\errors\MissingComponentException;
|
|
63 | 64 | use craft\records\Field as FieldRecord;
|
64 | 65 | use craft\records\FieldLayout as FieldLayoutRecord;
|
65 | 66 | use DateTime;
|
| 67 | +use Illuminate\Support\Collection; |
66 | 68 | use Throwable;
|
67 | 69 | use yii\base\Component;
|
68 | 70 | use yii\base\Exception;
|
@@ -1406,18 +1408,42 @@ public function applyFieldSave(string $fieldUid, array $data, string $context):
|
1406 | 1408 | * @param int $page
|
1407 | 1409 | * @param int $limit
|
1408 | 1410 | * @param string|null $searchTerm
|
| 1411 | + * @param string $orderBy |
| 1412 | + * @param int $sortDir |
1409 | 1413 | * @return array
|
1410 | 1414 | * @since 5.0.0
|
1411 | 1415 | * @internal
|
1412 | 1416 | */
|
1413 |
| - public function getTableData(int $page, int $limit, ?string $searchTerm): array |
1414 |
| - { |
| 1417 | + public function getTableData( |
| 1418 | + int $page, |
| 1419 | + int $limit, |
| 1420 | + ?string $searchTerm, |
| 1421 | + string $orderBy = 'name', |
| 1422 | + int $sortDir = SORT_ASC, |
| 1423 | + ): array { |
1415 | 1424 | $searchTerm = $searchTerm ? trim($searchTerm) : $searchTerm;
|
1416 | 1425 |
|
1417 | 1426 | $offset = ($page - 1) * $limit;
|
1418 | 1427 | $query = $this->_createFieldQuery()
|
1419 | 1428 | ->andWhere(['context' => 'global']);
|
1420 | 1429 |
|
| 1430 | + if ($orderBy === 'type') { |
| 1431 | + /** @var Collection<class-string<FieldInterface>> $types */ |
| 1432 | + $types = Collection::make($this->getAllFieldTypes()) |
| 1433 | + ->sortBy(fn(string $class) => $class::displayName()); |
| 1434 | + if ($sortDir === SORT_DESC) { |
| 1435 | + $types = $types->reverse(); |
| 1436 | + } |
| 1437 | + $query->orderBy(new FixedOrderExpression('type', $types->all(), Craft::$app->getDb())) |
| 1438 | + ->addOrderBy(['name' => $sortDir]) |
| 1439 | + ->addOrderBy(['handle' => $sortDir]); |
| 1440 | + } else { |
| 1441 | + $query->orderBy([$orderBy => $sortDir]); |
| 1442 | + if ($orderBy === 'name') { |
| 1443 | + $query->addOrderBy(['handle' => $sortDir]); |
| 1444 | + } |
| 1445 | + } |
| 1446 | + |
1421 | 1447 | if ($searchTerm !== null && $searchTerm !== '') {
|
1422 | 1448 | $searchParams = $this->_getSearchParams($searchTerm);
|
1423 | 1449 | if (!empty($searchParams)) {
|
|
0 commit comments