Skip to content

Sample State

Joshua edited this page Jan 17, 2019 · 2 revisions

Sample State

{
  entities: {
    boards: {
      1: {
        id: 1,
        title: "My First Project",
        user_ids: [1],
        list_ids: [1, 2, 3],
      },
      2: {
        id: 2,
        title: "My Second Project",
        user_ids: [2],
        list_ids: [4, 5, 6],
      },
    },
    lists: {
      1: {
        id: 1,
        position: 3,
        title: "My First List Inside First Project",
        card_ids: [1],
      },
      2: {
        id: 2,
        position: 2,
        title: "My Second List Inside First Project",
        card_ids: [2],
      },
      3: {
        id: 3,
        position: 1,
        title: "My Third List Inside First Project",
        card_ids: [3],
      },
      4: {
        id: 4,
        position: 1,
        title: "My First List Inside Second Project",
        card_ids: [4],
      },
      5: {
        id: 5,
        position: 3,
        title: "My First Second Inside Second Project",
        card_ids: [5],
      },
      6: {
        id: 6,
        position: 2,
        title: "My Third List Inside Second Project",
        card_ids: [6,7],
      },
    },
    cards: {
      1: {
        id: 1,
        position: 1,
        title: "Important Milestone",
        description: "I have to do this.",
        due_date: "February 8, 2019",
      },
      2: {
        id: 2,
        position: 1,
        title: "Important Milestone",
        description: "I have to do this.",
        due_date: "February 8, 2019",
      },
      3: {
        id: 3,
        position: 1,
        title: "Important Milestone",
        description: "I have to do this.",
        due_date: "February 8, 2019",
      },
      4: {
        id: 4,
        position: 1,
        title: "Important Milestone",
        description: "I have to do this.",
        due_date: "February 8, 2019",
      },
      5: {
        id: 5,
        position: 1,
        title: "Important Milestone",
        description: "I have to do this.",
        due_date: "February 8, 2019",
      },
      6: {
        id: 6,
        position: 1,
        title: "Important Milestone",
        description: "I have to do this.",
        due_date: "February 8, 2019",
      },
      7: {
        id: 7,
        position: 2,
        title: "Important Milestone",
        description: "I have to do this.",
        due_date: "February 8, 2019",
      }
    },
    users: {
      1: {
        id: 1,
        email: "joshuaprpich@example.com",
        username: "jprpich",
        board_ids: [1],
      },
      2: {
        id: 2,
        email: "student1@example.com",
        username: "student 1",
        name: "Student 1",
        board_ids: [2],
      },
    },
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: [],
    board: [],
    list: [],
    card: [],
  },
  session: { current_user_id: 2 }
}

Clone this wiki locally