-
Notifications
You must be signed in to change notification settings - Fork 1
/
modals.ts
55 lines (53 loc) · 1.59 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
import { FeedbackModalOptions } from "./options";
export const askCannotExposeFeedback: FeedbackModalOptions = {
title: "¿No puedes exponerte ahora?",
feedbackScreen: {
body: {
emoji: "👋",
text:
"Te esperamos en otro momento. Recuerda la importancia de exponerse",
},
question: "¿Podrías indicar por qué no harás una exposición?",
options: [
{
type: "predefined",
answer: "No dispongo de tiempo",
},
{
type: "predefined",
answer: "Estoy de paso",
},
{
type: "free-text",
hint: "Otro",
helpText: "Tu terapeuta podrá leer este mensaje",
},
],
},
};
export const askWantsToLeaveFeedback: FeedbackModalOptions = {
title: "En otro momento entonces",
feedbackScreen: {
body: {
emoji: "👋",
text:
"Recuerda la importancia de exponerte de forma regular. Te esperamos pronto",
},
question: "¿Podrías indicarme el motivo de tu salida?",
options: [
{
type: "predefined",
answer: "Mi nivel de ansiedad no baja",
},
{
type: "predefined",
answer: "No dispongo de más tiempo",
},
{
type: "free-text",
hint: "Otro",
helpText: "Tu terapeuta podrá leer este mensaje",
},
],
},
};