Skip to content

Commit 28f967a

Browse files
committed
Move graph view to individual pages and add user Graph tab
Changes made: - Remove 'My Pages Graph' from homepage as requested - Graph view now appears underneath each individual page (including edit mode) - Add new 'Graph' tab to user profiles showing all interconnected pages - Create UserGraphTab component for full user page connection graph - UserGraphTab shows only actual link connections (no related pages) - All user pages treated equally in the graph (no center node concept) - Add fullscreen mode for better graph exploration - Remove unused UserPagesGraphView component - Update UserProfileTabs to include Graph tab in proper order The graph view is now positioned where requested: - Under each individual page (both view and edit modes) - As a dedicated tab on user profiles for exploring all connections
1 parent 60b8dc7 commit 28f967a

File tree

4 files changed

+400
-143
lines changed

4 files changed

+400
-143
lines changed

app/components/features/Home.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import TimelineSection from "../timeline/TimelineSection";
2020
import EmailVerificationAlert from "../utils/EmailVerificationAlert";
2121
import EmptyState from "../ui/EmptyState";
2222
import { getEnvironmentType } from "../../utils/environmentConfig";
23-
import UserPagesGraphView from "../pages/UserPagesGraphView";
2423

2524
// Recently Viewed Section Component - moved outside to prevent infinite re-renders
2625
const RecentPagesSection = () => {
@@ -246,9 +245,6 @@ const Home: React.FC = () => {
246245
{/* Daily Notes Section */}
247246
<DailyNotesSection />
248247

249-
{/* User Pages Graph View */}
250-
<UserPagesGraphView />
251-
252248
{/* Timeline Section */}
253249
<TimelineSection />
254250

app/components/pages/UserPagesGraphView.tsx

Lines changed: 0 additions & 137 deletions
This file was deleted.

0 commit comments

Comments
 (0)