-
Notifications
You must be signed in to change notification settings - Fork 30
refactor(Signatures): Refactor table to use tabletools #318
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
base: master
Are you sure you want to change the base?
Conversation
Reviewer's GuideThis PR replaces the existing SigTable with a new bastilian-tabletools-based SignaturesTable, wiring in GraphQL querying, table state management, serializers, and custom cell components, and adds the required NPM dependency. Sequence diagram for SignaturesTable data fetching and renderingsequenceDiagram
participant User
participant SignaturesTableWithTableStateProvider
participant TableStateProvider
participant SignaturesTable
participant ApolloClient
participant TableToolsTable
User->>SignaturesTableWithTableStateProvider: Render page
SignaturesTableWithTableStateProvider->>TableStateProvider: Provide table state
TableStateProvider->>SignaturesTable: Render with state
SignaturesTable->>ApolloClient: useQuery(GET_SIGNATURE_TABLE)
ApolloClient-->>SignaturesTable: Return data
SignaturesTable->>TableToolsTable: Render table with data, columns, filters, options
TableToolsTable-->>User: Display table
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #318 +/- ##
==========================================
- Coverage 55.35% 52.06% -3.29%
==========================================
Files 55 65 +10
Lines 1205 1281 +76
Branches 399 429 +30
==========================================
Hits 667 667
- Misses 489 555 +66
- Partials 49 59 +10 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Summary by Sourcery
Refactor the Signatures table to use bastilian-tabletools by replacing the legacy SigTable with a new SignaturesTable component, complete with state management, serialisers, custom cells, and detail views.
Enhancements:
Build: