Feature/109 implement landing page swimlanes#112
Merged
felix-schultz merged 4 commits intodevfrom Jul 18, 2025
Merged
Conversation
- Implemented TutorialDialog component with multiple steps (Welcome, Docs, Discord, GitHub) to guide users through the application. - Added animated background and floating icons for visual appeal. - Integrated local storage to track tutorial completion status. - Updated index export to include home components. refactor: Enhance BitCard component with dropdown menu and improved state management - Refactored BitCard to use useCallback for download and toggle functions. - Added dropdown menu for download and profile actions. - Improved layout and styling for better user experience. - Updated bit type handling and repository link opening. style: Add scrollbar-hide utility class to global styles - Introduced .scrollbar-hide class to hide scrollbars for a cleaner UI. fix: Extend app state interface for enhanced app search functionality - Updated IAppState interface to include searchApps method with additional parameters for improved app searching capabilities.
|
Here's the code health analysis summary for commits Analysis Summary
|
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 several significant changes, focusing on enhancing the onboarding experience, improving app search functionality, and updating the API routes. It also includes the addition of swimlane configurations for the homepage. Below is a summary of the most important changes grouped by theme:
Onboarding and UI Enhancements:
TutorialDialogimplementation inapps/desktop/components/tutorial-dialog.tsxwith a new version imported from@tm9657/flow-like-ui, simplifying the codebase and ensuring consistency with the library's components. ([[1]](https://github.com/TM9657/flow-like/pull/112/files#diff-ad8d3b16b31ecad5bdeb6e37cb2bd650e1376eb0646066faa5c1ece3d020ebebL2-L5),[[2]](https://github.com/TM9657/flow-like/pull/112/files#diff-2371c86dcd7e26c7e96d2ee0f87dec99c02d52e31ac15a4c902f266db0c5ddb1L1-L324))Homecomponent inapps/desktop/app/page.tsxto include theTutorialDialogand newHomeSwimlanescomponents, improving the onboarding flow and homepage layout. ([[1]](https://github.com/TM9657/flow-like/pull/112/files#diff-ad8d3b16b31ecad5bdeb6e37cb2bd650e1376eb0646066faa5c1ece3d020ebebR40),[[2]](https://github.com/TM9657/flow-like/pull/112/files#diff-ad8d3b16b31ecad5bdeb6e37cb2bd650e1376eb0646066faa5c1ece3d020ebebR53-R60))App Search Functionality:
searchAppsmethod inapps/desktop/components/tauri-provider/app-state.tsto support advanced app search queries with parameters likecategory,author, andsort. This enhances the flexibility of app discovery. ([apps/desktop/components/tauri-provider/app-state.tsR102-R141](https://github.com/TM9657/flow-like/pull/112/files#diff-0dfed0587bbf7672f29bb53ea170b733eaa7cb2fa26118b5369b38b4eb867f06R102-R141))apps/desktop/components/tauri-provider/app-state.tsto include types for app search and categories, supporting the new search functionality. ([[1]](https://github.com/TM9657/flow-like/pull/112/files#diff-0dfed0587bbf7672f29bb53ea170b733eaa7cb2fa26118b5369b38b4eb867f06R5),[[2]](https://github.com/TM9657/flow-like/pull/112/files#diff-0dfed0587bbf7672f29bb53ea170b733eaa7cb2fa26118b5369b38b4eb867f06R14))API Updates:
/appsAPI routes inpackages/api/src/routes/app.rsto separate thesearch_appsendpoint into its own/searchroute, improving clarity and modularity. ([packages/api/src/routes/app.rsL21-R23](https://github.com/TM9657/flow-like/pull/112/files#diff-c43d7d4aab1ee71f38846c50b87702f93eeb542e10d497f190cbcb31510c3dd1L21-R23))search_appsfunction inpackages/api/src/routes/app/internal/search_apps.rsby removing unused parameters and aligning the query structure with the new app search functionality. ([[1]](https://github.com/TM9657/flow-like/pull/112/files#diff-99c965f82baec87d78d1ac90eff2bb3c9a86a9671b2e670e94086e64e7bae86eL8),[[2]](https://github.com/TM9657/flow-like/pull/112/files#diff-99c965f82baec87d78d1ac90eff2bb3c9a86a9671b2e670e94086e64e7bae86eL20-R47))Homepage Swimlanes:
swimlanes.jsonconfiguration file inassets/to define swimlane sections like "Featured Apps," "AI Models," and "Trending This Week," enhancing the homepage's dynamic content presentation. ([assets/swimlanes.jsonR1-R168](https://github.com/TM9657/flow-like/pull/112/files#diff-ff121865bb91a01d35dc41e93809036b8e904723cbc7dcb7d194dfa204882d24R1-R168))