Skip to content

Feat: my feeds on profile#204

Merged
elliotBraem merged 8 commits intostagingfrom
feat/my-feeds-on-profile
Jun 27, 2025
Merged

Feat: my feeds on profile#204
elliotBraem merged 8 commits intostagingfrom
feat/my-feeds-on-profile

Conversation

@itexpert120
Copy link
Collaborator

@itexpert120 itexpert120 commented Jun 27, 2025

Fixes: #177

My_Feeds_Tab_Curate.mp4

Summary by CodeRabbit

New Features

  • Introduced a dynamic "My Feeds" tab in the profile section, allowing users to view, search, and filter their created feeds.
  • Added new feed statistics and filtering options for improved feed management.
  • Implemented dedicated profile tabs for "Overview", "My Feeds", and "Activity" with a new tabbed navigation interface.

Bug Fixes

  • User display name in the menu is now always visible on all screen sizes.
  • Feed images now display a default placeholder if the original image fails to load.

Refactor

  • Profile routes reorganized to support nested tabs and improved navigation.
  • Profile overview layout and main app layout simplified for better usability.

Chores

  • Updated formatting and workspace configuration files for improved developer experience.

@vercel
Copy link

vercel bot commented Jun 27, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
curatedotfun-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 27, 2025 6:09pm

@coderabbitai
Copy link

coderabbitai bot commented Jun 27, 2025

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

This change implements the "My Feeds" feature within the user profile section. It introduces new routes, components, and hooks to fetch, filter, search, and display the user's created feeds. The UI is updated to include a "My Feeds" tab, feed cards with relevant data, filters, search functionality, and navigation to feed creation. The route structure is refactored to support profile tabs.

Changes

File(s) Change Summary
.prettierignore, pnpm-workspace.yaml Updated ignore rules and workspace dependencies.
apps/app/src/components/profile/my-feeds/FeedCard.tsx, SearchForm.tsx, constants.ts,
hooks/useFilteredFeeds.ts, card.tsx, index.tsx
Added/updated components and hooks for displaying, filtering, and searching user feeds; implemented feed card, search form, filter options, and dynamic feed list.
apps/app/src/components/profile/ProfileTabs.tsx Enabled the "My Feeds" tab and its icon/component.
apps/app/src/components/profile/overview/index.tsx Commented out certain stats and CTA components in the profile overview.
apps/app/src/components/UserMenu.tsx Made user display name always visible by removing responsive hiding classes.
apps/app/src/lib/api/feeds.ts Added hooks to fetch user's feeds and feed statistics (content count, placeholder for curator count).
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx, activity.tsx, overview.tsx,
route.tsx
Added new tabbed routes for profile: "My Feeds", "Activity", and "Overview", with a tab navigation component.
apps/app/src/routes/_layout/profile/index.tsx Changed to redirect /profile to /profile/overview instead of rendering content directly.
apps/app/src/routes/_layout.tsx Simplified layout structure and styling.
apps/app/src/routeTree.gen.ts Refactored and expanded route tree to support nested profile tabs and updated type declarations.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant MyFeedsPage
    participant API
    participant FeedCard
    participant Router

    User->>Router: Navigates to /profile/my-feeds
    Router->>MyFeedsPage: Render MyFeeds component
    MyFeedsPage->>API: Fetch feeds created by user
    API-->>MyFeedsPage: Returns user feeds
    MyFeedsPage->>MyFeedsPage: Apply search/filter
    loop For each filtered feed
        MyFeedsPage->>FeedCard: Render FeedCard with feed data
        FeedCard->>API: Fetch feed stats (content count, curators)
        API-->>FeedCard: Returns stats
    end
    User->>MyFeedsPage: Clicks "Create New Feed"
    MyFeedsPage->>Router: Navigate to /create/feed
Loading

Assessment against linked issues

