Menu
Coddy logo textTech

上映の追加

CoddyのJavaScriptジャーニー「論理とフロー」セクションの一部 — レッスン 62/65。

challenge icon

チャレンジ

簡単

switch 文に新しいテストケース addScreening を追加します。

addScreening の場合、data パラメータには以下が含まれます:

  • movieId (数値)
  • venueId (数値)
  • date ('YYYY-MM-DD' 形式の文字列)
  • time ('HH:MM:SS' 形式の文字列)

関数は次のように機能する必要があります:

  1. 指定された movieId を持つ movie と指定された venueId を持つ venue が festivalData に存在するか検証します。どちらかが見つからない場合は、results に "Movie or venue not found!" を追加します
  2. 同じ venue、date、time での上映が存在しないか確認します。上映がすでに存在する場合は、results に "Screening already exists at this time!" を追加します
  3. 以下を持つ新しい screening オブジェクトを作成します:
    • id: screening 配列の length に 1 を加えて生成します
    • data からの movieId, venueId, date, time
    • availableSeats: venue の capacity と等しい値
  4. festivalData.screenings 配列に screening を追加します
  5. results 配列に "Screening added successfully!" を追加します

自分で試してみよう

const festivalData = {
	movies: [{
		id: 1,
		title: "Inception",
		director: "Christopher Nolan",
		year: 2010,
		mainGenre: "Sci-Fi",
		secondGenre: undefined,
		avgRating: 0,
		available: true
	}],
	venues: [{
		id: 1,
		name: "Main Theater",
		capacity: 200,
	}],
	screenings: [{
		id: 1,
		movieId: 1,
		venueId: 1,
		date: '2023-10-29',
		time: '13:35:00',
		availableSeats: 200
	}],
	tickets: new Set()
};

function manageFestival(actions, data) {
    let results = [];
    
    actions.forEach((action, index) => {
        const currentData = data[index];
        
        switch(action) {
            case "listMovies":
                results.push(festivalData.movies);
                break;
                
            case "listVenues":
                results.push(festivalData.venues);
                break;

            case "listTickets":
                results.push(festivalData.tickets);
                break;

            case "listScreenings":
                results.push(festivalData.screenings);
                break;

            case "addMovie":
                const newMovie = {
                    id: festivalData.movies.length + 1,
                    title: currentData.title,
                    director: currentData.director,
                    year: currentData.year,
                    mainGenre: currentData.mainGenre,
                    secondGenre: currentData.secondGenre,
                    avgRating: 0,
                    available: true
                };
                festivalData.movies.push(newMovie);
                results.push("Movie added successfully!");
                break;

            case "addVenue":
                const newVenue = {
                    id: festivalData.venues.length + 1,
                    name: currentData.name,
                    capacity: currentData.capacity,
                };
                festivalData.venues.push(newVenue);
                results.push("Venue added successfully!");
                break;


            default:
                results.push("Invalid action!");
        }
    });
    
    return results;
}

論理とフローのすべてのレッスン