惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
L
LangChain Blog
博客园_首页
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
WordPress大学
WordPress大学
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
C
Check Point Blog
IT之家
IT之家
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
D
Docker
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
I
InfoQ

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building an Enterprise Dashboard : 3 Architecture Lessons...
Vivek Vohra · 2026-05-11 · via DEV Community

I’ve been learning React recently,and I build something that pushed me to learn a lot - an enterprise-style dashboard.

It had the stuff dashboards usually have:

  • big data tables
  • filters that actually matter
  • layouts with sidebars
  • routes that should be locked down based on role

And that’s when I realized something:

the way we write React in beginner tutorials doesn’t scale cleanly to dashboards.

Here are 3 architecture lessons I learned while building it.


1) I stopped doing “fetch inside useEffect” everywhere (RTK Query made it clean)

At the start, my instinct was the usual:

  • put fetch() inside useEffect
  • manage isLoading, isError
  • store data in local state
  • repeat the same pattern in multiple components

That works fine… until you add filters.

In my “Quality Checks” table, the user could switch tabs and apply filters, and the data needed to refresh smoothly. Doing this manually started getting messy fast - lots of repeated code and state handling.

So I switched to RTK Query.

What I liked most as a beginner was:

I didn’t have to manually manage loading + caching logic everywhere.

The shift

Instead of writing fetch logic inside the component, I created a centralized API slice:

// features/api/apiSlice.ts
export const apiSlice = createApi({
  reducerPath: "api",
  baseQuery: fetchBaseQuery({ baseUrl: "http://localhost:3001" }),
  tagTypes: ["QualityCheck"],
  endpoints: (builder) => ({
    getQualityChecks: builder.query({
      query: (filters) => `/qualityChecks?status=${filters.status}`,
      providesTags: ["QualityCheck"],
    }),
  }),
});

Enter fullscreen mode Exit fullscreen mode

Then in the component, it becomes super simple:

const { data: records = [], isLoading } =
  useGetQualityChecksQuery({ status: activeTab });

Enter fullscreen mode Exit fullscreen mode

Now when activeTab changes, the request updates automatically.

No useEffect dependency confusion.

No duplicated loading state logic.

It just… behaves like a dashboard should.


2) Dashboards are a “layout game” (I learned the Three‑Pane UI pattern)

Most beginner projects are simple pages that scroll normally.

Dashboards are different.

In enterprise UIs, navigation should stay visible while the data area scrolls. So I built a three‑pane layout:

  • Primary sidebar (modules)
  • Secondary sidebar (sub-navigation)
  • Main content (filters + table)

The layout trick that finally made it work

The biggest lesson was keeping layout styling separate from component styling.

The layout needed to:

  • lock the overall screen height (100vh)
  • stop the browser from scrolling the entire page
  • allow scrolling only inside the table/content section

So the root layout uses something like:

  • display: flex
  • height: 100vh
  • overflow: hidden

…and only the content area gets:

  • overflow-y: auto

Once I did that, the UI suddenly felt like a real tool instead of a normal webpage.


3) I learned route security is not just “hide the menu” (RBAC needs structure)

This was a big one.

In a real dashboard:

  • Admins might access configuration screens
  • Operators might only access production/quality screens
  • Some routes should be completely blocked based on role

At first, it’s tempting to do random checks like:

{user.role === "admin" && <AdminMenuItem />}

Enter fullscreen mode Exit fullscreen mode

But the problem is:

  • it spreads role logic everywhere
  • you can easily forget a screen
  • someone can still type the URL directly if routes aren’t protected

So instead, I made one place where permissions are defined (a route/menu config), and protected routes using a wrapper.

const ProtectedRoute = ({ element, allowedRoles }) => {
  const user = useSelector(selectCurrentUser);

  if (!user) return <Navigate to="/login" />;
  if (!allowedRoles.includes(user.role)) return <Navigate to="/unauthorized" />;

  return element;
};

Enter fullscreen mode Exit fullscreen mode

This made the app feel safer and cleaner.

Also, it’s easier to scale:

If a new role comes later (like “Manager”), you don’t rewrite the whole app - you update the config + allowed roles.


The takeaway (from a beginner’s perspective)

Building this dashboard taught me that React isn’t only about components.

At dashboard level, you start thinking about:

  • data fetching patterns
  • layout structure
  • role-based access
  • and writing code that won’t collapse when features grow

If you’re early in React learning like me, try building a dashboard with mock data (seriously, json-server helps a lot). A dashboard forces you to learn the “real stuff” naturally.