feat: add Composio GoogleMeet Component #6
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.
GoogleMeet Integration Pull Request
This pull request introduces a new integration for GoogleMeet, including backend support, frontend components, and tests. The changes ensure that GoogleMeet can be used as a new component in the system, with appropriate backend logic, frontend icons, and sidebar integration.
Backend Changes
Added
ComposioGooglemeetAPIComponentto thecomposiomodule, enabling backend support for GoogleMeet API interactions.(src/backend/base/langflow/components/composio/init.py)
Implemented unit tests for
ComposioGooglemeetAPIComponent, covering initialization, action execution, data conversion to a DataFrame, and configuration updates.(src/backend/tests/unit/components/bundles/composio/test_googlemeeet.py)
Frontend Changes
Added a new
Googlemeeticon to the lazy icon imports for dynamic loading.(src/frontend/src/icons/lazyIconImports.ts)
Created a
GooglemeetIconcomponent and its corresponding SVG file for rendering the Googlemeet icon in the UI.(src/frontend/src/icons/googlemeet/index.tsx, src/frontend/src/icons/googlemeet/googlemeet.jsx)
Integrated GoogleMeet into the sidebar bundles, making it accessible in the UI with its display name and icon.
(src/frontend/src/utils/styleUtils.ts)