-
Notifications
You must be signed in to change notification settings - Fork 1
sample state
imshentastic edited this page Dec 4, 2019
·
4 revisions
{
entities: {
users: {
10: {
id: 10,
full_name: "James Corden",
email: "james.corden@gmail.com"
},
11: {
id: 11,
full_name: "Hermione Granger",
email: "hermione.granger@gmail.com"
}
},
notes: {
1: {
id: 1,
heading: "Cooking Lessons",
body: "A watched pot never boils!",
user_id: 10,
notebook_id: 1,
tag_id: 1,
starred: false
},
2: {
id: 2,
heading: "Life Lessons",
body: "The difference between doing something and not doing something is doing something.",
user_id: 10,
notebook_id: 1,
tag_id: [1, 2],
starred: false
},
3: {
id: 3,
heading: "Mischief Managed",
body: "Alohomora! That's the spell I'll need to get around undetected.",
user_id: 11,
notebook_id: 2,
tag_id: null
starred: true
},
4: {
id: 4,
heading: "N.E.W.T.S.",
body: "Study hard in Potions! Attend office hours with Professor McGonagall.",
user_id: 11,
notebook_id: null,
tag_id: 3,
starred: false
},
},
notebooks: {
1: {
id: 1,
title: "My Daily Musings",
user_id: 10,
starred: true
},
2: {
id: 2,
title: "A History of Magic",
user_id: 11
}
},
tags: {
1: {
id: 1,
note_id: [1,2],
hashtag: "sensational",
starred: true
},
2: {
id: 2,
note_id: 2,
hashtag: "memorable",
starred: false
},
3: {
id: 3,
note_id: 4,
hashtag: "important",
starred: false
}
}
},
ui: {
loading: true/false
},
errors: {
login: ["Wrong email/password credentials", "Password needs at least six characters"]
},
session: { currentUser.id: 10}
}