Objective Addressed Explanation
Implement "My Feeds" tab and route, display feed cards with correct data (#177)
Implement filter and search for feeds (#177)
Implement navigation to "Create New Feed" (#177)
Fetch feeds created by user, fetch content count, plan for curator count (#177)
Use feed API route and integrate with UI (#177)

Assessment against linked issues: Out-of-scope changes

Code Change Explanation
Commenting out CurateCTA, TopBadges, UserStats in overview (apps/app/src/components/profile/overview/index.tsx) Disabling unrelated components in the profile overview is not specified in the linked issue.
Making user display name always visible (apps/app/src/components/UserMenu.tsx) This UI tweak is unrelated to the "My Feeds" implementation.
Layout simplification in _layout.tsx (apps/app/src/routes/_layout.tsx) General layout changes are not directly related to the "My Feeds" profile feature.
Adding msgpackr-extract to workspace (pnpm-workspace.yaml) Dependency update is unrelated to the objectives for "My Feeds".

Poem

🐇
In my profile burrow, feeds now bloom,
With filters and search to chase away gloom.
Cards show my curation, stats on display,
A hop to create feeds, just a click away!
Tabs for my journey, neat and new—
This rabbit’s profile feels fresh and true!
🥕


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@itexpert120 itexpert120 linked an issue Jun 27, 2025 that may be closed by this pull request
@elliotBraem
Copy link
Collaborator

@coderabbitai review

@coderabbitai
Copy link

coderabbitai bot commented Jun 27, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

♻️ Duplicate comments (1)
apps/app/src/components/profile/my-feeds/FeedCard.tsx (1)

12-18: Same duplication issue as in useFilteredFeeds hook.

This isComplete logic is duplicated from the useFilteredFeeds hook. Please refer to the refactoring suggestion in that file to extract this logic into a shared utility function.

🧹 Nitpick comments (5)
apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts (1)

10-14: Simplify with optional chaining.

The conditional check can be simplified using optional chaining as suggested by the static analysis tool.

-    const matchesSearch =
-      !searchTerm ||
-      feed.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
-      (feed.description &&
-        feed.description.toLowerCase().includes(searchTerm.toLowerCase()));
+    const matchesSearch =
+      !searchTerm ||
+      feed.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
+      feed.description?.toLowerCase().includes(searchTerm.toLowerCase());
apps/app/src/components/profile/my-feeds/FeedCard.tsx (1)

20-20: TODO: Consider implementing tags system.

The tags feature is marked as TODO. This could enhance the feed categorization and discovery experience.

Would you like me to help design a tags system implementation or create an issue to track this feature?

apps/app/src/lib/api/feeds.ts (1)

187-197: Complete the implementation of curator count

The curatorCount is hardcoded to 0 with a TODO comment indicating missing functionality.

Would you like me to help implement the curator count functionality or create an issue to track this incomplete feature? This could involve:

  1. Creating a new API endpoint /api/feeds/:feedId/stats that returns both content and curator counts
  2. Updating this hook to fetch from the new endpoint
apps/app/src/components/profile/my-feeds/index.tsx (2)

35-41: Enhance error handling with retry functionality

The current error handling only displays a generic message. Consider adding more context and a retry option.

 if (error) {
   return (
     <div className="flex items-center justify-center p-8">
-      <p className="text-red-500">Failed to load feeds. Please try again.</p>
+      <div className="text-center">
+        <p className="text-red-500 mb-2">Failed to load feeds</p>
+        <p className="text-sm text-gray-600 mb-4">{error.message || "Please check your connection and try again."}</p>
+        <Button variant="outline" onClick={() => window.location.reload()}>
+          Retry
+        </Button>
+      </div>
     </div>
   );
 }

48-96: Consider simplifying the filter dropdown implementation

The Command component with search functionality seems excessive for a simple filter with only a few options. A standard Select component would be more appropriate and performant.

Consider using a simpler dropdown implementation:

-<Popover open={open} onOpenChange={setOpen}>
-  <PopoverTrigger asChild>
-    <Button
-      variant="outline"
-      role="combobox"
-      aria-expanded={open}
-      className="truncate justify-between h-auto"
-    >
-      {filterValue
-        ? `${filterOptions.find((option) => option.value === filterValue)?.label} Feeds`
-        : "Select filter..."}
-      <ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
-    </Button>
-  </PopoverTrigger>
-  <PopoverContent className="p-0">
-    <Command>
-      <CommandInput placeholder="Search feeds" />
-      <CommandList>
-        <CommandEmpty>No filter found.</CommandEmpty>
-        <CommandGroup>
-          {filterOptions.map((option) => (
-            <CommandItem
-              key={option.value}
-              value={option.value}
-              onSelect={(currentValue) => {
-                setFilterValue(
-                  currentValue === filterValue
-                    ? "all"
-                    : (currentValue as FilterValue),
-                );
-                setOpen(false);
-              }}
-            >
-              <Check
-                className={cn(
-                  "mr-2 h-4 w-4",
-                  filterValue === option.value
-                    ? "opacity-100"
-                    : "opacity-0",
-                )}
-              />
-              {option.label}
-            </CommandItem>
-          ))}
-        </CommandGroup>
-      </CommandList>
-    </Command>
-  </PopoverContent>
-</Popover>
+<Select value={filterValue} onValueChange={setFilterValue}>
+  <SelectTrigger className="w-[180px]">
+    <SelectValue placeholder="Select filter..." />
+  </SelectTrigger>
+  <SelectContent>
+    {filterOptions.map((option) => (
+      <SelectItem key={option.value} value={option.value}>
+        {option.label} Feeds
+      </SelectItem>
+    ))}
+  </SelectContent>
+</Select>
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 08f36a3 and baaf1f3.

📒 Files selected for processing (19)
  • .prettierignore (1 hunks)
  • apps/app/src/components/UserMenu.tsx (1 hunks)
  • apps/app/src/components/profile/ProfileTabs.tsx (2 hunks)
  • apps/app/src/components/profile/my-feeds/FeedCard.tsx (1 hunks)
  • apps/app/src/components/profile/my-feeds/SearchForm.tsx (1 hunks)
  • apps/app/src/components/profile/my-feeds/card.tsx (3 hunks)
  • apps/app/src/components/profile/my-feeds/constants.ts (1 hunks)
  • apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts (1 hunks)
  • apps/app/src/components/profile/my-feeds/index.tsx (2 hunks)
  • apps/app/src/components/profile/overview/index.tsx (1 hunks)
  • apps/app/src/lib/api/feeds.ts (2 hunks)
  • apps/app/src/routeTree.gen.ts (3 hunks)
  • apps/app/src/routes/_layout.tsx (1 hunks)
  • apps/app/src/routes/_layout/profile/_tabs/activity.tsx (1 hunks)
  • apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1 hunks)
  • apps/app/src/routes/_layout/profile/_tabs/overview.tsx (1 hunks)
  • apps/app/src/routes/_layout/profile/_tabs/route.tsx (1 hunks)
  • apps/app/src/routes/_layout/profile/index.tsx (1 hunks)
  • pnpm-workspace.yaml (1 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (5)
apps/app/src/routes/_layout/profile/_tabs/activity.tsx (5)
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)
  • Route (4-6)
apps/app/src/routes/_layout/profile/_tabs/overview.tsx (1)
  • Route (4-6)
apps/app/src/routes/_layout/profile/index.tsx (1)
  • Route (3-7)
apps/app/src/routes/_layout/profile/_tabs/route.tsx (1)
  • Route (18-20)
apps/app/src/components/profile/activity/index.tsx (1)
  • ProfileActivity (76-103)
apps/app/src/components/profile/ProfileTabs.tsx (1)
apps/app/src/components/profile/my-feeds/index.tsx (1)
  • MyFeeds (21-133)
apps/app/src/routes/_layout/profile/_tabs/overview.tsx (5)
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)
  • Route (4-6)
apps/app/src/routes/_layout/profile/_tabs/activity.tsx (1)
  • Route (4-6)
apps/app/src/routes/_layout/profile/index.tsx (1)
  • Route (3-7)
apps/app/src/routes/_layout/profile/_tabs/route.tsx (1)
  • Route (18-20)
apps/app/src/components/profile/overview/index.tsx (1)
  • ProfileOverview (7-21)
apps/app/src/routes/_layout/profile/index.tsx (4)
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)
  • Route (4-6)
apps/app/src/routes/_layout/profile/_tabs/activity.tsx (1)
  • Route (4-6)
apps/app/src/routes/_layout/profile/_tabs/overview.tsx (1)
  • Route (4-6)
apps/app/src/routes/_layout/profile/_tabs/route.tsx (1)
  • Route (18-20)
apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts (3)
packages/shared-db/src/schema/feeds.ts (1)
  • feeds (28-46)
packages/types/src/api/feeds.ts (1)
  • FeedResponse (41-41)
apps/app/src/components/profile/my-feeds/constants.ts (1)
  • FilterValue (16-16)
🪛 Biome (1.9.4)
apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts

[error] 13-14: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)


[error] 18-19: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)

