Sample State - Raynor49/Lyrical GitHub Wiki

Sample State

{
entities: {
tracks: {

1: {  
 id: 1,  
 lyrics: "Somebody once told me",  
 user_id: 3, 
 annotation_ids: [4, 7],
 comment_ids: [1,2,3]
}  
2: {  
 id: 2,  
 lyrics: "the world is gonna roll me",  
 user_id: 55,  
 annotation_ids: [8, 3],
 comment_ids: [5]
}  
3: {  
 id: 3,  
 lyrics: "I ain't the sharpest tool in the shed",  
 user_id: 7,  
 annotation_ids: [],
 comment_ids: [11,2]
}},               

users: {

 3: {  
  id: 3,  
  username: "lyricsbuddy",  
  img_url: "https://t2.lyral/3A%2F%2Fimages.genius.com%2F37957db513b5237590ebfb8b2d06a046.1000x1000x1.jpg"  
 }  
 7: {  
  id: 7,  
  username: "bonhomme",  
  img_url: "https://t2.lyral/3A%2F%2Fimages.brenius.com%2F37957db513b5237590ebfb8b2d06a046.1000x1000x1.jpg"  
 }  
 55: {  
  id: 55,  
  username: "lyricsbuddy2",  
  img_url: "https://t2.lyral/3A%2F%2Fimages.screamus.com%2F37957db513b5237590ebfb8b2d06a046.1000x1000x1.jpg"  
 }},  

annotations: {

 1: {  
  id: 1,  
  body: "this part means he was sad",  
  track_id: 1,  
  user_id: 55,
  comment_ids: []  
 },  
 3: {  
  id: 3,  
  body: "He was happy here",  
  track_id: 2,  
  user_id: 7,
  comment_ids: []
 },  
 4: {  
  id: 4,  
  body: "I think he likes color blue",  
  track_id: 3,  
  user_id: 3,
  comment_ids: []
 }},  

comments: {

 6: {  
  id: 6,  
  body: "this is bad",  
  annotation_id: 1,  
  user_id: 7  
 },  
 2: {  
  id: 2,  
  body: "What a great analysis",  
  annotation_id: 3,  
  user_id: 3  
 },  
 10: {  
  id: 10,  
  body: "The comment before mine is meh",  
  annotation_id: 4,  
  user_id: 55  
 }},    

upvotes: {

 1: {  
  id: 1,  
  value: 1,  
  annotation_id: 4,  
  user_id: 55  
 }  
 3: {  
  id: 3,  
  value: -1,  
  annotation_id: 3,  
  user_id: 7  
 }  
 4: {  
  id: 4,  
  value: 1,  
  annotation_id: 55,  
  user_id: 3  
 }}  

},

ui: {
loading: true/false
},

errors: {
login: ['Incorrect login info'],
trackForm: ['Cannot be blank'],
annotForm: ['Cannot be blank'],
commentForm: ['Cannot be blank']
},

session: { id: 7, username: "bonhomme",
img_url: "https://t2.lyral/3A%2F%2Fimages.brenius.com%2F37957db513b5237590ebfb8b2d06a046.1000x1000x1.jpg"
}
}