2017-12-07 16:13:19 -08:00
|
|
|
import _ from 'lodash';
|
2017-11-09 17:10:30 -08:00
|
|
|
import {
|
|
|
|
combineActions,
|
|
|
|
combineReducers,
|
|
|
|
createAction,
|
|
|
|
createAsyncTypes,
|
|
|
|
createTypes,
|
|
|
|
handleActions
|
|
|
|
} from 'berkeleys-redux-utils';
|
2017-07-31 20:04:01 -07:00
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
import noop from 'lodash/noop';
|
2018-02-16 15:24:37 +00:00
|
|
|
import { getValues } from 'redux-form';
|
2017-07-31 20:04:01 -07:00
|
|
|
|
2017-12-16 14:53:07 +03:00
|
|
|
import modalEpic from './modal-epic';
|
2017-07-31 20:04:01 -07:00
|
|
|
import completionEpic from './completion-epic.js';
|
|
|
|
import challengeEpic from './challenge-epic.js';
|
2017-12-07 16:13:19 -08:00
|
|
|
import executeChallengeEpic from './execute-challenge-epic.js';
|
|
|
|
import codeStorageEpic from './code-storage-epic.js';
|
2017-07-31 20:04:01 -07:00
|
|
|
|
|
|
|
import ns from '../ns.json';
|
2017-12-07 16:13:19 -08:00
|
|
|
import stepReducer, { epics as stepEpics } from '../views/step/redux';
|
|
|
|
import quizReducer from '../views/quiz/redux';
|
|
|
|
import projectReducer from '../views/project/redux';
|
|
|
|
|
2017-07-31 20:04:01 -07:00
|
|
|
import {
|
|
|
|
createTests,
|
|
|
|
loggerToStr,
|
|
|
|
submitTypes,
|
2017-12-07 16:13:19 -08:00
|
|
|
viewTypes,
|
|
|
|
getFileKey,
|
|
|
|
challengeToFiles
|
2017-07-31 20:04:01 -07:00
|
|
|
} from '../utils';
|
|
|
|
import {
|
|
|
|
types as app,
|
|
|
|
challengeSelector
|
|
|
|
} from '../../../redux';
|
2017-11-09 17:10:30 -08:00
|
|
|
import { html } from '../../../utils/challengeTypes.js';
|
|
|
|
import blockNameify from '../../../utils/blockNameify.js';
|
2017-12-07 16:13:19 -08:00
|
|
|
import { updateFileMetaCreator, createFilesMetaCreator } from '../../../files';
|
2017-07-31 20:04:01 -07:00
|
|
|
|
|
|
|
// this is not great but is ok until we move to a different form type
|
|
|
|
export projectNormalizer from '../views/project/redux';
|
|
|
|
|
2017-12-07 16:13:19 -08:00
|
|
|
const challengeToFilesMetaCreator =
|
|
|
|
_.flow(challengeToFiles, createFilesMetaCreator);
|
|
|
|
|
2017-07-31 20:04:01 -07:00
|
|
|
export const epics = [
|
2017-12-16 14:53:07 +03:00
|
|
|
modalEpic,
|
2017-07-31 20:04:01 -07:00
|
|
|
challengeEpic,
|
2017-12-07 16:13:19 -08:00
|
|
|
codeStorageEpic,
|
|
|
|
completionEpic,
|
|
|
|
executeChallengeEpic,
|
2017-07-31 20:04:01 -07:00
|
|
|
...stepEpics
|
2016-06-10 10:45:29 -07:00
|
|
|
];
|
2017-07-31 20:04:01 -07:00
|
|
|
|
|
|
|
export const types = createTypes([
|
2017-11-09 17:10:30 -08:00
|
|
|
'onRouteChallengeRoot',
|
|
|
|
'onRouteChallenges',
|
|
|
|
'onRouteCurrentChallenge',
|
2017-07-31 20:04:01 -07:00
|
|
|
// challenges
|
|
|
|
// |- classic
|
|
|
|
'classicEditorUpdated',
|
|
|
|
'challengeUpdated',
|
2017-11-09 17:10:30 -08:00
|
|
|
'clickOnReset',
|
2017-07-31 20:04:01 -07:00
|
|
|
'updateHint',
|
|
|
|
'unlockUntrustedCode',
|
|
|
|
'closeChallengeModal',
|
|
|
|
'updateSuccessMessage',
|
2017-11-29 15:44:51 -08:00
|
|
|
// |- modern
|
|
|
|
'modernEditorUpdated',
|
2017-07-31 20:04:01 -07:00
|
|
|
|
|
|
|
// rechallenge
|
|
|
|
'executeChallenge',
|
|
|
|
'updateOutput',
|
|
|
|
'initOutput',
|
|
|
|
'updateTests',
|
|
|
|
'checkChallenge',
|
2017-11-09 17:10:30 -08:00
|
|
|
createAsyncTypes('submitChallenge'),
|
2017-07-31 20:04:01 -07:00
|
|
|
'moveToNextChallenge',
|
|
|
|
|
2017-12-16 14:53:07 +03:00
|
|
|
// help
|
|
|
|
'openHelpModal',
|
|
|
|
'closeHelpModal',
|
|
|
|
'createQuestion',
|
|
|
|
|
2017-07-31 20:04:01 -07:00
|
|
|
// panes
|
|
|
|
'toggleClassicEditor',
|
|
|
|
'toggleMain',
|
|
|
|
'toggleMap',
|
|
|
|
'togglePreview',
|
|
|
|
'toggleSidePanel',
|
2017-11-29 15:44:51 -08:00
|
|
|
'toggleStep',
|
2017-12-07 16:13:19 -08:00
|
|
|
'toggleModernEditor',
|
|
|
|
|
|
|
|
// code storage
|
|
|
|
'storedCodeFound',
|
|
|
|
'noStoredCodeFound',
|
|
|
|
'previousSolutionFound'
|
2017-07-31 20:04:01 -07:00
|
|
|
], ns);
|
|
|
|
|
2017-11-09 17:10:30 -08:00
|
|
|
// routes
|
|
|
|
export const onRouteChallenges = createAction(types.onRouteChallenges);
|
|
|
|
export const onRouteCurrentChallenge =
|
|
|
|
createAction(types.onRouteCurrentChallenge);
|
|
|
|
|
2017-07-31 20:04:01 -07:00
|
|
|
// classic
|
2017-12-07 16:13:19 -08:00
|
|
|
export const classicEditorUpdated = createAction(
|
|
|
|
types.classicEditorUpdated,
|
|
|
|
null,
|
|
|
|
updateFileMetaCreator
|
|
|
|
);
|
2017-11-29 15:44:51 -08:00
|
|
|
// modern
|
|
|
|
export const modernEditorUpdated = createAction(
|
|
|
|
types.modernEditorUpdated,
|
2017-12-07 16:13:19 -08:00
|
|
|
null,
|
2017-12-13 15:15:57 -08:00
|
|
|
updateFileMetaCreator
|
2017-11-29 15:44:51 -08:00
|
|
|
);
|
2017-07-31 20:04:01 -07:00
|
|
|
// challenges
|
|
|
|
export const closeChallengeModal = createAction(types.closeChallengeModal);
|
|
|
|
export const updateHint = createAction(types.updateHint);
|
|
|
|
export const unlockUntrustedCode = createAction(
|
|
|
|
types.unlockUntrustedCode,
|
2017-12-07 16:13:19 -08:00
|
|
|
_.noop
|
2017-07-31 20:04:01 -07:00
|
|
|
);
|
|
|
|
export const updateSuccessMessage = createAction(types.updateSuccessMessage);
|
|
|
|
export const challengeUpdated = createAction(
|
|
|
|
types.challengeUpdated,
|
2017-12-07 16:13:19 -08:00
|
|
|
challenge => ({ challenge }),
|
|
|
|
challengeToFilesMetaCreator
|
2017-07-31 20:04:01 -07:00
|
|
|
);
|
2017-11-09 17:10:30 -08:00
|
|
|
export const clickOnReset = createAction(types.clickOnReset);
|
2017-07-31 20:04:01 -07:00
|
|
|
|
|
|
|
// rechallenge
|
|
|
|
export const executeChallenge = createAction(
|
|
|
|
types.executeChallenge,
|
|
|
|
noop,
|
|
|
|
);
|
|
|
|
|
|
|
|
export const updateTests = createAction(types.updateTests);
|
|
|
|
|
|
|
|
export const initOutput = createAction(types.initOutput, loggerToStr);
|
|
|
|
export const updateOutput = createAction(types.updateOutput, loggerToStr);
|
|
|
|
|
|
|
|
export const checkChallenge = createAction(types.checkChallenge);
|
|
|
|
|
|
|
|
export const submitChallenge = createAction(types.submitChallenge);
|
2017-11-09 17:10:30 -08:00
|
|
|
export const submitChallengeComplete = createAction(
|
|
|
|
types.submitChallenge.complete,
|
|
|
|
(username, points, challengeInfo) => ({ username, points, challengeInfo })
|
2017-07-31 20:04:01 -07:00
|
|
|
);
|
2017-11-09 17:10:30 -08:00
|
|
|
|
|
|
|
export const moveToNextChallenge = createAction(types.moveToNextChallenge);
|
2017-07-31 20:04:01 -07:00
|
|
|
|
2017-12-16 14:53:07 +03:00
|
|
|
// help
|
|
|
|
export const openHelpModal = createAction(types.openHelpModal);
|
|
|
|
export const closeHelpModal = createAction(types.closeHelpModal);
|
|
|
|
export const createQuestion = createAction(types.createQuestion);
|
|
|
|
|
2017-12-07 16:13:19 -08:00
|
|
|
// code storage
|
|
|
|
export const storedCodeFound = createAction(
|
|
|
|
types.storedCodeFound,
|
|
|
|
null,
|
|
|
|
challengeToFilesMetaCreator,
|
|
|
|
);
|
|
|
|
export const noStoredCodeFound = createAction(types.noStoredCodeFound);
|
|
|
|
export const previousSolutionFound = createAction(
|
|
|
|
types.previousSolutionFound,
|
|
|
|
null,
|
|
|
|
challengeToFilesMetaCreator
|
|
|
|
);
|
|
|
|
|
2017-07-31 20:04:01 -07:00
|
|
|
const initialUiState = {
|
|
|
|
output: null,
|
|
|
|
isChallengeModalOpen: false,
|
|
|
|
isBugOpen: false,
|
2017-12-16 14:53:07 +03:00
|
|
|
isHelpOpen: false,
|
2017-11-09 17:10:30 -08:00
|
|
|
successMessage: 'Happy Coding!'
|
2017-07-31 20:04:01 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
const initialState = {
|
|
|
|
isCodeLocked: false,
|
2017-12-07 16:13:19 -08:00
|
|
|
isJSEnabled: true,
|
2017-07-31 20:04:01 -07:00
|
|
|
id: '',
|
|
|
|
challenge: '',
|
|
|
|
helpChatRoom: 'Help',
|
|
|
|
// old code storage key
|
|
|
|
legacyKey: '',
|
|
|
|
// map
|
|
|
|
superBlocks: [],
|
|
|
|
// misc
|
|
|
|
...initialUiState
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getNS = state => state[ns];
|
|
|
|
export const keySelector = state => getNS(state).key;
|
|
|
|
export const testsSelector = state => getNS(state).tests;
|
|
|
|
|
|
|
|
export const outputSelector = state => getNS(state).output;
|
|
|
|
export const successMessageSelector = state => getNS(state).successMessage;
|
|
|
|
export const hintIndexSelector = state => getNS(state).hintIndex;
|
|
|
|
export const codeLockedSelector = state => getNS(state).isCodeLocked;
|
2017-12-07 16:13:19 -08:00
|
|
|
export const isCodeLockedSelector = state => getNS(state).isCodeLocked;
|
|
|
|
export const isJSEnabledSelector = state => getNS(state).isJSEnabled;
|
2017-07-31 20:04:01 -07:00
|
|
|
export const chatRoomSelector = state => getNS(state).helpChatRoom;
|
|
|
|
export const challengeModalSelector =
|
2018-02-16 15:24:37 +00:00
|
|
|
state => getNS(state).isChallengeModalOpen;
|
2017-07-31 20:04:01 -07:00
|
|
|
|
2017-12-16 14:53:07 +03:00
|
|
|
export const helpModalSelector = state => getNS(state).isHelpOpen;
|
2018-01-29 17:26:03 +00:00
|
|
|
export const guideURLSelector = state =>
|
|
|
|
`https://guide.freecodecamp.org/certificates/${getNS(state).challenge}`;
|
2017-07-31 20:04:01 -07:00
|
|
|
|
Feat: react redux migration (#16200)
* feat: crudely enables test to run solution code against React challenge (and passes!)
* feat: Updates comment
* feat: Adds React 2 and 3, validates challenges in app
* feat: Adds React 4, validates tests
* feat: Adds Peter's migrated challenge seed files for all challenges
* feat: Adds redux, react-redux imports, adds tests for React 7,
* feat: Adds tests for React 08
* fix(challenges): wrap reserved words in <code> and add tests
* feat: complete first two tests for React 9
* feat: modifies tests in React 09
* feat: Adds working tests for React 37, including async setState tests
* feat: Escape hatch to avoid async tests in automated test suite
* feat: Updates React 15 with working tests
* feat: build passes, yay
* feat: Provisions original code string in challenges and adds tests for React Redux 01
* fix(tests): add self-closing tags challenge, other small fixes
* fix(challenge): add react_10, some other stuff
* fix(challenges): update react 22, add react 23
* fix(challenges): react 5 and react 8
* feat: removes dependencies that will break in browser, will replace later
* feat: fix build
* feat: add redux 1
* fix(challenge): add react 24 tests
* feat: partial implemented Redux 2
* feat: migrate redux 3
* feat: Adds React-Redux 04 with working tests under npm test
* feat: Updates automated test runner, just provide all the dependencies. Adds Redux-Thunk.
* feat: Adds working tests for React Redux 07
* feat: redux challenge 4
* feat: migrate redux 5
* feat: redux 6
* feat: migrate Redux test 7
* fix(challenge): add react 25 tests
* feat: Adds tests for React 48, npm test does not pass...
* feat: Migrate Redux test 8
* fix(challenges): skip 26, add react 27 tests
* fix(challenges): add react 28 tests, replace function w/ => throughout, fix linter warnings
* feat: fixes (patches) hard to understand problem with automated test suite
* feat: updates async tests patch
* feat: adds converted tests for React 47
* feat: adds converted tests for React 46
* feat: Partially adds tests for React 43
* docs: adds TO-DO tests for React 43
* feat: migrates tests for React 42
* feat: migrates tests for React 41
* feat: migrates tests for React 39
* feat: Migrates tests for React 38, automated test script fails again!
* feat: migrates tests for React 32
* feat: QAs more React Redux challenge in FCC UI
* feat: Updates tests for React 7
* feat: Migrates React-Redux 3 tests and hardcodes deep-freeze dependency
* feat: migrates React Redux 05 tests
* feat: migrates React Redux 06 tests
* feat: Migrates React Redux 10
* feat: Migrates tests for React 16
* feat: Migrates React 17 tests
* feat: Migrates React 18 tests
* feat: Migrates React 19 tests
* feat: Migrates React 19 tests
* feat: fixing usage of code, replace with editor.getOriginalCode
* feat: Migrates React 21 tests
* feat: Finishes migration of React 09
* fix(challenges): add react 45 tests 💀
* feat: Adds React 11 tests
* feat: Migrates React 50 tests
* feat: Re-enables original code in FCC editor, QAs challenges blocked by original code
* feat: hacks head tail code in editor test environment
* feat: updates React 20 head code
* feat: QAs React Redux 07 in UI
* fix(challenges): add React 29 tests
* fix(challenges): add React 30 tests
* feat: updates async tests
* feat: Migrates React 12, gets ReactDOM challenges working and QAs them
* feat: Migrates React 13 tests
* feat: Migrates tests for React 14 and updates challenge description formatting
* feat: Refactors 2nd test for Redux 02
* feat: Migrates React 33
* feat: Removes React 26 and 43
* feat: Adds React 34 from Kevin
* fix(challenges): add React 31 & 35 tests (thanks Kevin)
* feat: Migrate Redux challenge 10 - pass both UI QA and terminal test
* fix(challenge): add react 40 tests
* feat: Migrates React Redux 02 tests
* feat: Migrates React Redux 08 and fixes async syntax in React challenge
* fix(challenge): add react 49 tests with caveat
* feat: fixes React 49 tests and adds first tests for React Redux 09
* feat: Migrate Redux 11 - pass both terminal test and UI test
* feat: Migrate Redux 12 - passing both UI test and terminal test
* feat: Migrate Redux 13 - passing both terminal and UI tests
* feat: Adding in code tags for previous redux challenges - terminal and UI tests pass
* feat: Migrates React Redux 09 and React 44 (thanks Kevin)
* feat: fix code tag issues - passed UI and terminal tests
* feat: Migrates Redux 14 tests
* feat: Migrates Redux 14
* feat: Migrates Redux 15
* feat: Migrates Redux 17
* feat: Final migration and QA of Redux, except for Redux 9
* feat: migrates React 36 and QAs
* feat: Rewrites Redux 09 and migrates
* feat: refactors pull request and cleans up code
* style(challenges): QA React challenges
* style(challenges): QA react challenges
* fix(challenges): fix react 41 and 45 tests
* style(challenges): QA redux challenges
* style(challenges): QA react and redux challenges
* fix(seed/react): Move head/tail to files
* fix(seed/redux): Move head/tail to file level
* chore(packages): Move jsdom to dev deps
* fix(seed/react/redux): Async funcs
make async func defined
* fix(seed): %s/editor.getUserCode/getUserInput/gc
* fix(Challenges/build): Make sure head/tail is bundled and transformed
* feat(Challenges.react): Add tail to render component
* chore(seed): Disable modern challenge testing for now
We will put these on beta while we update the auto testing framework
2017-12-18 13:04:03 -08:00
|
|
|
export const challengeRequiredSelector = state =>
|
|
|
|
challengeSelector(state).required || [];
|
2017-07-31 20:04:01 -07:00
|
|
|
export const challengeMetaSelector = createSelector(
|
2017-11-09 17:10:30 -08:00
|
|
|
// use closure to get around circular deps
|
|
|
|
(...args) => challengeSelector(...args),
|
2017-07-31 20:04:01 -07:00
|
|
|
challenge => {
|
|
|
|
if (!challenge.id) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
const challengeType = challenge && challenge.challengeType;
|
|
|
|
const type = challenge && challenge.type;
|
|
|
|
const viewType = viewTypes[type] || viewTypes[challengeType] || 'classic';
|
|
|
|
const blockName = blockNameify(challenge.block);
|
|
|
|
const title = blockName && challenge.title ?
|
|
|
|
`${blockName}: ${challenge.title}` :
|
|
|
|
challenge.title;
|
|
|
|
return {
|
Feat: react redux migration (#16200)
* feat: crudely enables test to run solution code against React challenge (and passes!)
* feat: Updates comment
* feat: Adds React 2 and 3, validates challenges in app
* feat: Adds React 4, validates tests
* feat: Adds Peter's migrated challenge seed files for all challenges
* feat: Adds redux, react-redux imports, adds tests for React 7,
* feat: Adds tests for React 08
* fix(challenges): wrap reserved words in <code> and add tests
* feat: complete first two tests for React 9
* feat: modifies tests in React 09
* feat: Adds working tests for React 37, including async setState tests
* feat: Escape hatch to avoid async tests in automated test suite
* feat: Updates React 15 with working tests
* feat: build passes, yay
* feat: Provisions original code string in challenges and adds tests for React Redux 01
* fix(tests): add self-closing tags challenge, other small fixes
* fix(challenge): add react_10, some other stuff
* fix(challenges): update react 22, add react 23
* fix(challenges): react 5 and react 8
* feat: removes dependencies that will break in browser, will replace later
* feat: fix build
* feat: add redux 1
* fix(challenge): add react 24 tests
* feat: partial implemented Redux 2
* feat: migrate redux 3
* feat: Adds React-Redux 04 with working tests under npm test
* feat: Updates automated test runner, just provide all the dependencies. Adds Redux-Thunk.
* feat: Adds working tests for React Redux 07
* feat: redux challenge 4
* feat: migrate redux 5
* feat: redux 6
* feat: migrate Redux test 7
* fix(challenge): add react 25 tests
* feat: Adds tests for React 48, npm test does not pass...
* feat: Migrate Redux test 8
* fix(challenges): skip 26, add react 27 tests
* fix(challenges): add react 28 tests, replace function w/ => throughout, fix linter warnings
* feat: fixes (patches) hard to understand problem with automated test suite
* feat: updates async tests patch
* feat: adds converted tests for React 47
* feat: adds converted tests for React 46
* feat: Partially adds tests for React 43
* docs: adds TO-DO tests for React 43
* feat: migrates tests for React 42
* feat: migrates tests for React 41
* feat: migrates tests for React 39
* feat: Migrates tests for React 38, automated test script fails again!
* feat: migrates tests for React 32
* feat: QAs more React Redux challenge in FCC UI
* feat: Updates tests for React 7
* feat: Migrates React-Redux 3 tests and hardcodes deep-freeze dependency
* feat: migrates React Redux 05 tests
* feat: migrates React Redux 06 tests
* feat: Migrates React Redux 10
* feat: Migrates tests for React 16
* feat: Migrates React 17 tests
* feat: Migrates React 18 tests
* feat: Migrates React 19 tests
* feat: Migrates React 19 tests
* feat: fixing usage of code, replace with editor.getOriginalCode
* feat: Migrates React 21 tests
* feat: Finishes migration of React 09
* fix(challenges): add react 45 tests 💀
* feat: Adds React 11 tests
* feat: Migrates React 50 tests
* feat: Re-enables original code in FCC editor, QAs challenges blocked by original code
* feat: hacks head tail code in editor test environment
* feat: updates React 20 head code
* feat: QAs React Redux 07 in UI
* fix(challenges): add React 29 tests
* fix(challenges): add React 30 tests
* feat: updates async tests
* feat: Migrates React 12, gets ReactDOM challenges working and QAs them
* feat: Migrates React 13 tests
* feat: Migrates tests for React 14 and updates challenge description formatting
* feat: Refactors 2nd test for Redux 02
* feat: Migrates React 33
* feat: Removes React 26 and 43
* feat: Adds React 34 from Kevin
* fix(challenges): add React 31 & 35 tests (thanks Kevin)
* feat: Migrate Redux challenge 10 - pass both UI QA and terminal test
* fix(challenge): add react 40 tests
* feat: Migrates React Redux 02 tests
* feat: Migrates React Redux 08 and fixes async syntax in React challenge
* fix(challenge): add react 49 tests with caveat
* feat: fixes React 49 tests and adds first tests for React Redux 09
* feat: Migrate Redux 11 - pass both terminal test and UI test
* feat: Migrate Redux 12 - passing both UI test and terminal test
* feat: Migrate Redux 13 - passing both terminal and UI tests
* feat: Adding in code tags for previous redux challenges - terminal and UI tests pass
* feat: Migrates React Redux 09 and React 44 (thanks Kevin)
* feat: fix code tag issues - passed UI and terminal tests
* feat: Migrates Redux 14 tests
* feat: Migrates Redux 14
* feat: Migrates Redux 15
* feat: Migrates Redux 17
* feat: Final migration and QA of Redux, except for Redux 9
* feat: migrates React 36 and QAs
* feat: Rewrites Redux 09 and migrates
* feat: refactors pull request and cleans up code
* style(challenges): QA React challenges
* style(challenges): QA react challenges
* fix(challenges): fix react 41 and 45 tests
* style(challenges): QA redux challenges
* style(challenges): QA react and redux challenges
* fix(seed/react): Move head/tail to files
* fix(seed/redux): Move head/tail to file level
* chore(packages): Move jsdom to dev deps
* fix(seed/react/redux): Async funcs
make async func defined
* fix(seed): %s/editor.getUserCode/getUserInput/gc
* fix(Challenges/build): Make sure head/tail is bundled and transformed
* feat(Challenges.react): Add tail to render component
* chore(seed): Disable modern challenge testing for now
We will put these on beta while we update the auto testing framework
2017-12-18 13:04:03 -08:00
|
|
|
type,
|
2017-07-31 20:04:01 -07:00
|
|
|
title,
|
|
|
|
viewType,
|
|
|
|
submitType:
|
|
|
|
submitTypes[challengeType] ||
|
|
|
|
submitTypes[challenge && challenge.type] ||
|
|
|
|
'tests',
|
2017-12-07 16:13:19 -08:00
|
|
|
showPreview: (
|
|
|
|
challengeType === html ||
|
|
|
|
type === 'modern'
|
|
|
|
),
|
2017-07-31 20:04:01 -07:00
|
|
|
mode: challenge && challengeType === html ?
|
|
|
|
'text/html' :
|
|
|
|
'javascript'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2017-11-29 15:44:51 -08:00
|
|
|
export const showPreviewSelector = state =>
|
|
|
|
!!challengeMetaSelector(state).showPreview;
|
Feat: react redux migration (#16200)
* feat: crudely enables test to run solution code against React challenge (and passes!)
* feat: Updates comment
* feat: Adds React 2 and 3, validates challenges in app
* feat: Adds React 4, validates tests
* feat: Adds Peter's migrated challenge seed files for all challenges
* feat: Adds redux, react-redux imports, adds tests for React 7,
* feat: Adds tests for React 08
* fix(challenges): wrap reserved words in <code> and add tests
* feat: complete first two tests for React 9
* feat: modifies tests in React 09
* feat: Adds working tests for React 37, including async setState tests
* feat: Escape hatch to avoid async tests in automated test suite
* feat: Updates React 15 with working tests
* feat: build passes, yay
* feat: Provisions original code string in challenges and adds tests for React Redux 01
* fix(tests): add self-closing tags challenge, other small fixes
* fix(challenge): add react_10, some other stuff
* fix(challenges): update react 22, add react 23
* fix(challenges): react 5 and react 8
* feat: removes dependencies that will break in browser, will replace later
* feat: fix build
* feat: add redux 1
* fix(challenge): add react 24 tests
* feat: partial implemented Redux 2
* feat: migrate redux 3
* feat: Adds React-Redux 04 with working tests under npm test
* feat: Updates automated test runner, just provide all the dependencies. Adds Redux-Thunk.
* feat: Adds working tests for React Redux 07
* feat: redux challenge 4
* feat: migrate redux 5
* feat: redux 6
* feat: migrate Redux test 7
* fix(challenge): add react 25 tests
* feat: Adds tests for React 48, npm test does not pass...
* feat: Migrate Redux test 8
* fix(challenges): skip 26, add react 27 tests
* fix(challenges): add react 28 tests, replace function w/ => throughout, fix linter warnings
* feat: fixes (patches) hard to understand problem with automated test suite
* feat: updates async tests patch
* feat: adds converted tests for React 47
* feat: adds converted tests for React 46
* feat: Partially adds tests for React 43
* docs: adds TO-DO tests for React 43
* feat: migrates tests for React 42
* feat: migrates tests for React 41
* feat: migrates tests for React 39
* feat: Migrates tests for React 38, automated test script fails again!
* feat: migrates tests for React 32
* feat: QAs more React Redux challenge in FCC UI
* feat: Updates tests for React 7
* feat: Migrates React-Redux 3 tests and hardcodes deep-freeze dependency
* feat: migrates React Redux 05 tests
* feat: migrates React Redux 06 tests
* feat: Migrates React Redux 10
* feat: Migrates tests for React 16
* feat: Migrates React 17 tests
* feat: Migrates React 18 tests
* feat: Migrates React 19 tests
* feat: Migrates React 19 tests
* feat: fixing usage of code, replace with editor.getOriginalCode
* feat: Migrates React 21 tests
* feat: Finishes migration of React 09
* fix(challenges): add react 45 tests 💀
* feat: Adds React 11 tests
* feat: Migrates React 50 tests
* feat: Re-enables original code in FCC editor, QAs challenges blocked by original code
* feat: hacks head tail code in editor test environment
* feat: updates React 20 head code
* feat: QAs React Redux 07 in UI
* fix(challenges): add React 29 tests
* fix(challenges): add React 30 tests
* feat: updates async tests
* feat: Migrates React 12, gets ReactDOM challenges working and QAs them
* feat: Migrates React 13 tests
* feat: Migrates tests for React 14 and updates challenge description formatting
* feat: Refactors 2nd test for Redux 02
* feat: Migrates React 33
* feat: Removes React 26 and 43
* feat: Adds React 34 from Kevin
* fix(challenges): add React 31 & 35 tests (thanks Kevin)
* feat: Migrate Redux challenge 10 - pass both UI QA and terminal test
* fix(challenge): add react 40 tests
* feat: Migrates React Redux 02 tests
* feat: Migrates React Redux 08 and fixes async syntax in React challenge
* fix(challenge): add react 49 tests with caveat
* feat: fixes React 49 tests and adds first tests for React Redux 09
* feat: Migrate Redux 11 - pass both terminal test and UI test
* feat: Migrate Redux 12 - passing both UI test and terminal test
* feat: Migrate Redux 13 - passing both terminal and UI tests
* feat: Adding in code tags for previous redux challenges - terminal and UI tests pass
* feat: Migrates React Redux 09 and React 44 (thanks Kevin)
* feat: fix code tag issues - passed UI and terminal tests
* feat: Migrates Redux 14 tests
* feat: Migrates Redux 14
* feat: Migrates Redux 15
* feat: Migrates Redux 17
* feat: Final migration and QA of Redux, except for Redux 9
* feat: migrates React 36 and QAs
* feat: Rewrites Redux 09 and migrates
* feat: refactors pull request and cleans up code
* style(challenges): QA React challenges
* style(challenges): QA react challenges
* fix(challenges): fix react 41 and 45 tests
* style(challenges): QA redux challenges
* style(challenges): QA react and redux challenges
* fix(seed/react): Move head/tail to files
* fix(seed/redux): Move head/tail to file level
* chore(packages): Move jsdom to dev deps
* fix(seed/react/redux): Async funcs
make async func defined
* fix(seed): %s/editor.getUserCode/getUserInput/gc
* fix(Challenges/build): Make sure head/tail is bundled and transformed
* feat(Challenges.react): Add tail to render component
* chore(seed): Disable modern challenge testing for now
We will put these on beta while we update the auto testing framework
2017-12-18 13:04:03 -08:00
|
|
|
export const challengeTypeSelector = state =>
|
|
|
|
challengeMetaSelector(state).type || '';
|
|
|
|
export const challengeTemplateSelector = state =>
|
|
|
|
challengeSelector(state).template || null;
|
2017-11-29 15:44:51 -08:00
|
|
|
|
2018-02-16 15:24:37 +00:00
|
|
|
export const backendFormValuesSelector = state =>
|
|
|
|
getValues(state.form.BackEndChallenge);
|
|
|
|
|
2017-11-09 17:10:30 -08:00
|
|
|
export default combineReducers(
|
|
|
|
handleActions(
|
|
|
|
() => ({
|
|
|
|
[
|
|
|
|
combineActions(
|
|
|
|
types.challengeUpdated,
|
|
|
|
app.fetchChallenge.complete
|
|
|
|
)
|
|
|
|
]: (state, { payload: { challenge } }) => {
|
2017-07-31 20:04:01 -07:00
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
...initialUiState,
|
|
|
|
id: challenge.id,
|
|
|
|
challenge: challenge.dashedName,
|
|
|
|
key: getFileKey(challenge),
|
|
|
|
tests: createTests(challenge),
|
2017-11-09 17:10:30 -08:00
|
|
|
helpChatRoom: challenge.helpRoom || 'Help'
|
2017-07-31 20:04:01 -07:00
|
|
|
};
|
|
|
|
},
|
|
|
|
[types.updateTests]: (state, { payload: tests }) => ({
|
|
|
|
...state,
|
|
|
|
tests,
|
|
|
|
isChallengeModalOpen: (
|
|
|
|
tests.length > 0 &&
|
|
|
|
tests.every(test => test.pass && !test.err)
|
|
|
|
)
|
|
|
|
}),
|
|
|
|
[types.closeChallengeModal]: state => ({
|
|
|
|
...state,
|
|
|
|
isChallengeModalOpen: false
|
|
|
|
}),
|
|
|
|
[types.updateSuccessMessage]: (state, { payload }) => ({
|
|
|
|
...state,
|
|
|
|
successMessage: payload
|
|
|
|
}),
|
2017-12-07 16:13:19 -08:00
|
|
|
[types.storedCodeFound]: state => ({
|
2017-07-31 20:04:01 -07:00
|
|
|
...state,
|
2017-12-07 16:13:19 -08:00
|
|
|
isJSEnabled: false,
|
2017-07-31 20:04:01 -07:00
|
|
|
isCodeLocked: true
|
|
|
|
}),
|
|
|
|
[types.unlockUntrustedCode]: state => ({
|
|
|
|
...state,
|
|
|
|
isCodeLocked: false
|
|
|
|
}),
|
|
|
|
[types.executeChallenge]: state => ({
|
|
|
|
...state,
|
2017-12-07 16:13:19 -08:00
|
|
|
isJSEnabled: true,
|
2017-07-31 20:04:01 -07:00
|
|
|
tests: state.tests.map(test => ({ ...test, err: false, pass: false }))
|
|
|
|
}),
|
2017-12-07 16:13:19 -08:00
|
|
|
[
|
|
|
|
combineActions(
|
|
|
|
types.classicEditorUpdated,
|
|
|
|
types.modernEditorUpdated
|
|
|
|
)
|
|
|
|
]: state => ({
|
|
|
|
...state,
|
|
|
|
isJSEnabled: false
|
|
|
|
}),
|
2017-07-31 20:04:01 -07:00
|
|
|
|
|
|
|
// classic/modern
|
|
|
|
[types.initOutput]: (state, { payload: output }) => ({
|
|
|
|
...state,
|
|
|
|
output
|
|
|
|
}),
|
|
|
|
[types.updateOutput]: (state, { payload: output }) => ({
|
|
|
|
...state,
|
|
|
|
output: (state.output || '') + output
|
|
|
|
}),
|
2017-12-16 14:53:07 +03:00
|
|
|
[types.openHelpModal]: state => ({ ...state, isHelpOpen: true }),
|
|
|
|
[types.closeHelpModal]: state => ({ ...state, isHelpOpen: false })
|
2017-11-09 17:10:30 -08:00
|
|
|
}),
|
|
|
|
initialState,
|
|
|
|
ns
|
|
|
|
),
|
|
|
|
stepReducer,
|
|
|
|
quizReducer,
|
|
|
|
projectReducer
|
|
|
|
);
|