Feat/admin data table#310
Merged
Merged
Conversation
Collaborator
|
Fix conflict |
Contributor
Author
|
Resolved Conflict |
5 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
closes #202
I have successfully built and integrated the reusable AdminDataTable component and enhanced the Demo Admin Dashboard with sortable tables across all categories.
Summary of Accomplishments
Generic Table Component: Designed and implemented AdminDataTable supporting custom column configuration, headers with sort indicators (ArrowUpDown, ChevronUp, ChevronDown), row clicks, active states, and custom sorting overrides.
Dashboard Integration:
Replaced basic HTML tables in the Accounts and Mail tabs with AdminDataTable.
Converted the list-based Audit view into a sortable AdminDataTable.
Added two new tabs (Attachments and Events) with custom sortable tables representing active mail attachments and scheduled network actions.
Preset Scenario Updates: Added type definitions and mock data (attachments & events) to all three protocol preset scenarios in fixtures/presets.ts.
Unit Tests:
Wrote comprehensive unit tests for sortData helper logic in AdminDataTable.test.ts.
Updated presets.test.ts to assert that all scenario-specific attachments and events conform to strict schema and safety standards.
Verified that all 41 test cases pass cleanly.