Skip to content

Sample State Shape

kangaree edited this page Jan 20, 2019 · 14 revisions

Sample State Shape

{
  entities: {
    users: {
      1: {
        id: 1,
        username: 'BabyBlue',
        email: 'walter.white@caltech.edu'
        }
      },
      3: {
        id: 3,
        username: 'JesseP1nk',
        }
      },
      4: {
        id: 4,
        username: 'gus',
        }
      },
      8: {
        id: 8,
        username: 'TUCO_SALAMANCA_LIVES',
        }
      },
    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,
      },
      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,
      },
      2: {
        id: 3,
        title: 'Not Good',
        body: 'I stopped watching after season two.',
        score: 1,
        authorId: 8,
      },
    lists: {
      1: {
        id: 1,
        name: 'Top Ten',
        creatorId: 1
        },
      10: {
        id: 10,
        name: 'Good Dramas',
        creatorId: 3
      },
      32: {
        id: 32,
        name: 'The Best Hour Long Dramas',
        creatorId: 4
      },
    },
    listings: {
      1: {
        id: 1,
        showId: 42,
        listId: 1
        },
      4: {
        id: 4,
        showId: 42,
        listId: 10
      },
      23: {
        id: 23,
        showId: 42,
        listId: 32
      },
    },
    watchStatuses: {
    1: {
      id: 1,
      showId: 42,
      userId: 1,
      readStatus: 'watched'
      }
    },
  },
  ui: {
  loading: true/false
  },
  errors: {
  login: ["\"I AM THE ONE WHO KNOCKS\" — Heisenberg, Breaking Bad. No matching account."],
  },
  session: { currentUserId: 1 }
}

Clone this wiki locally