Open
Conversation
Co-authored-by: JonnyTran <4750391+JonnyTran@users.noreply.github.com>
Co-authored-by: JonnyTran <4750391+JonnyTran@users.noreply.github.com>
- Update `BaseSimpleTable` adapter to pass the full column configuration (including editor params) instead of just name/type. - Update `RenderTable` logic to respect custom column settings (like `editor: "list"`) by prioritizing schema config over defaults. - Add watcher to `columnsConfig` in `RenderTable` to ensure dropdown options update reactively when new files are uploaded.
- Add missing `$emit('cell-edited')` in `RenderTable`'s tabulator handler.
- Ensures parent components are notified of changes to trigger state updates like the unmapped files counter.
…irectly injecting the token
Adds the CopilotConnect component to user settings, use-cases, and Pinia storage to handle the 3-step OAuth device flow.
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.
[Feature] Implement GitHub Copilot OAuth Device Flow UI
Description
This PR adds the frontend UI and data layer to handle the 3-step GitHub Copilot OAuth Device Flow. This connects the client to the
/api/v1/auth/githubendpoints.Key Additions:
CopilotConnect.vuecomponent and added it to theUserSettingsContent.vuepage to handle the Disconnected, Pending (Polling), and Connected states.GitHubAuthRepositoryusing the standardNuxtAxiosInstanceto ensure Extralit JWTs are correctly passed for user isolation.GitHubAuthUseCaseto orchestrate the login initiation, status checking, and the background polling loop (with properonBeforeUnmountcleanup to prevent memory leaks).GitHubAuthStorageusing the existing PiniauseStoreForfactory pattern to handle the reactive auth state.Related Tickets & Documents
Depends on: #200
Steps to QA
extralit-frontendandextralit-serverdev servers are running.Added/updated tests?
Added/updated documentations?
Checklist