-
Notifications
You must be signed in to change notification settings - Fork 3
Sample State Shape
kangaree edited this page Jan 21, 2019
·
14 revisions
{
entities: {
users: {
1: {
id: 1,
username: 'BabyBlue',
email: 'walter.white@caltech.edu',
reviews: [1, 5, 8],
lists: [1, 2],
watched_shows: [1, 5, 8, 24, 39, 69],
watching_shows: [50],
want_to_watch_shows: [38],
}
},
2: {
id: 2,
username: 'donDraper1960',
reviews: [],
lists: [5, 10],
}
},
3: {
id: 3,
username: 'WinterisComing',
reviews: [10],
lists: [],
}
},
4: {
id: 4,
username: 'TUCO_SALAMANCA_LIVES',
reviews: [10],
lists: [11, 14, 20],
}
},
shows: {
42: {
id: 42,
tmdb_id: 1396,
title: 'Breaking Bad',
first-air-date: "2008-01-20",
genre: "Drama",
original_language: "en",
poster_path: "https://image.tmdb.org/t/p/original/1yeVJox3rjo2jBKrrihIMj7uoS9.jpg",
backdrop_path: "https://image.tmdb.org/t/p/original/eSzpy96DwBujGFj0xMbXBcGcfxX.jpg",
overview: "When Walter White, a New Mexico chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of only two years left to live. He becomes filled with a sense of fearlessness and an unrelenting desire to secure his family's financial future at any cost as he enters the dangerous world of drugs and crime.",
rating: 4.2,
popularity: 77.376,
},
},
reviews: {
1: {
id: 1,
title: 'FeLiNa (Spoilers!)',
body: 'I can understand the criticisms- it is not graceful or intense like some of the best eps, there were no huge surprises, and maybe more damning, Walt "won". But it worked for me.',
score: 4,
authorId: 1,
showId: 42,
},
2: {
id: 2,
title: 'No Spoilers',
body: 'This show makes me very stressed, but in a good way- like a roller coaster. It knows how to build and release tension.',
score: 5,
authorId: 3,
showId: 42,
},
10: {
id: 10,
title: 'Not Good',
body: 'I stopped watching after season two.',
score: 1,
authorId: 8,
showId: 42,
},
lists: {
1: {
id: 1,
name: 'Top Ten',
creatorId: 1,
shows: [1, 5, 42, 8, 99, 24, 7, 25, 13, 10],
},
10: {
id: 10,
name: 'Two Great Shows',
creatorId: 3,
shows: [42, 23],
},
32: {
id: 32,
name: 'The Best Hour Long Dramas',
creatorId: 4,
shows: [1, 5, 42, 8, 35, 24, 69, 25, 13, 10],
},
},
},
ui: {
loading: true/false
},
errors: {
login: ["\"I AM THE ONE WHO KNOCKS\" — Heisenberg, Breaking Bad. No matching account."],
},
session: { currentUserId: 1 }
}