invainn / ARIA

CS 425 - CS 426 Project
0 stars 1 forks source link

[Application Restructuring] -- Update directories, import statements, and component names #97

Closed njirwin closed 5 years ago

njirwin commented 5 years ago
  1. Update the directory structure to improve navigation and makes future development easier to implement.
  2. Update the import statements so that they reflect changes to the directory structure.
  3. Update the component names to provide greater clarity about their purpose(s).
njirwin commented 5 years ago

| Proposed Directory Solution | /client --------/node_modules --------/public --------/src ----------------/actions ----------------/components ------------------------/AccountManagement --------------------------------/Login --------------------------------/Registration --------------------------------/ResetPassword ------------------------/App ------------------------/LandingPage (changed from HomePage) ------------------------/Portals --------------------------------/Shell --------------------------------/Shared ----------------------------------------/SharedPortal --------------------------------/TeacherPortal --------------------------------/AdminPortal --------------------------------/CustomerPortal ------------------------/Misc --------------------------------/CS426ProjectWebsite --------------------------------/HTML5ErrorPages (changed from status codes) ----------------------------------------/404 ----------------------------------------/... ----------------/containers ----------------/reducers /res /server

njirwin commented 5 years ago

| Proposed Directory Solution | (Updated) /client --------/node_modules --------/public --------/src ----------------/actions ----------------/components ------------------------/NP -NonPortal --------------------------------/AccountManagement ----------------------------------------/Login ----------------------------------------/Registration ----------------------------------------/ResetPassword --------------------------------/LandingPage ------------------------/Portals --------------------------------/SP-SharedPortal ----------------------------------------/...(all components here prefixed with 'SP' ex: SP-Dashboard --------------------------------/CP-CustomerPortal ----------------------------------------/...(all components here prefixed with 'SP' ex: CP-MyAccount --------------------------------/TP-TeacherPortal ----------------------------------------/...(all components here prefixed with 'SP' ex: TP-MyStudents --------------------------------/AP-AdminPortal ----------------------------------------/...(all components here prefixed with 'SP' ex: AP-GenerateDocuments ------------------------/Misc --------------------------------/HTML5ErrorPages (changed from status codes) ----------------------------------------/404 ----------------------------------------/... ----------------/containers ----------------/reducers /res /server

njirwin commented 5 years ago

Application restructuring has been completed for the client/ directory and all sub-directories.