apps/app/src/components/profile/my-feeds/FeedCard.tsx

[error] 13-14: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)

🔇 Additional comments (23)
pnpm-workspace.yaml (1)

7-7: LGTM - Dependency configuration update.

The addition of msgpackr-extract to onlyBuiltDependencies is correctly formatted and follows the existing pattern. This configuration ensures the package is built from source when needed.

.prettierignore (1)

7-8: LGTM - Appropriate exclusions for generated files.

Adding packages/shared-db/migrations and apps/app/src/routeTree.gen.ts to the ignore list is correct, as these appear to be generated files that should not be auto-formatted by Prettier.

apps/app/src/components/UserMenu.tsx (1)

79-79: Verify that making username always visible is intentional.

The removal of hidden sm:block classes will make the username visible on all screen sizes. Please confirm this change is intentional and doesn't negatively impact the mobile user experience or layout.

apps/app/src/components/profile/overview/index.tsx (1)

2-5: Clarify if commented components should be removed permanently.

The imports and components (CurateCTA, TopBadges, UserStats) are commented out rather than removed. If these components are permanently disabled, consider removing them entirely. If this is temporary, consider adding a TODO comment explaining when they'll be re-enabled.

apps/app/src/components/profile/ProfileTabs.tsx (3)

6-6: LGTM - Icon import re-enabled correctly.

