-
Notifications
You must be signed in to change notification settings - Fork 2
/
modals.ts
89 lines (86 loc) · 2.68 KB
/
modals.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { QuestionsModalOptions } from "./options";
export const askPreExposureQuestions: QuestionsModalOptions = {
title: "¿Cómo te encuentras?",
body: {
iconCode: "\ue94c",
text: "Responde con sinceridad a las preguntas que te planteamos",
},
questions: [
{
title: "De 0 (ninguno) a 10 (máximo), ¿cómo puntuarías tu nivel de ansiedad en este momento?",
type: "range",
from: 0,
to: 10,
},
{
title: "De 0 (ninguna) a 10 (mucha), ¿cómo puntuarías tu capacidad para tolerar la emoción que sientes ahora?",
type: "range",
from: 0,
to: 10,
},
{
title: "¿Qué piensas que ocurrirá cuando llegues al lugar de exposición?",
type: "free-text",
hint: "Pienso que...",
},
],
completionScreen: {
body: {
iconCode: "\ue815",
header: "¡Adelante!",
message: "Dirígete ahora al área de exposición",
},
confirmButton: "Volver a la app",
},
};
export const askExposureQuestions: QuestionsModalOptions = {
title: "¿Cómo te encuentras?",
body: {
iconCode: "\ue94c",
text: "Responde con sinceridad a las preguntas que te planteamos",
},
questions: [
{
title: "De 0 (ninguno) a 10 (máximo), ¿cómo puntuarías tu nivel de ansiedad en este momento?",
type: "range",
from: 0,
to: 10,
},
{
title: "De 0 (ninguna) a 10 (mucha), ¿cómo puntuarías tu capacidad para tolerar la emoción que sientes ahora?",
type: "range",
from: 0,
to: 10,
},
],
};
export const askPostExposureQuestions: QuestionsModalOptions = {
title: "¿Cómo te encuentras?",
body: {
iconCode: "\ue94c",
text: "Responde con sinceridad a las preguntas que te planteamos",
},
questions: [
{
title: "¿Se ha cumplido lo que pensabas que iba a ocurrir antes de la exposición",
type: "binary",
left: "Sí",
right: "No",
},
{
title: "¿Has conseguido prestar atención a todo lo que estaba sucediendo alrededor de la situación de exposición?",
type: "binary",
left: "Sí",
right: "No",
},
],
completionScreen: {
body: {
iconCode: "\ue815",
header: "¡Buen trabajo!",
message:
"Sigue practicando, de esta forma tolerarás mejor esta situación",
},
confirmButton: "Volver a la app",
},
};