-
-
Notifications
You must be signed in to change notification settings - Fork 6
Add server-side column sorting to the Tickets page #72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
NanakiEmi
wants to merge
5
commits into
mintopia:develop
Choose a base branch
from
NanakiEmi:tickets-column-sorting
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e2c7584
feat: add server-side sorting to tickets index controller
NanakiEmi 89d4d8d
feat: make tickets index column headers sortable
NanakiEmi 7b8dfd8
test: guard seat sort keeps unseated tickets
NanakiEmi 42b450a
refactor: use FormRequest and Eloquent aggregates for ticket sorting
NanakiEmi 3de0254
refactor: simplify ticket sort validation per review
NanakiEmi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| <?php | ||
|
|
||
| namespace App\Http\Requests; | ||
|
|
||
| use Illuminate\Contracts\Validation\ValidationRule; | ||
| use Illuminate\Foundation\Http\FormRequest; | ||
| use Illuminate\Validation\Rule; | ||
|
|
||
| class TicketIndexRequest extends FormRequest | ||
| { | ||
| /** | ||
| * Columns the tickets index may be sorted by. | ||
| * | ||
| * @var array<int, string> | ||
| */ | ||
| public const SORTABLE = ['reference', 'type', 'seat', 'event']; | ||
|
|
||
| /** | ||
| * Determine if the user is authorized to make this request. | ||
| */ | ||
| public function authorize(): bool | ||
| { | ||
| return true; | ||
| } | ||
|
|
||
| /** | ||
| * Get the validation rules that apply to the request. | ||
| * | ||
| * @return array<string, ValidationRule|array<mixed>|string> | ||
| */ | ||
| public function rules(): array | ||
| { | ||
| return [ | ||
| 'order' => ['nullable', Rule::in(self::SORTABLE)], | ||
| 'order_direction' => ['nullable', Rule::in(['asc', 'desc'])], | ||
| ]; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| <?php | ||
|
|
||
| namespace Tests\Feature; | ||
|
|
||
| use App\Models\Event; | ||
| use App\Models\Ticket; | ||
| use App\Models\User; | ||
| use Illuminate\Foundation\Testing\RefreshDatabase; | ||
| use Tests\TestCase; | ||
|
|
||
| class TicketSortingTest extends TestCase | ||
| { | ||
| use RefreshDatabase; | ||
|
|
||
| public function testTicketsPageRendersSortableReferenceHeaderLink() | ||
| { | ||
| $user = User::factory()->create(['first_login' => false]); | ||
| $event = Event::factory()->create(['draft' => false, 'starts_at' => now(), 'ends_at' => now()->addHour()]); | ||
| Ticket::factory()->create(['event_id' => $event->id, 'user_id' => $user->id, 'reference' => 'AAA-001']); | ||
|
|
||
| $response = $this->actingAs($user)->get(route('tickets.index')); | ||
|
|
||
| // assertOk should hold even BEFORE the view change (plain-text headers still render 200). | ||
| // If this fails before you touch the view, it is an environment/layout problem to resolve first, | ||
| // not part of this feature. | ||
| $response->assertOk(); | ||
|
|
||
| // This is the real red -> green assertion for this task: the Reference header must link with order=reference. | ||
| // On the default request the pagination links use order=event, so this string only appears once the | ||
| // Reference sort header exists. | ||
| $response->assertSee('order=reference', false); | ||
| } | ||
|
|
||
| public function testTicketsPageOrdersRowsByReferenceAscending() | ||
| { | ||
| $user = User::factory()->create(['first_login' => false]); | ||
| $event = Event::factory()->create(['draft' => false, 'starts_at' => now(), 'ends_at' => now()->addHour()]); | ||
| Ticket::factory()->create(['event_id' => $event->id, 'user_id' => $user->id, 'reference' => 'AAA-001']); | ||
| Ticket::factory()->create(['event_id' => $event->id, 'user_id' => $user->id, 'reference' => 'ZZZ-999']); | ||
|
|
||
| $response = $this->actingAs($user)->get(route('tickets.index', ['order' => 'reference', 'order_direction' => 'asc'])); | ||
|
|
||
| $response->assertOk(); | ||
| $response->assertSeeInOrder(['AAA-001', 'ZZZ-999']); | ||
| } | ||
|
|
||
| public function testTicketsPageRejectsUnknownOrderColumn() | ||
| { | ||
| $user = User::factory()->create(['first_login' => false]); | ||
|
|
||
| $response = $this->actingAs($user)->get(route('tickets.index', ['order' => 'bogus'])); | ||
|
|
||
| $response->assertSessionHasErrors('order'); | ||
| } | ||
|
|
||
| public function testTicketsPageRejectsUnknownOrderDirection() | ||
| { | ||
| $user = User::factory()->create(['first_login' => false]); | ||
|
|
||
| $response = $this->actingAs($user)->get(route('tickets.index', ['order_direction' => 'sideways'])); | ||
|
|
||
| $response->assertSessionHasErrors('order_direction'); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.