Skip to content
This repository was archived by the owner on May 6, 2019. It is now read-only.

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",
     },
 }

Clone this wiki locally