This repository was archived by the owner on May 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Application State
Brian R. Bondy edited this page May 2, 2015
·
1 revision
{
options,
navInfo: {
topicTreeNode, // Pointer to a child of rootTopicTreeNode
rootTopicTreeNode: {
// ...Entire topic tree...
},
navStack: [],
},
user: {
loggedIn: false,
startedEntities: [],
completedEntities: [],
},
tempStore: {
video: {
showOfflineImage: false,
downloadedUrl: "",
transcript: [],
},
exercise: {
hintsUsed: 0,
perseusItemData: assessment,
level: userExerciseInfo.level,
mastered: userExerciseInfo.mastered,
practiced: userExerciseInfo.practiced,
problemNumber: userExerciseInfo.problemNumber,
streak: userExerciseInfo.streak,
taskId: userExerciseInfo.taskId,
taskAttemptHistory: userExerciseInfo.taskAttemptHistory,
longestStreak: userExerciseInfo.longestStreak
},
search: "fractions",
},
}