React文件夾結(jié)構(gòu) - 構(gòu)建堅實的基礎
關鍵是保持清晰且有組織的結(jié)構(gòu),以便輕松查找和管理文件。
精心設計的文件夾結(jié)構(gòu)對于維護干凈且可擴展的代碼庫、改善團隊成員之間的協(xié)作以及提高整體開發(fā)效率至關重要。
React項目中常用的文件夾結(jié)構(gòu)有多種類型,包括基于組件的結(jié)構(gòu)、 基于特征的結(jié)構(gòu)和基于領域的結(jié)構(gòu)。
雖然有各種可用的文件夾結(jié)構(gòu)選項,但“基于功能的結(jié)構(gòu)”被認為是在 React 項目中組織代碼庫的最佳方法之一。
它通過基于特性或功能而不是技術層對相關文件和組件進行分組來促進模塊化、可擴展性和可維護性。
(更|多優(yōu)質(zhì)內(nèi)|容:java567 點 c0m)
以下是為什么通常首選基于特征的結(jié)構(gòu)的一些原因:
1. 模塊化和關注點分離 2. 代碼可重用性 3. 可擴展性和團隊協(xié)作 4. 更輕松的導航和理解 5. 維護和重構(gòu)
讓我們考慮一個社交媒體應用程序(例如Facebook應用程序)的示例,以更好地了解基于功能的結(jié)構(gòu)在實踐中如何工作。
我們需要創(chuàng)建基本文件夾,以構(gòu)成基于功能的結(jié)構(gòu)的基礎。這些基本文件夾作為組織代碼的起點,并為整個項目提供清晰的結(jié)構(gòu)。
?src/
?├── features/ ? ? ? // Grouping features of the application
?│ ? └── ... ? ? ? ? // Other feature folders
?├── shared/ ? ? ? ? // Shared elements used across multiple features
?│ ? ├── components/ // Reusable components
?│ ? ├── services/ ? // Shared services or API calls
?│ ? ├── hooks/ ? ? ?// Custom hooks
?│ ? ├── hoc/ ? ? ? ?// Higher-order components
?│ ? ├── slices/ ? ? // Redux slices for state management
?│ ? └── utils/ ? ? ?// Utility functions
?├── assets/ ? ? ? ? // Storing static assets
?│ ? ├── images/ ? ? // Storing image files
?│ ? ├── fonts/ ? ? ?// Storing font files
?│ ? └── ...
?├── styles/ ? ? ? ? // Global styles
?│ ? └── ...
?├── App.jsx ? ? ? ? // Entry point of the application
?└── ... ? ? ? ? ? ? // Other necessary files and folders
在這個結(jié)構(gòu)中,
features文件夾是您根據(jù)應用程序的不同特性或功能對代碼進行分組的位置。每個功能都有自己的子文件夾。
共享文件夾包含各種子文件夾,例如Components、services、hooks、hoc、slices和utils ,用于存儲跨多個功能使用的共享元素 ?
結(jié)合使用 useReducer 和 Redux Toolkit:狀態(tài)管理的強大組合Sathish Kumar N ? 5 月 12 日 ? 閱讀 3 分鐘#react #reducer #redux #bestpractice
資產(chǎn)文件夾用于存儲靜態(tài)資產(chǎn),例如圖像、字體或其他媒體文件。
styles文件夾是您可以放置全局樣式或樣式相關文件的位置。
App.jsx代表應用程序的主要組件或入口點。
在 Facebook 中,我們可能有“動態(tài)消息”、“個人資料”和“聊天”等功能。我們將在 features 目錄中為每個功能創(chuàng)建單獨的子文件夾。
讓我們在“ News Feed ”下添加子文件夾。
?src/
?├── features/
?│ ? ├── news-feed/ ? ? ? ?// Folder for the News Feed feature
?│ ? │ ? ├── components/ ? // Components related to the News Feed
?│ ? │ ? ├── containers/ ? // Containers or pages related to the News Feed
?│ ? │ ? ├── services/ ? ? // Services or API calls specific to the News Feed
?│ ? │ ? ├── utils/ ? ? ? ?// Utility functions specific to the News Feed
?│ ? │ ? ├── slices/ ? ? ? // Redux Slices to manage states specific to the News Feed
?│ ? │ ? └── ...
?│ ? └── ... ? ? ? ? ? ? ? // Additional feature folders
?├── ... ?
?├── App.jsx ? ? ? ? ? ? ?
?└── ... ?
在這個結(jié)構(gòu)中,
Components文件夾包含特定于 News Feed 功能的 React 組件。這些組件負責用戶界面的呈現(xiàn)和渲染。它們專注于應用程序的視覺方面并處理數(shù)據(jù)的顯示。組件通過 props 接收數(shù)據(jù)并渲染JSX來定義UI 的結(jié)構(gòu)和外觀。
容器文件夾包含容器組件,也稱為智能組件或連接組件,負責將應用程序的數(shù)據(jù)和邏輯與表示組件連接起來。它們處理數(shù)據(jù)獲取、狀態(tài)管理,并向表示組件提供數(shù)據(jù)和功能。
讓我們深入了解容器文件夾。
?news-feed/
?├── components/ ? ? ? ? ? ? ? ? ? ? ?// Folder for presentation components
?│ ? └── ... ? ? ? ? ? ? ? ? ? ? ? ? ?// Additional components related to the News Feed feature
?├── containers/ ? ? ? ? ? ? ? ? ? ? ?// Folder for container components
?│ ? ├── news-feed-page/ ? ? ? ? ? ? ? ?// Folder for the News Feed page container
?│ ? │ ? ├── NewsFeedPage.jsx ? ? ? ? // Container component for the News Feed page
?│ ? │ ? ├── NewsFeedPageStyles.css ? // Styles specific to the News Feed page
?│ ? │ ? ├── NewsFeedPageUtils.js ? ? // Utility functions specific to the News Feed page
?│ ? │ ? ├── useNewsFeedPage.js ? ? ? // Custom hook for managing News Feed data, events and callbacks
?│ ? │ ? └── ... ? ? ? ? ? ? ? ? ? ? ?// Additional files related to the News Feed page
?│ ? └── ... ?
?└── ... ?
請檢查“ React 中的關注點分離”以了解“ container ”文件夾下的上述文件分離。
React 和 React Native 中的關注點分離。Sathish Kumar N ? 5 月 9 日 ? 閱讀 5 分鐘#react #bestpractice #designpatterns #modularity
我們應用程序文件夾的最終結(jié)構(gòu)如下所示,提供了一種組織良好的模塊化方法來組織我們的代碼庫:
?src/
?├── features/
?│ ? ├── news-feed/
?│ ? │ ? ├── components/
?│ ? │ ? │ ? ├── PostItem.jsx
?│ ? │ ? │ ? ├── CommentItem.jsx
?│ ? │ ? │ ? ├── LikeButton.jsx
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── containers/
?│ ? │ ? │ ? ├── news-feed-page/
?│ ? │ ? │ ? │ ? ├── NewsFeedPage.jsx
?│ ? │ ? │ ? │ ? ├── NewsFeedPageStyles.css
?│ ? │ ? │ ? │ ? ├── NewsFeedPageUtils.js
?│ ? │ ? │ ? │ ? ├── useNewsFeedPage.js
?│ ? │ ? │ ? │ ? └── ...
?│ ? │ ? │ ? ├── PostDetailsPage.jsx
?/* No need to create separate folder if
? container have less functionality and logic */
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── services/
?│ ? │ ? │ ? ├── newsFeedService.js
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── utils/
?│ ? │ ? │ ? ├── dateUtils.js
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── slices/
?│ ? │ ? │ ? ├── newsFeedSlice.js
?│ ? │ ? │ ? └── ...
?│ ? │ ? └── ...
?│ ? ├── profile/
?│ ? │ ? ├── components/
?│ ? │ ? │ ? ├── ProfileInfo.jsx
?│ ? │ ? │ ? ├── Avatar.jsx
?│ ? │ ? │ ? ├── ProfileSettings.jsx
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── containers/
?│ ? │ ? │ ? ├── ProfilePage.jsx
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── services/
?│ ? │ ? │ ? ├── profileService.js
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── utils/
?│ ? │ ? │ ? ├── validationUtils.js
?│ ? │ ? │ ? └── ...
?│ ? │ ? ├── slices/
?│ ? │ ? │ ? ├── profileSlice.js
?│ ? │ ? │ ? └── ...
?│ ? │ ? └── ...
?│ ? └── ...
?├── shared/
?│ ? ├── components/
?│ ? ├── services/
?│ ? ├── hooks/
?│ ? ├── hoc/
?│ ? ├── slices/
?│ ? ├── utils/
?│ ? ├── assets/
?│ ? └── styles/
?│ ? └── ...
?├── App.jsx
?└── ...
在各自的功能文件夾中組織組件有助于保持關注點的清晰分離,并使特定組件的查找和使用變得更加容易。它還提高了應用程序內(nèi)代碼的可重用性和模塊化性。
注意:提供的文件夾結(jié)構(gòu)只是一個示例,可能會根據(jù)您的項目的要求和偏好而有所不同。
請繼續(xù)關注第 3 部分:組件結(jié)構(gòu) - 在 React 中構(gòu)建可重用和可維護的組件!
快樂編碼!????????????