Skip to content

Commit 76e5290

Browse files
authored
Merge pull request #212 from isaacphysics/feature/fasttrack-graphics
Fasttrack graphics
2 parents a5d4070 + d35cbae commit 76e5290

21 files changed

+713
-87
lines changed

package-lock.json

Lines changed: 38 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/tick-bg.png

779 Bytes
Loading

src/IsaacAppTypes.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from "react";
22
import * as ApiTypes from "./IsaacApiTypes";
33
import {AuthenticationProvider, ChoiceDTO, ContentBase, ContentSummaryDTO, ResultsWrapper, TestCaseDTO} from "./IsaacApiTypes";
44
import {ACTION_TYPE, DOCUMENT_TYPE, EXAM_BOARD, MEMBERSHIP_STATUS, TAG_ID, TAG_LEVEL} from "./app/services/constants";
5+
import {FasttrackConceptsState} from "./app/state/reducers";
56

67
export type Action =
78
| {type: ACTION_TYPE.TEST_ACTION}
@@ -365,6 +366,10 @@ export type Action =
365366
| {type: ACTION_TYPE.CONCEPTS_RESPONSE_FAILURE}
366367
| {type: ACTION_TYPE.CONCEPTS_RESPONSE_SUCCESS; concepts: Concepts}
367368

369+
| {type: ACTION_TYPE.FASTTRACK_CONCEPTS_REQUEST}
370+
| {type: ACTION_TYPE.FASTTRACK_CONCEPTS_RESPONSE_FAILURE}
371+
| {type: ACTION_TYPE.FASTTRACK_CONCEPTS_RESPONSE_SUCCESS; concepts: FasttrackConceptsState}
372+
368373
| {type: ACTION_TYPE.PRINTING_SET_HINTS; hintsEnabled: boolean}
369374
;
370375

0 commit comments

Comments
 (0)