feature/teable#3
Merged
Merged
Conversation
…able API logic for creating fields, rows and update them after stopping the experiment
add experiment name field and show name in widget; show experiment filament weight in toast "onStop"
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.
This pull request introduces a comprehensive integration with Teable, enabling users to connect to a self-hosted Teable instance, authenticate, and select a target table for syncing experiment data. The changes span backend and frontend, adding new configuration options, API endpoints, UI components, and dependency updates to support this feature.
Teable Integration (Backend & Frontend):
AppConfigand its default implementation to store connection and user details. [1] [2]teableand registered multiple Teable-related commands in the Tauri backend, enabling connection testing, configuration management, and table selection. [1] [2]reqwestdependency to the Tauri backend to support HTTP requests for Teable API communication.Frontend UI Enhancements:
Settingspage to include a new Teable integration section, showing connection status, user info, and providing connect/disconnect actions. Also added a target table selector visible when connected. [1] [2]TeableSetupDialogcomponent for guided authentication with a Teable instance, including token validation and user feedback.TeableTableSelectorcomponent in the settings for selecting the target table after connecting. [1] [2]Dependency Updates:
@tanstack/react-queryto the frontend for efficient data fetching and caching, and updated Tauri-related dependencies for compatibility with new features.UI Improvements:
ExperimentWidgetinto the main app layout header for enhanced user experience. [1] [2]