From 54aabd7be2dfb4d8b6b2a183f3b73e556919e420 Mon Sep 17 00:00:00 2001 From: bvn13 Date: Fri, 16 Feb 2024 23:45:56 +0300 Subject: [PATCH] added results info --- docs/q/agile-compass.json | 3 ++- docs/q/beck-depression.json | 3 ++- survey/src/components/survey/Survey.tsx | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/q/agile-compass.json b/docs/q/agile-compass.json index 9599422..ab37736 100644 --- a/docs/q/agile-compass.json +++ b/docs/q/agile-compass.json @@ -291,5 +291,6 @@ } ] } - ] + ], + "resultsInfo": "

личная сфера— если результат ≤ 8, то это говорит о:

социальная сфера — если результат ≤ 8, то это говорит о:

корпоративная сфера — если результат ≤ 8, то это говорит о:

" } \ No newline at end of file diff --git a/docs/q/beck-depression.json b/docs/q/beck-depression.json index 9f4f9b2..889b434 100644 --- a/docs/q/beck-depression.json +++ b/docs/q/beck-depression.json @@ -489,5 +489,6 @@ } ] } - ] + ], + "resultsInfo": "В зависимости от того, сколько баллов вы набрали, можно предположить следующее.

0–13 — депрессивных симптомов нет. С вашим психическим здоровьем всё в порядке.
14–19 — вероятна лёгкая депрессия (субдепрессия).
20–28 — умеренная депрессия.
29–63 — тяжёлая депрессия. Состояние тем сложнее, чем больше количество баллов." } \ No newline at end of file diff --git a/survey/src/components/survey/Survey.tsx b/survey/src/components/survey/Survey.tsx index e488858..6f4ada9 100644 --- a/survey/src/components/survey/Survey.tsx +++ b/survey/src/components/survey/Survey.tsx @@ -6,6 +6,7 @@ import {Box, Button, Paper, Step, StepContent, StepLabel, Stepper, Typography} f import {store} from "../../store/store"; import {addAnswer, setContents} from "../../store/actions/data"; import {ResultByGroup} from "../../store/initialState"; +import If from "../utils/If"; interface Props { survey: SurveyDto | undefined @@ -140,6 +141,7 @@ const Survey: React.FC = ({survey}) => { )} +