The Newspaper icon import is properly uncommented to support the My Feeds tab.


11-11: LGTM - Component import re-enabled correctly.

The MyFeeds component import is properly uncommented and aligns with the tab configuration.


29-34: LGTM - My Feeds tab configuration is well-structured.

The tab configuration follows the established pattern with proper value, label, icon, and component mapping. The implementation integrates seamlessly with the existing tabs structure.

apps/app/src/routes/_layout/profile/_tabs/activity.tsx (1)

1-10: LGTM! Consistent route implementation.

The route follows the established pattern for profile tab routes and properly integrates with the nested routing structure. The implementation is clean and consistent with the sibling routes.

apps/app/src/routes/_layout/profile/_tabs/overview.tsx (1)

1-10: LGTM! Maintains consistency with sibling routes.

The implementation follows the same clean pattern as the other profile tab routes, ensuring maintainability and consistency across the profile section navigation.

apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)

1-10: LGTM! Core route for the new My Feeds feature.

The route implementation is consistent with the other profile tab routes and properly establishes the navigation path for the new My Feeds functionality.

apps/app/src/routes/_layout.tsx (1)

10-14: LGTM! Layout simplification improves maintainability.

The simplified layout structure removes unnecessary nesting and uses semantic HTML with the <main> element. This change should improve both maintainability and accessibility while providing better support for the nested profile routing structure.

apps/app/src/components/profile/my-feeds/constants.ts (1)

1-16: LGTM! Well-structured constants with proper TypeScript patterns.

The implementation follows TypeScript best practices with the as const assertion for better type inference and uses mapped types for the FilterValue type. The filter options are logical and well-organized for the feeds filtering functionality.

apps/app/src/routes/_layout/profile/index.tsx (1)

1-7: LGTM! Clean redirect implementation.

The redirect logic correctly uses the beforeLoad hook to redirect users from the base profile route to the overview tab, following TanStack Router best practices.

apps/app/src/components/profile/my-feeds/SearchForm.tsx (1)

1-24: LGTM! Clean and well-structured search component.

The implementation follows React best practices with proper TypeScript typing, controlled component pattern, and responsive design. The icon positioning and styling are well executed.

apps/app/src/components/profile/my-feeds/FeedCard.tsx (1)

21-21: Good use of optional chaining and fallback.

The image source handling properly uses optional chaining and provides a sensible fallback.

apps/app/src/routes/_layout/profile/_tabs/route.tsx (4)

22-41: Well-structured navigation configuration.

The navigationItems array provides a clean, maintainable way to configure tabs with consistent structure for value, path, label, and icon.


48-59: Robust tab navigation logic.

The getCurrentTab and handleTabChange functions properly handle route matching and navigation. Using startsWith for path matching is appropriate for nested routes.


61-70: Proper authentication handling with clear UX.

The authentication guard provides a clear login prompt with proper messaging and call-to-action button.


72-103: Excellent responsive layout and component integration.

The main layout properly integrates the ProfileHeader, tab navigation, and content rendering through Outlet. The responsive styling and component composition are well executed.

apps/app/src/components/profile/my-feeds/card.tsx (2)

30-30: Good implementation of feed navigation

The Link component properly navigates to individual feed pages with type-safe routing parameters.


