Movieforecasts

Movieforecasts
Home Page

| Latest Trailers >

Story Explain >

| Webseries Review >

Scroll to Top
document.addEventListener("DOMContentLoaded", function () { const apiKey = "a4b31c5e7cffa0ba9afd4db4071b0653"; // Replace with your TMDb API Key const baseUrl = "https://corsproxy.io/?https://api.themoviedb.org/3"; const region = "US"; // Change if needed const moviesContainer = document.getElementById("movies-container"); function fetchMovies(type) { let endpoint = ""; if (type === "now_playing") { endpoint = "/movie/now_playing"; } else if (type === "this_week") { let today = new Date(); let endDate = new Date(); endDate.setDate(today.getDate() + 7); endpoint = `/discover/movie?primary_release_date.gte=${today.toISOString().split('T')[0]}&primary_release_date.lte=${endDate.toISOString().split('T')[0]}`; } else if (type === "next_week") { let startDate = new Date(); startDate.setDate(startDate.getDate() + 7); let endDate = new Date(); endDate.setDate(startDate.getDate() + 7); endpoint = `/discover/movie?primary_release_date.gte=${startDate.toISOString().split('T')[0]}&primary_release_date.lte=${endDate.toISOString().split('T')[0]}`; } fetch(`${baseUrl}${endpoint}?api_key=${apiKey}&language=en-US®ion=${region}`) .then(response => response.json()) .then(data => { data = { results: [ { title: "Test Movie 1", poster_path: "/test1.jpg", release_date: "2024-02-20" }, { title: "Test Movie 2", poster_path: "/test2.jpg", release_date: "2024-02-21" } ] }; moviesContainer.innerHTML = ""; // Clear old results if (data.results.length === 0) { moviesContainer.innerHTML = "

No movies found.

"; return; } data.results.slice(0, 10).forEach(movie => { const posterUrl = movie.poster_path ? `https://image.tmdb.org/t/p/w500${movie.poster_path}` : "https://via.placeholder.com/200x300"; moviesContainer.innerHTML += `
${movie.title}

${movie.title}

Release Date: ${movie.release_date || "N/A"}

`; }); }) .catch(error => console.error("Error fetching movies:", error)); } // Load Now Playing by default fetchMovies("now_playing"); // Add event listeners for tabs document.querySelectorAll(".tab").forEach(tab => { tab.addEventListener("click", function () { document.querySelectorAll(".tab").forEach(t => t.classList.remove("active")); this.classList.add("active"); fetchMovies(this.getAttribute("data-type")); }); }); });