Skip to content

Latest commit

Β 

History

History
198 lines (155 loc) Β· 6 KB

README.md

File metadata and controls

198 lines (155 loc) Β· 6 KB

movie-app-react

Movie App Live

Description

A react movie project where you can access many details and trailers about the desired movie using tmdb api. Firebase, toastify, tailwind.css were used in this project.

Project Skeleton

- Movie App (folder)
|
SOLUTION
β”œβ”€β”€ public
β”‚     └── index.html
β”œβ”€β”€ src
β”‚    β”œβ”€β”€ assets
β”‚    β”‚     └── [icons]
β”‚    β”œβ”€β”€ auth
β”‚    β”‚     └── firebase.js
β”‚    β”œβ”€β”€ components
β”‚    β”‚     β”œβ”€β”€ ErrorPage.jsx
β”‚    β”‚     β”œβ”€β”€ MovieCard.jsx
β”‚    β”‚     β”œβ”€β”€ Navbar.jsx
β”‚    β”‚     β”œβ”€β”€ SearchInput.jsx
β”‚    β”‚     β”œβ”€β”€ Switch.jsx
β”‚    β”‚     └── VideoSection.js
β”‚    β”œβ”€β”€ context
β”‚    β”‚     β”œβ”€β”€ AuthContext.js
β”‚    β”‚     └── MovieContext.jsx
β”‚    β”œβ”€β”€ helpers
β”‚    β”‚     └── toastNotify.js
β”‚    β”œβ”€β”€ pages
β”‚    β”‚     β”œβ”€β”€ Login.jsx
β”‚    β”‚     β”œβ”€β”€ Main.jsx
β”‚    β”‚     β”œβ”€β”€ MovieDetail.jsx
β”‚    β”‚     β”œβ”€β”€ NotFound.jsx
β”‚    β”‚     └── Register.jsx
β”‚    β”œβ”€β”€ router
β”‚    β”‚     β”œβ”€β”€ AppRouter.jsx
β”‚    β”‚     └── PrivateRouter.jsx
β”‚    β”œβ”€β”€ App.js
β”‚    β”œβ”€β”€ index.css
β”‚    └── index.js
β”œβ”€β”€ .env.local
β”œβ”€β”€ .gitignore
β”œβ”€β”€ example.env.local
β”œβ”€β”€ LICENSE
β”œβ”€β”€ package.json
β”œβ”€β”€ README.md
β”œβ”€β”€ tailwind.config.js
└── yarn.lock

Project Snapshot

Outcome

Project Snapshot

Steps to Solution

  • Before start you can watch these tutorials:

  • Step 1 : Create React App using npx create-react-app movie-app and install firebase npm i firebase / yarn add firebase

  • Step 2 : Signup https://firebase.google.com/ and create new app in firebase. Firebase is a backed application development software that enables developers to develop iOS, Android and Web apps. It provides developers with a variety of tools and services to help them develop quality apps, grow their user base, and earn profit. It is built on Google’s infrastructure. Firebase offers a number of services, including: analytics,authentication, cloud messaging, realtime database, performance and test lab. Firebase is categorized as a NoSQL database program, which stores data in JSON-like documents.

Project  Snapshot

  • Step 3 : Use https://firebase.google.com/docs/auth/web/start and create Authentication operations.
    • Add the Firebase Authentication JS codes in your firebase.js file and initialize Firebase Authentication:
import { initializeApp } from "firebase/app";
import { getAuth } from "firebase/auth";

// TODO: Replace the following with your app's Firebase project configuration at project settings part
// See: https://firebase.google.com/docs/web/learn-more#config-object
const firebaseConfig = {
  // ...
};

// Initialize Firebase
const app = initializeApp(firebaseConfig);

// Initialize Firebase Authentication and get a reference to the service
const auth = getAuth(app);
  • Use this method to Sign up new users :
import { getAuth, createUserWithEmailAndPassword } from "firebase/auth";

createUserWithEmailAndPassword(auth, email, password)
  .then((userCredential) => {
    // Signed in
    const user = userCredential.user;
  })
  .catch((error) => {
    console.log(error);
  });
import { getAuth, signInWithEmailAndPassword } from "firebase/auth";

signInWithEmailAndPassword(auth, email, password)
  .then((userCredential) => {
    // Signed in
    const user = userCredential.user;
  })
  .catch((error) => {
    console.log(error);
  });
  • Use this method to Set an authentication state observer and get user data :
import { getAuth, onAuthStateChanged } from "firebase/auth";

onAuthStateChanged(auth, (user) => {
  if (user) {
    // User is signed in, see docs for a list of available properties
    // https://firebase.google.com/docs/reference/js/firebase.User
  } else {
    // User is signed out
  }
});
import { GoogleAuthProvider } from "firebase/auth";

const provider = new GoogleAuthProvider();

signInWithPopup(auth, provider)
  .then((result) => {
    // The signed-in user info.
    const user = result.user;
  })
  .catch((error) => {
    // Handle Errors here.
    console.log(error);
  });
  • Use this method to Sign Out :
import { getAuth, signOut } from "firebase/auth";

signOut(auth)
  .then(() => {
    // Sign-out successful.
  })
  .catch((error) => {
    // An error happened.
  });
  • Use this method to Send a password reset email :
import { getAuth, sendPasswordResetEmail } from "firebase/auth";

sendPasswordResetEmail(auth, email)
  .then(() => {
    // Password reset email sent!
  })
  .catch((error) => {
    const errorMessage = error.message;
    // ..
  });
  • Step 4 : Signup https://www.themoviedb.org/documentation/api and get API key. In order to get data use https://api.themoviedb.org/3/discover/movie?api_key=${API_KEY} or https://api.themoviedb.org/3/movie/now_playing?language=en-US&page=1&api_key=${API_KEY} to search movies use https://api.themoviedb.org/3/search/movie?api_key=${API_KEY}&query=, to get movie details use https://api.themoviedb.org/3/movie/${id}?api_key=${API_KEY} and to get video key use https://api.themoviedb.org/3/movie/${id}/videos?api_key=${API_KEY}. Use https://image.tmdb.org/t/p/w1280${poster_path} for image src.