[PR #476] [MERGED] Enhance/empty states UI #491

Closed
opened 2026-03-03 11:30:13 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/476
Author: @manikanta9176
Created: 10/10/2025
Status: Merged
Merged: 10/10/2025
Merged by: @manikanta9176

Base: mainHead: enhance/empty-states-ui


📝 Commits (4)

  • 7e9e617 feat(dashboard): introduce dedicated empty states and project not-found page
  • e373607 fix(service): improve not found and access denied handling
  • 401f139 refactor(components): refactor empty state components and improve access denied alert
  • 0700de3 feat(servers): implement dedicated server not found page

📊 Changes

18 files changed (+378 additions, -140 deletions)

View changed files

📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/page.tsx (+24 -75)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/layout.client.tsx (+0 -8)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/layout.tsx (+6 -1)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/layout.tsx (+8 -3)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/page.tsx (+8 -3)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/not-found.tsx (+11 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/not-found.tsx (+11 -0)
src/app/(frontend)/(dashboard)/[organisation]/servers/[serverId]/not-found.tsx (+11 -0)
📝 src/app/(frontend)/(dashboard)/[organisation]/servers/page.tsx (+17 -44)
📝 src/components/AccessDeniedAlert.tsx (+19 -4)
📝 src/components/bubble/TerminalPanel.tsx (+2 -2)
src/components/states/DashboardServersEmptyState.tsx (+38 -0)
src/components/states/ProjectNotFound.tsx (+48 -0)
src/components/states/ProjectsEmptyState.tsx (+22 -0)
src/components/states/ServerNotFound.tsx (+48 -0)
src/components/states/ServersEmptyState.tsx (+43 -0)
src/components/states/ServiceNotFound.tsx (+48 -0)
src/components/states/TriggerNotFound.tsx (+14 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dflow-sh/dflow/pull/476 **Author:** [@manikanta9176](https://github.com/manikanta9176) **Created:** 10/10/2025 **Status:** ✅ Merged **Merged:** 10/10/2025 **Merged by:** [@manikanta9176](https://github.com/manikanta9176) **Base:** `main` ← **Head:** `enhance/empty-states-ui` --- ### 📝 Commits (4) - [`7e9e617`](https://github.com/dflow-sh/dflow/commit/7e9e6171c584fae2e1cf2cb7743f2c5beb21229e) feat(dashboard): introduce dedicated empty states and project not-found page - [`e373607`](https://github.com/dflow-sh/dflow/commit/e373607503b54fdd9d8ec6165d5835bfc01c2535) fix(service): improve not found and access denied handling - [`401f139`](https://github.com/dflow-sh/dflow/commit/401f13996fedc95edba9c3de7f35219556a8d5d6) refactor(components): refactor empty state components and improve access denied alert - [`0700de3`](https://github.com/dflow-sh/dflow/commit/0700de39f57404c4ef96c2b7ff80212ea0f4bade) feat(servers): implement dedicated server not found page ### 📊 Changes **18 files changed** (+378 additions, -140 deletions) <details> <summary>View changed files</summary> 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/page.tsx` (+24 -75) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/layout.client.tsx` (+0 -8) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/layout.tsx` (+6 -1) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/layout.tsx` (+8 -3) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/page.tsx` (+8 -3) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/not-found.tsx` (+11 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/not-found.tsx` (+11 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/servers/[serverId]/not-found.tsx` (+11 -0) 📝 `src/app/(frontend)/(dashboard)/[organisation]/servers/page.tsx` (+17 -44) 📝 `src/components/AccessDeniedAlert.tsx` (+19 -4) 📝 `src/components/bubble/TerminalPanel.tsx` (+2 -2) ➕ `src/components/states/DashboardServersEmptyState.tsx` (+38 -0) ➕ `src/components/states/ProjectNotFound.tsx` (+48 -0) ➕ `src/components/states/ProjectsEmptyState.tsx` (+22 -0) ➕ `src/components/states/ServerNotFound.tsx` (+48 -0) ➕ `src/components/states/ServersEmptyState.tsx` (+43 -0) ➕ `src/components/states/ServiceNotFound.tsx` (+48 -0) ➕ `src/components/states/TriggerNotFound.tsx` (+14 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:30:13 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dflow#491
No description provided.