mon-entreprise/source/reducers.js

160 lines
4.4 KiB
JavaScript
Raw Normal View History

import React from 'react'
import { combineReducers } from 'redux'
import reduceReducers from 'reduce-reducers'
import {reducer as formReducer, formValueSelector} from 'redux-form'
2017-01-20 10:52:39 +00:00
import {analyseSituation, variableType} from './engine/traverse'
import { euro } from './components/conversation/formValueTypes.js'
import Question from './components/conversation/Question'
import Input from './components/conversation/Input'
import RhetoricalQuestion from './components/conversation/RhetoricalQuestion'
import { STEP_ACTION, UNSUBMIT_ALL, START_CONVERSATION, EXPLAIN_VARIABLE} from './actions'
import R from 'ramda'
2017-01-23 18:06:46 +00:00
import {findGroup, findRuleByDottedName, dottedName, parentName} from './engine/rules'
import {constructStepMeta} from './engine/conversation'
import computeThemeColours from './components/themeColours'
function steps(steps = [], {type}) {
switch (type) {
case UNSUBMIT_ALL:
return []
default:
return steps
}
}
function themeColours(state = computeThemeColours(), {type, colour}) {
if (type == 'CHANGE_THEME_COLOUR')
return computeThemeColours(colour)
else return state
}
let situationGate = state =>
name => formValueSelector('conversation')(state, name)
2017-02-09 17:38:51 +00:00
function explainedVariable(state = null, {type, variableName=null}) {
switch (type) {
case EXPLAIN_VARIABLE:
return variableName
2017-02-09 17:38:51 +00:00
default:
return state
}
}
export default reduceReducers(
combineReducers({
// this is handled by redux-form, pas touche !
form: formReducer,
/* Have forms been filled or ignored ?
false means the user is reconsidering its previous input */
steps,
analysedSituation: (state = []) => state,
themeColours,
explainedVariable
}),
// cross-cutting concerns because here `state` is the whole state tree
(state, action) => {
if (action.type == STEP_ACTION || action.type == START_CONVERSATION) {
let {newState, name} = action
// une étape vient d'être validée : on va changer son état
let newSteps = R.pipe(
R.map(step => step.name == name ? {...step, state: newState} : step),
R.reject(R.whereEq({theEnd: true}))
)(state.steps)
window.situationGate = situationGate(state)
// on calcule la prochaine étape, à ajouter sur la pile
let
analysedSituation = analyseSituation(
situationGate(state)
),
y = console.log('analysedSituation', analysedSituation),
missingVariables = R.pipe(
R.map( ({name, derived: {missingVariables}}) =>
(missingVariables || []).map(mv => [mv, name])
),
R.unnest,
//groupBy but remove mv from value, it's now in the key
R.reduce( (memo, [mv, dependencyOf]) => ({...memo, [mv]: [...(memo[mv] || []), dependencyOf] }), {})
2017-01-23 18:06:46 +00:00
)(analysedSituation),
missingVariablesList = R.keys(missingVariables),
groups = R.groupBy(
parentName
)(missingVariablesList),
// on va maintenant construire la liste des composants React correspondant aux questions pour obtenir les variables manquantes
yyoo = R.pipe(
R.mapObjIndexed((variables, group) =>
R.pipe(
findGroup,
R.cond([
// Pas de groupe trouvé : ce sont des variables individuelles
[R.isNil, () => variables.map(dottedName => {
let rule = findRuleByDottedName(dottedName)
return Object.assign(constructStepMeta(rule),
rule.format == 'nombre positif' ||
rule.format == 'période' ?
{
component: Input,
defaultValue: 1,
valueType: euro,
attributes: {
inputMode: 'numeric',
placeholder: 'votre réponse'
}
} : {
component: Question,
choices: [
{value: 'non', label: 'Non'},
{value: 'oui', label: 'Oui'}
],
defaultValue: 'Non',
}
)})],
[R.T, group =>
Object.assign(
constructStepMeta(group),
{
component: Question,
choices:
group['une possibilité'].concat(
[{value: 'aucun', label: 'Aucun'}]
),
2017-02-09 12:58:12 +00:00
// defaultValue: 'Non',
}
)]
])
)(group)
),
R.values,
R.unnest
)(groups)
2017-01-23 18:06:46 +00:00
// la question doit pouvoir stocker tout ça dans la situation (redux-form) correctement
return {...state, steps: yyoo, analysedSituation}
2017-01-23 18:06:46 +00:00
// return {...state, steps: [...newSteps, stepData], analysedSituation}
// ... do stuff
} else {
return state
}
}
)