[Completed]
This is a "static - website" 0.1% replica of the subscription based streaming platform service "Netflix" built on React for the front-end, Firebase as the backend, fuseJS for the live search integration, and Normalize CSS
Styled Component - For styling | React Router & React Router Dom V6 - For routing
- Project Architecture
- How to create Jumbotrons
- Clean code structures with the introduction of "fixtures" to store project data
- Importance of "macro" when declaring styled components
- How to pass props in styled components
- The importance of a key in a map function/an iteration element in React
- How to create compound components in React
- Usefulness of normalize.css
- How to reference a constant (a styled component) in styled components
- How to use the "as" prop in styled components
- How to use "useContext" and "createContext" in React
- How to Create a toggle component
- Trick code to check the state of an element in React using - "<>{JSON.stringify([context name], null, 2)}</>"
- How to style a reactRouter component using styled components
- How to render images for static and dynamic web apps
- How to set up a firebase project for a production build and a development build
- How to feed data to firebase
- The trick of keeping initialization files in the context folder
- How to use hooks in React
- Route protection, react router auth and redirection
- Learnt about route protection and redirection using react-router-dom V6.
- Advantage of using a seperated custom "useAuth" hook over the "useContext" hook
- How to Re-use & Re-style a pre-existing style-component in styled-components
- How to write conditionals in styled-components
- How to pass props (including specific css props) in styled-components
- How to create and inject portals in React using JS
- How to create a functioning live search component using fuseJS
- Testing using jest and react-testing-library
-
"fatal: not a git repository (or any of the parent directories): .git" - This error was caused by the fact that I had exported a CDPATH environment variable, and one of the sub-directories of a repo happens to be named same as another non-repo-subdir under one of the paths in my CDPATH, and git was trying to find the repo in the non-repo-subdir. To fix this, I had to unset the CDPATH environment variable.
-
"Error: A "Route" is only ever to be used as the child of "Routes" element" - This error was caused by the fact that I had nested a "Route" element inside another "Route" element. To fix this, I had to remove the nested "Route" element and place it outside the parent "Route" element.
-
"export 'firestore' (imported as 'firebase') was not found in 'firebase'" - This error was caused by the fact that I had imported the "firestore" from "firebase/app" instead of "firebase/compat/app". To fix this, I had to import the "firestore" from "firebase/compat/app".
-
"export 'useHistory' (imported as 'useHistory') was not found in 'react-router-dom'" - This error was caused by the fact that I had imported the "useHistory" from "react-router-dom" instead of "useNavigate" giving the version of react-router-dom I'm usong . To fix this, I had to import the "useNavigate" from "react-router-dom".
-
"Firebase: A network AuthError (such as timeout, interrupted connection or unreachable host) has occurred. (auth/network-request-failed)." - This error was caused by the fact that I had not set up the firebase project for a production build and a development build. To fix this, I had to set up the firebase project for a production build and a development build.
- None