State Shape - aknishi/stringitapp GitHub Wiki

{
  entities: {   
    users: {
      1: {
        id: 1,
        name: "Adrian Kawanishi",
        email: "[email protected]",
        phone_number: 555-555-5555
        address: "555 1st Street, San Francisco, CA 94105"
        comment: null
        admin: true,
        racketIds: []
        },
      2: {
        id: 2,
        name: "Jordan B.",
        email: "[email protected]",
        phone_number: 555-555-5555
        address: "555 2nd Street, San Francisco, CA 94101"
        comments: "great customer"
        admin: false,
        racketIds: [1,3,5]
        },
      3: {
        id: 2,
        name: "John T.",
        email: "[email protected]",
        phone_number: 555-555-5555
        address: "555 3rd Street, San Francisco, CA 94101"
        comments: "Always wants orders delivered."
        admin: false,
        racketIds: [3,4,8]
        }
    },

    orders: {
      1: {
        id: 1,
        order_number: 1809181502,
        customer_id: 2,
        status: "Pending",
        comments: "The Yonex Vcore Pro 100 racket is urgent. The other one is not.",
        orderLineIds: [1,2]
      },
      2: {
        id: 2,
        order_number: 1809181520,
        customer_id: 3,
        status: "Ready",
        comments: "Needs Racket by October 15",
        orderLineIds: [3]
      }
    },
    orderLines: {
      1: {
        id: 1,
        order_id: 1
        racket_id: 5,
        main_cord_id: 4,
        main_tension: 55,
        cross_cord_id: 2,
        cross_tension: 50,
      },
      2: {
        id: 2,
        order_id: 1
        racket_id: 3,
        main_cord_id: 1,
        main_tension: 55,
        cross_cord_id: 1,
        cross_tension: 60,
      },
      3: {
        id: 3,
        order_id: 2
        racket_id: 4,
        main_cord_id: 5,
        main_tension: 50,
        cross_cord_id: 5,
        cross_tension: 55,
      }
    },   
    rackets: {
      1: {
        id: 3,
        brand: "Yonex",
        model: "Vcore Pro 100",
        color: "navy / orange",
        image_url: "https://img...."
       },
      2: {
        id: 4,
        brand: "Wilson",
        model: "Blade Team 99 Lite"
        color: "black / yellow",
        image_url: "https://img...."
      },
      3: {
        id: 5,
        brand: "Prince",
        model: "Phantom Pro 100"
        color: "black",
        image_url: "https://img...."
      },
    },
    cords: { 
      1: {
        id: 3,
        order_line_id: 2
        brand: "Wilson",
        model: "Duo Power Hybrid",
        gauge: "16G",
        length: 40,
        composition: "Poly-Ether",
        color: "green",
        image_url: "https://img...."
       },
    },
  },
  session: { 
    currentUserId: 1,
    admin: true 
  },
  errors: {
    session: ["Incorrect username/password"],
    order: [],
    orderLine: [],
    racket: [],
    cord: [],
    user: []
  },
  ui: {
    loading: { loading: true }
  }
}