46-53: ```shell
#!/bin/bash

Search entire repository for the default feed image

fd -t f default-feed.png || find . -type f -name default-feed.png || echo "default-feed.png not found anywhere"


</details>
<details>
<summary>apps/app/src/components/profile/my-feeds/index.tsx (1)</summary>

`106-130`: **Well-structured loading and empty states**

The implementation handles loading, empty, and filtered states appropriately with clear user feedback.

</details>
<details>
<summary>apps/app/src/routeTree.gen.ts (1)</summary>

`1-10`: **Auto-generated file - changes look correct**

This file is automatically generated by TanStack Router and the new profile tabs routing structure appears to be properly configured.

</details>

</blockquote></details>

</details>

<!-- This is an auto-generated comment by CodeRabbit for review status -->

Comment on lines +17 to +23
const isComplete = !!(
feed.config &&
feed.config.name &&
feed.config.description &&
feed.config.sources &&
feed.config.sources.length > 0
);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Extract feed completion logic to avoid duplication.

The isComplete logic is duplicated in FeedCard.tsx. Consider extracting this to a shared utility function to maintain consistency and reduce code duplication.

+// Create a new utility file: apps/app/src/components/profile/my-feeds/utils/feedUtils.ts
+export function isFeedComplete(feed: FeedResponse): boolean {
+  return !!(
+    feed.config?.name &&
+    feed.config?.description &&
+    feed.config?.sources?.length > 0
+  );
+}

Then use it in both files:

-    const isComplete = !!(
-      feed.config &&
-      feed.config.name &&
-      feed.config.description &&
-      feed.config.sources &&
-      feed.config.sources.length > 0
-    );
+    const isComplete = isFeedComplete(feed);

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Biome (1.9.4)

[error] 18-19: Change to an optional chain.

Unsafe fix: Change to an optional chain.

(lint/complexity/useOptionalChain)

🤖 Prompt for AI Agents
In apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts around
lines 17 to 23, the isComplete logic is duplicated in FeedCard.tsx. Extract this
logic into a shared utility function that checks if feed.config and its required
properties exist and sources array is non-empty. Replace the existing isComplete
checks in both files with calls to this new utility function to ensure
consistency and reduce duplication.

@elliotBraem elliotBraem merged commit 713ec36 into staging Jun 27, 2025
4 checks passed
@elliotBraem elliotBraem deleted the feat/my-feeds-on-profile branch June 27, 2025 18:36
@coderabbitai coderabbitai bot mentioned this pull request Jun 27, 2025
1 task
elliotBraem added a commit that referenced this pull request Jul 6, 2025
* add feed conflicts and lowercase id

* Adds "my feeds" on profile (#204)

* feat: update my feeds tab on profile page

* feat: update tabs to be routes

* fix: double scrollbar

* comment unused files in overview tab

* fix: revert rsbuild

* fmt

* fix: add routegen to prettier ignore

* clean up, server side

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* Resolve shot's comments (#205)

* feat: add name and tag validation to create

* feat: add no activity data in activity tab

* add coming soon sections for profile page

* feat: clicking on leaderboard feed hashtag will redirect to that feed

* fix: keeps name on start when disable feed names collapse

* fix: rsbuild

* fix: add routegen to prettier ignore

* fix: add ability to navigate to collapsed feeds in leaderboard

* add ability to expand or collapse all

* fix: rsbuild

* adjustments

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* feat: new feed edit (#198)

* feat: update the feed editor

* feat: improve performance, and fix bugs

* feat: revert local development change

* add routegen to pretttier ignore

* fix: resolve code rabbit comments

* fix some nitpick comments

* fix prettier and build config

* formats

* merge

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* debounce

* nitpicks

* adds processing step plan

* fix auth

* Feat: recent content (#208)

* Feat: add recent feeds

* feat: add recent content to the main feed page

* fmt

* Update apps/app/src/hooks/use-rss-feed.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@everything.dev>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* atuh flow

* delete old requests

---------

Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
elliotBraem added a commit that referenced this pull request Jul 9, 2025
* add feed conflicts and lowercase id

* Adds "my feeds" on profile (#204)

* feat: update my feeds tab on profile page

* feat: update tabs to be routes

* fix: double scrollbar

* comment unused files in overview tab

* fix: revert rsbuild

* fmt

* fix: add routegen to prettier ignore

* clean up, server side

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* Resolve shot's comments (#205)

* feat: add name and tag validation to create

* feat: add no activity data in activity tab

* add coming soon sections for profile page

* feat: clicking on leaderboard feed hashtag will redirect to that feed

* fix: keeps name on start when disable feed names collapse

* fix: rsbuild

* fix: add routegen to prettier ignore

* fix: add ability to navigate to collapsed feeds in leaderboard

* add ability to expand or collapse all

* fix: rsbuild

* adjustments

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* feat: new feed edit (#198)

* feat: update the feed editor

* feat: improve performance, and fix bugs

* feat: revert local development change

* add routegen to pretttier ignore

* fix: resolve code rabbit comments

* fix some nitpick comments

* fix prettier and build config

* formats

* merge

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* debounce

* nitpicks

* adds processing step plan

* fix auth

* Feat: recent content (#208)

* Feat: add recent feeds

* feat: add recent content to the main feed page

* fmt

* Update apps/app/src/hooks/use-rss-feed.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@everything.dev>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* atuh flow

* delete old requests

* feat: Distributor badges link to relevant source (#210)

* add _tabs

* init with a rss feed

* xml

* fmt

---------

Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
elliotBraem added a commit that referenced this pull request Jul 9, 2025
* add feed conflicts and lowercase id

* Adds "my feeds" on profile (#204)

* feat: update my feeds tab on profile page

* feat: update tabs to be routes

* fix: double scrollbar

* comment unused files in overview tab

* fix: revert rsbuild

* fmt

* fix: add routegen to prettier ignore

* clean up, server side

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* Resolve shot's comments (#205)

* feat: add name and tag validation to create

* feat: add no activity data in activity tab

* add coming soon sections for profile page

* feat: clicking on leaderboard feed hashtag will redirect to that feed

* fix: keeps name on start when disable feed names collapse

* fix: rsbuild

* fix: add routegen to prettier ignore

* fix: add ability to navigate to collapsed feeds in leaderboard

* add ability to expand or collapse all

* fix: rsbuild

* adjustments

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* feat: new feed edit (#198)

* feat: update the feed editor

* feat: improve performance, and fix bugs

* feat: revert local development change

* add routegen to pretttier ignore

* fix: resolve code rabbit comments

* fix some nitpick comments

* fix prettier and build config

* formats

* merge

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* debounce

* nitpicks

* adds processing step plan

* fix auth

* Feat: recent content (#208)

* Feat: add recent feeds

* feat: add recent content to the main feed page

* fmt

* Update apps/app/src/hooks/use-rss-feed.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@everything.dev>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* atuh flow

* delete old requests

* feat: Distributor badges link to relevant source (#210)

* add _tabs

* init with a rss feed

* xml

* fmt

* append

---------

Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
elliotBraem added a commit that referenced this pull request Jul 9, 2025
* add feed conflicts and lowercase id

* Adds "my feeds" on profile (#204)

* feat: update my feeds tab on profile page

* feat: update tabs to be routes

* fix: double scrollbar

* comment unused files in overview tab

* fix: revert rsbuild

* fmt

* fix: add routegen to prettier ignore

* clean up, server side

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* Resolve shot's comments (#205)

* feat: add name and tag validation to create

* feat: add no activity data in activity tab

* add coming soon sections for profile page

* feat: clicking on leaderboard feed hashtag will redirect to that feed

* fix: keeps name on start when disable feed names collapse

* fix: rsbuild

* fix: add routegen to prettier ignore

* fix: add ability to navigate to collapsed feeds in leaderboard

* add ability to expand or collapse all

* fix: rsbuild

* adjustments

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* feat: new feed edit (#198)

* feat: update the feed editor

* feat: improve performance, and fix bugs

* feat: revert local development change

* add routegen to pretttier ignore

* fix: resolve code rabbit comments

* fix some nitpick comments

* fix prettier and build config

* formats

* merge

---------

Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* debounce

* nitpicks

* adds processing step plan

* fix auth

* Feat: recent content (#208)

* Feat: add recent feeds

* feat: add recent content to the main feed page

* fmt

* Update apps/app/src/hooks/use-rss-feed.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* nitpicks

---------

Co-authored-by: Elliot Braem <elliot@everything.dev>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Elliot Braem <elliot@ejlbraem.com>

* atuh flow

* delete old requests

* feat: Distributor badges link to relevant source (#210)

* add _tabs

* init with a rss feed

* xml

* fmt

* append

* add service url

* adjustments

* fix

---------

Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Feature]: "create feed" page

2 participants