Skip to content

Sample State

StevenSuazo edited this page Nov 16, 2020 · 5 revisions
{
  entities: {
    users: {
      1: {
        id: 1,
        username: "PirateKing",
        email: "Luffy@strawhats.com"
      },
      2: {
        id: 2,
        username: "Lord_Seventh",
        email: "Naruto@konoha.gov",
      },
      3: {
        id: 3,
        username: "Getsuga_Tenshō",
        email: "Ichigo@soul.society.org",
     }
    },

    photos: {
      1: {
        id: 1,
        user_id: 1,
        album_id: 1,
        tag_id: [2,4,8]
        title: "The best nakama in the sea",
        description: "Selfie with the crew before setting out on a new adventure",
        photo_url: "https://i.pinimg.com/originals/1f/34/38/1f343812a828386395dd342cde036b58.jpg"
      },
      2: {
        id: 2,
        user_id: 2,
        album_id: 1,
        tag_id: [1,5]
        title: "Good old days",
        description: "My favorite picture of good old team 7",
        photo_url: "https://naruto.fandom.com/wiki/Team_7?file=Team_Kakashi.png"
      },
      3: {
        id: 3,
        user_id: 3,
        album_id: 2,
        tag_id: [1,3,6,7]
        title: "Soul Society Sunset",
        description: "Captured the sun as it set on the soul society",
        photo_url: "https://anime.desktopnexus.com/get/1678195/?t=02arqbhac14hmvccq0phvm67f55faa080e8314d"
      }
    },

    albums: {
      1: {
        id: 1,
        user_id: 1,
        name: "Adventures",
        description: "Pictures of all my adventures at sea",
      },
      2: {
        id: 1,
        user_id: 2,
        name: "Throwbacks",
        description: "All the photos I could find of a younger me",
      },
      3: {
        id: 1,
        user_id: 3,
        name: "Scenery",
        description: "Landscape photos of all the best scenery I've come across",
      }
    },

    comments: {
      1: {
        id: 1,
        author_id: 1,
        body: "WOW, save me a plate!"
      },
      2: {
        id: 2,
        author_id: 2,
        body: "Woah, beautiful shot. Where'd you take this?"
      }
    },

    tags: {
      1: {
        id: 1,
        name: "Landscape",
      },
      2: {
        id: 2,
        name: "Selfie",
      },
      3: {
        id: 3,
        name: "ThrowBack",
      },
      4: {
        id: 4,
        name: "Family",
      }
    }

  ui: {
    loading: true/false
  },

  errors: {
    login: ["Incorrect username and/or password. Please try again"]
  },

  session: { currentUserId: 3 }
}

Clone this wiki locally