@deina-labs/deina-core 1.1.4 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/answer-confirmations.d.ts.map +1 -1
- package/dist/answer-confirmations.js +2 -12
- package/dist/answer-confirmations.js.map +1 -1
- package/dist/classify.d.ts +1 -1
- package/dist/classify.d.ts.map +1 -1
- package/dist/classify.js +10 -58
- package/dist/classify.js.map +1 -1
- package/dist/fun-facts.d.ts.map +1 -1
- package/dist/fun-facts.js +0 -1
- package/dist/fun-facts.js.map +1 -1
- package/dist/quiz-questions.d.ts +4 -4
- package/dist/quiz-questions.d.ts.map +1 -1
- package/dist/quiz-questions.js +159 -175
- package/dist/quiz-questions.js.map +1 -1
- package/dist/section-hooks.d.ts.map +1 -1
- package/dist/section-hooks.js +1 -33
- package/dist/section-hooks.js.map +1 -1
- package/package.json +1 -1
- package/src/answer-confirmations.ts +2 -22
- package/src/classify.ts +10 -62
- package/src/fun-facts.ts +0 -1
- package/src/quiz-questions.ts +165 -196
- package/src/section-hooks.ts +1 -34
package/dist/quiz-questions.js
CHANGED
|
@@ -3,344 +3,338 @@ export const STANDARDS_QUALITIES = [
|
|
|
3
3
|
{
|
|
4
4
|
key: 'physicalAttraction',
|
|
5
5
|
label: 'Physical Attraction',
|
|
6
|
-
description: '
|
|
6
|
+
description: 'How much does physical attraction control whether you give someone a real chance?',
|
|
7
7
|
scaleMinLabel: 'I give anyone a shot',
|
|
8
|
-
scaleMaxLabel: 'No attraction, no chance'
|
|
8
|
+
scaleMaxLabel: 'No attraction, no chance'
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
key: 'emotionalStability',
|
|
12
12
|
label: 'Emotional Stability',
|
|
13
|
-
description: '
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
description: 'Do you need him to stay calm when things get tense?',
|
|
14
|
+
type: 'options',
|
|
15
|
+
options: [
|
|
16
|
+
'Yes, always',
|
|
17
|
+
'It depends on the situation',
|
|
18
|
+
'No, I can handle it',
|
|
19
|
+
],
|
|
16
20
|
},
|
|
17
21
|
{
|
|
18
22
|
key: 'emotionalAvailability',
|
|
19
23
|
label: 'Emotional Availability',
|
|
20
|
-
description: '
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
description: 'How much does inconsistent communication mess with your head — or have you trained yourself not to care?',
|
|
28
|
-
scaleMinLabel: 'Doesn\'t bother me',
|
|
29
|
-
scaleMaxLabel: 'It drives me crazy',
|
|
24
|
+
description: 'Do you need him to be emotionally open with you?',
|
|
25
|
+
type: 'options',
|
|
26
|
+
options: [
|
|
27
|
+
'Yes, completely',
|
|
28
|
+
'Somewhat',
|
|
29
|
+
'No, I don\'t need that',
|
|
30
|
+
],
|
|
30
31
|
},
|
|
31
32
|
{
|
|
32
33
|
key: 'initiativeAndEffort',
|
|
33
34
|
label: 'Initiative & Effort',
|
|
34
|
-
description: '
|
|
35
|
-
scaleMinLabel: 'I\'ll do the work',
|
|
36
|
-
scaleMaxLabel: 'He needs to step up',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
key: 'followThrough',
|
|
40
|
-
label: 'Follow-Through',
|
|
41
|
-
description: 'He said he\'d call. He didn\'t. What do you actually do?',
|
|
35
|
+
description: 'Do you need him to take the lead?',
|
|
42
36
|
type: 'options',
|
|
43
37
|
options: [
|
|
44
|
-
'
|
|
45
|
-
'
|
|
46
|
-
'I
|
|
47
|
-
'I start pulling back without telling him why',
|
|
38
|
+
'Yes, always',
|
|
39
|
+
'Sometimes',
|
|
40
|
+
'No, I\'m fine leading',
|
|
48
41
|
],
|
|
49
42
|
},
|
|
50
43
|
{
|
|
51
44
|
key: 'financialResponsibility',
|
|
52
45
|
label: 'Financial Responsibility',
|
|
53
|
-
description: '
|
|
54
|
-
|
|
55
|
-
|
|
46
|
+
description: 'Does his money situation matter to you?',
|
|
47
|
+
type: 'options',
|
|
48
|
+
options: [
|
|
49
|
+
'Yes, it\'s a deal breaker',
|
|
50
|
+
'It matters but it\'s not everything',
|
|
51
|
+
'No, it doesn\'t matter',
|
|
52
|
+
],
|
|
56
53
|
},
|
|
57
54
|
{
|
|
58
55
|
key: 'lifestyleAlignment',
|
|
59
56
|
label: 'Lifestyle Alignment',
|
|
60
|
-
description: '
|
|
61
|
-
|
|
62
|
-
|
|
57
|
+
description: 'Do you need your lives to fit together?',
|
|
58
|
+
type: 'options',
|
|
59
|
+
options: [
|
|
60
|
+
'Yes, completely',
|
|
61
|
+
'On the big things',
|
|
62
|
+
'No, differences are fine',
|
|
63
|
+
],
|
|
63
64
|
},
|
|
64
65
|
{
|
|
65
66
|
key: 'longTermGoals',
|
|
66
67
|
label: 'Long-Term Goals',
|
|
67
|
-
description:
|
|
68
|
+
description: "You're months in and he still hasn't mentioned the future. What do you do?",
|
|
68
69
|
type: 'options',
|
|
69
70
|
options: [
|
|
70
|
-
'I bring it up
|
|
71
|
+
'I bring it up',
|
|
71
72
|
'I drop hints and hope he gets it',
|
|
72
73
|
'I wait for him to bring it up',
|
|
73
|
-
|
|
74
|
-
]
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
key: 'weeklyConsistency',
|
|
78
|
-
label: 'Weekly Consistency',
|
|
79
|
-
description: 'How much does it bother you when you go a whole week without seeing him — or have you convinced yourself that\'s normal?',
|
|
80
|
-
scaleMinLabel: 'Space is healthy',
|
|
81
|
-
scaleMaxLabel: 'I need to see him',
|
|
74
|
+
"I avoid it because I'm scared of what he'll say"
|
|
75
|
+
]
|
|
82
76
|
},
|
|
83
77
|
];
|
|
84
78
|
export const TIMELINE_QUESTIONS = [
|
|
85
79
|
{
|
|
86
80
|
key: 'firstDateWindow',
|
|
87
|
-
question: 'How long are you willing to text
|
|
88
|
-
options: [
|
|
81
|
+
question: 'How long are you willing to text before you need a real date?',
|
|
82
|
+
options: [
|
|
83
|
+
'3–5 days',
|
|
84
|
+
'1 week',
|
|
85
|
+
'2 weeks',
|
|
86
|
+
'3–4 weeks',
|
|
87
|
+
"I don't push for it"
|
|
88
|
+
]
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
91
|
key: 'secondDateWindow',
|
|
92
92
|
question: 'After a first date that went well, how long can you wait before the silence starts getting to you?',
|
|
93
|
-
options: ['3–5 days', '1 week', '2 weeks', 'I try not to think about it']
|
|
93
|
+
options: ['3–5 days', '1 week', '2 weeks', 'I try not to think about it']
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
key: 'preFirstDatePreferences',
|
|
97
|
-
question: 'Before meeting him in person, what do you actually need to feel safe
|
|
98
|
-
options: [
|
|
99
|
-
|
|
97
|
+
question: 'Before meeting him in person, what do you actually need to feel safe?',
|
|
98
|
+
options: [
|
|
99
|
+
'A call or FaceTime',
|
|
100
|
+
'A clear plan',
|
|
101
|
+
'Consistent texting',
|
|
102
|
+
"I don't need anything"
|
|
103
|
+
],
|
|
104
|
+
multiSelect: true
|
|
100
105
|
},
|
|
101
106
|
{
|
|
102
107
|
key: 'communicationCadence',
|
|
103
108
|
question: 'How often do you need to hear from someone before the anxiety kicks in?',
|
|
104
|
-
options: ['Daily', 'Every other day', '2–3 times per week', 'Only when there\'s a plan'],
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
key: 'exclusivityExpectation',
|
|
108
|
-
question: 'How long can you date someone without knowing where you stand — before it starts eating at you?',
|
|
109
|
-
options: ['3–5 dates', '6–8 dates', '2 months', '3 months', 'I avoid bringing it up'],
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
key: 'intentionClarity',
|
|
113
|
-
question: 'How long do you let someone keep things vague before you demand to know what they actually want?',
|
|
114
109
|
options: [
|
|
115
|
-
'
|
|
116
|
-
'
|
|
117
|
-
'
|
|
118
|
-
'
|
|
119
|
-
|
|
120
|
-
],
|
|
110
|
+
'Daily',
|
|
111
|
+
'Every other day',
|
|
112
|
+
'2–3 times per week',
|
|
113
|
+
"Only when there's a plan"
|
|
114
|
+
]
|
|
121
115
|
},
|
|
122
116
|
{
|
|
123
117
|
key: 'meetFriendsFamily',
|
|
124
|
-
question: 'How long into dating before you need to exist in his real life
|
|
118
|
+
question: 'How long into dating before you need to exist in his real life?',
|
|
125
119
|
options: [
|
|
126
120
|
'1–2 months',
|
|
127
121
|
'3 months',
|
|
128
122
|
'6 months',
|
|
129
123
|
'Only after exclusivity',
|
|
130
|
-
|
|
131
|
-
]
|
|
124
|
+
"I don't push for it"
|
|
125
|
+
]
|
|
132
126
|
},
|
|
133
127
|
{
|
|
134
128
|
key: 'progressionPace',
|
|
135
|
-
question: 'What pace do you actually move at
|
|
129
|
+
question: 'What pace do you actually move at when dating?',
|
|
136
130
|
options: [
|
|
137
|
-
|
|
131
|
+
"I move fast when I'm excited",
|
|
138
132
|
'I try to stay structured',
|
|
139
133
|
'I let things unfold slowly',
|
|
140
|
-
'I go with whatever he sets'
|
|
141
|
-
]
|
|
142
|
-
}
|
|
134
|
+
'I go with whatever he sets'
|
|
135
|
+
]
|
|
136
|
+
}
|
|
143
137
|
];
|
|
144
138
|
// --- Mindset ---
|
|
145
139
|
export const MINDSET_QUESTIONS = [
|
|
146
140
|
{
|
|
147
141
|
key: 'standardsConfidence',
|
|
148
|
-
question: 'When you really like someone, do your standards hold
|
|
142
|
+
question: 'When you really like someone, do your standards hold?',
|
|
149
143
|
type: 'scale',
|
|
150
144
|
scaleMinLabel: 'I start doubting what I deserve',
|
|
151
|
-
scaleMaxLabel:
|
|
145
|
+
scaleMaxLabel: "My standards don't move"
|
|
152
146
|
},
|
|
153
147
|
{
|
|
154
148
|
key: 'effortInterpretation',
|
|
155
|
-
question:
|
|
149
|
+
question: "He used to text you back fast. Now he takes hours. What's your first instinct?",
|
|
156
150
|
type: 'options',
|
|
157
151
|
options: [
|
|
158
152
|
'I probably did something wrong',
|
|
159
|
-
|
|
153
|
+
"He's just busy, I shouldn't overthink it",
|
|
160
154
|
'I notice it and start watching more closely',
|
|
161
|
-
'I match his energy and pull back'
|
|
162
|
-
]
|
|
155
|
+
'I match his energy and pull back'
|
|
156
|
+
]
|
|
163
157
|
},
|
|
164
158
|
{
|
|
165
159
|
key: 'comparativeAttraction',
|
|
166
|
-
question:
|
|
160
|
+
question: "When he's more attractive than your usual type, how often do you feel like you need to try harder to keep him?",
|
|
167
161
|
type: 'scale',
|
|
168
162
|
scaleMinLabel: 'Almost always',
|
|
169
|
-
scaleMaxLabel: 'Never — I know my worth'
|
|
163
|
+
scaleMaxLabel: 'Never — I know my worth'
|
|
170
164
|
},
|
|
171
165
|
{
|
|
172
166
|
key: 'behavioralAdjustment',
|
|
173
167
|
question: 'How often do you become a different version of yourself to keep someone interested?',
|
|
174
168
|
type: 'scale',
|
|
175
|
-
scaleMinLabel:
|
|
176
|
-
scaleMaxLabel:
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
key: 'scarcityMindset',
|
|
180
|
-
question: 'When you finally meet someone who feels right, how much pressure do you put on yourself not to lose them?',
|
|
181
|
-
type: 'scale',
|
|
182
|
-
scaleMinLabel: 'A lot — good ones are rare',
|
|
183
|
-
scaleMaxLabel: 'None — the right one won\'t leave',
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
key: 'ambiguityTolerance',
|
|
187
|
-
question: 'He\'s been dry all day. No explanation. What happens in your head?',
|
|
188
|
-
type: 'options',
|
|
189
|
-
options: [
|
|
190
|
-
'I replay everything trying to figure out what I did',
|
|
191
|
-
'I convince myself he\'s losing interest and start spiraling',
|
|
192
|
-
'I notice it but wait to see if it\'s a pattern',
|
|
193
|
-
'I genuinely don\'t think about it',
|
|
194
|
-
],
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
key: 'statusComparison',
|
|
198
|
-
question: 'When he\'s more successful, better looking, or more popular than you — do you feel like you need to earn your place?',
|
|
199
|
-
type: 'scale',
|
|
200
|
-
scaleMinLabel: 'Yes — I feel the pressure',
|
|
201
|
-
scaleMaxLabel: 'No — I belong wherever I am',
|
|
169
|
+
scaleMinLabel: "More than I'd like to admit",
|
|
170
|
+
scaleMaxLabel: "I don't change for anyone"
|
|
202
171
|
},
|
|
203
172
|
{
|
|
204
173
|
key: 'emotionalInvestmentSpeed',
|
|
205
174
|
question: 'You had one amazing date. How fast are you already imagining a future with him?',
|
|
206
175
|
type: 'options',
|
|
207
176
|
options: [
|
|
208
|
-
'Immediately
|
|
209
|
-
'Pretty fast
|
|
177
|
+
'Immediately',
|
|
178
|
+
'Pretty fast',
|
|
210
179
|
'I enjoy it but stay grounded',
|
|
211
|
-
|
|
212
|
-
]
|
|
180
|
+
"I don't let myself go there yet"
|
|
181
|
+
]
|
|
213
182
|
},
|
|
214
183
|
{
|
|
215
184
|
key: 'fearOfLosingConnection',
|
|
216
|
-
question:
|
|
185
|
+
question: "He's pulling away. You can feel it. How strong is the urge to chase?",
|
|
217
186
|
type: 'scale',
|
|
218
|
-
scaleMinLabel:
|
|
219
|
-
scaleMaxLabel: 'I let him go without a fight'
|
|
187
|
+
scaleMinLabel: "I'd do almost anything to fix it",
|
|
188
|
+
scaleMaxLabel: 'I let him go without a fight'
|
|
220
189
|
},
|
|
221
190
|
{
|
|
222
191
|
key: 'fulfillmentOutsideDating',
|
|
223
|
-
question: 'When you\'re single and no one is texting you
|
|
192
|
+
question: 'When you\'re single and no one is texting you, how does your life feel?',
|
|
224
193
|
type: 'scale',
|
|
225
194
|
scaleMinLabel: 'Like something important is missing',
|
|
226
|
-
scaleMaxLabel: 'Full and complete on its own'
|
|
195
|
+
scaleMaxLabel: 'Full and complete on its own'
|
|
227
196
|
},
|
|
228
197
|
{
|
|
229
198
|
key: 'validationSensitivity',
|
|
230
|
-
question: 'When someone you like suddenly shows heavy interest
|
|
199
|
+
question: 'When someone you like suddenly shows heavy interest, does it make you like them more?',
|
|
231
200
|
type: 'scale',
|
|
232
201
|
scaleMinLabel: 'It hooks me instantly',
|
|
233
|
-
scaleMaxLabel:
|
|
202
|
+
scaleMaxLabel: "It doesn't change how I feel"
|
|
234
203
|
},
|
|
235
204
|
{
|
|
236
205
|
key: 'relationshipRole',
|
|
237
206
|
question: 'If you got into a relationship tomorrow, what would it really be for?',
|
|
238
207
|
type: 'options',
|
|
239
208
|
options: [
|
|
240
|
-
|
|
241
|
-
|
|
209
|
+
"It would add to a life that's already good",
|
|
210
|
+
"It would give me companionship I'm missing",
|
|
242
211
|
'It would fill a void I feel right now',
|
|
243
|
-
'It would finally make me feel chosen'
|
|
244
|
-
]
|
|
245
|
-
}
|
|
212
|
+
'It would finally make me feel chosen'
|
|
213
|
+
]
|
|
214
|
+
}
|
|
246
215
|
];
|
|
247
216
|
export const ENFORCEMENT_QUESTIONS = [
|
|
248
217
|
{
|
|
249
218
|
key: 'cancelDowngrade',
|
|
250
219
|
question: 'He cancels on you last minute. Again. How many times do you let it slide before you actually do something about it?',
|
|
251
|
-
options: [
|
|
220
|
+
options: [
|
|
221
|
+
'Once',
|
|
222
|
+
'Twice',
|
|
223
|
+
'3+ times before I react',
|
|
224
|
+
"Only when it's clearly a pattern",
|
|
225
|
+
'I usually let it go'
|
|
226
|
+
]
|
|
252
227
|
},
|
|
253
228
|
{
|
|
254
229
|
key: 'noFollowUpResponse',
|
|
255
|
-
question: 'Great date. Then silence for two days. What do you actually do
|
|
230
|
+
question: 'Great date. Then silence for two days. What do you actually do?',
|
|
256
231
|
options: [
|
|
257
232
|
'I lose interest on the spot',
|
|
258
233
|
'I mentally mark it against him',
|
|
259
234
|
'I text him and ask directly',
|
|
260
235
|
'I wait and hope he reaches out',
|
|
261
|
-
|
|
262
|
-
]
|
|
236
|
+
"I pretend I didn't notice"
|
|
237
|
+
]
|
|
263
238
|
},
|
|
264
239
|
{
|
|
265
240
|
key: 'effortDecreaseDowngrade',
|
|
266
|
-
question:
|
|
267
|
-
options: [
|
|
241
|
+
question: "His effort drops after the first few dates. The texts get shorter. The plans stop. How long do you pretend it's fine?",
|
|
242
|
+
options: [
|
|
243
|
+
'I catch it immediately',
|
|
244
|
+
'I give it one more chance',
|
|
245
|
+
'I wait for a clear pattern',
|
|
246
|
+
"I usually don't pull back"
|
|
247
|
+
]
|
|
268
248
|
},
|
|
269
249
|
{
|
|
270
250
|
key: 'exclusivityNotDiscussed',
|
|
271
|
-
question:
|
|
272
|
-
options: [
|
|
251
|
+
question: "You've been dating for a while and he still hasn't brought up exclusivity. What do you actually do?",
|
|
252
|
+
options: [
|
|
253
|
+
'I walk away',
|
|
254
|
+
'I bring it up myself',
|
|
255
|
+
'I give him more time',
|
|
256
|
+
'I keep going and hope it comes up'
|
|
257
|
+
]
|
|
273
258
|
},
|
|
274
259
|
{
|
|
275
260
|
key: 'redFlagSpeed',
|
|
276
261
|
question: 'You see a red flag early. Something feels off. How long do you ignore it because everything else feels good?',
|
|
277
|
-
options: [
|
|
262
|
+
options: [
|
|
263
|
+
'I act immediately',
|
|
264
|
+
'I wait to see it again before deciding',
|
|
265
|
+
'I need a pattern before I act',
|
|
266
|
+
"Only if it's something serious"
|
|
267
|
+
]
|
|
278
268
|
},
|
|
279
269
|
{
|
|
280
270
|
key: 'disappointmentResponse',
|
|
281
|
-
question:
|
|
282
|
-
options: [
|
|
283
|
-
|
|
271
|
+
question: "He disappoints you. Not a dealbreaker, but it stings. What's your real reaction?",
|
|
272
|
+
options: [
|
|
273
|
+
'I tell him directly',
|
|
274
|
+
'I go quiet and pull back',
|
|
275
|
+
'I lower my expectations',
|
|
276
|
+
'I try harder to make it work',
|
|
277
|
+
'I overthink it for days'
|
|
278
|
+
]
|
|
279
|
+
}
|
|
284
280
|
];
|
|
285
281
|
export const TRADEOFF_QUESTIONS = [
|
|
286
282
|
{
|
|
287
283
|
key: 'consistencyVsChemistry',
|
|
288
|
-
question: 'You can only pick one. Which one wins
|
|
284
|
+
question: 'You can only pick one. Which one wins every time?',
|
|
289
285
|
options: [
|
|
290
|
-
|
|
291
|
-
'Consistent effort, even if the spark is slow'
|
|
292
|
-
]
|
|
286
|
+
"Intense chemistry, even if he's inconsistent",
|
|
287
|
+
'Consistent effort, even if the spark is slow'
|
|
288
|
+
]
|
|
293
289
|
},
|
|
294
290
|
{
|
|
295
291
|
key: 'stabilityVsIntensity',
|
|
296
|
-
question: 'Which one do you actually choose
|
|
297
|
-
options: ['The calm, stable one', 'The passionate, intense one']
|
|
292
|
+
question: 'Which one do you actually choose?',
|
|
293
|
+
options: ['The calm, stable one', 'The passionate, intense one']
|
|
298
294
|
},
|
|
299
295
|
{
|
|
300
296
|
key: 'financialStatusVsCharacter',
|
|
301
|
-
question: '
|
|
297
|
+
question: 'Which one would you actually pick?',
|
|
302
298
|
options: [
|
|
303
299
|
'Makes great money but spends recklessly',
|
|
304
|
-
'Makes less but is financially responsible'
|
|
305
|
-
]
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
key: 'speedVsCertainty',
|
|
309
|
-
question: 'When something new starts, which version of you shows up?',
|
|
310
|
-
options: [
|
|
311
|
-
'I dive in fast when the energy is right',
|
|
312
|
-
'I slow down and evaluate before committing',
|
|
313
|
-
],
|
|
300
|
+
'Makes less but is financially responsible'
|
|
301
|
+
]
|
|
314
302
|
},
|
|
315
303
|
{
|
|
316
304
|
key: 'independenceVsIntegration',
|
|
317
305
|
question: 'In a relationship, which one actually sounds like you?',
|
|
318
|
-
options: [
|
|
306
|
+
options: [
|
|
307
|
+
'I need my own space and identity',
|
|
308
|
+
'I want our lives to merge quickly'
|
|
309
|
+
]
|
|
319
310
|
},
|
|
320
311
|
{
|
|
321
312
|
key: 'ambitionVsPresence',
|
|
322
313
|
question: 'Which absence would hurt more?',
|
|
323
|
-
options: [
|
|
314
|
+
options: [
|
|
315
|
+
"He's always around but has no ambition",
|
|
316
|
+
"He's ambitious but never available"
|
|
317
|
+
]
|
|
324
318
|
},
|
|
325
319
|
{
|
|
326
320
|
key: 'toleratedFlaw',
|
|
327
|
-
question: 'Which of these have you let slide the longest
|
|
321
|
+
question: 'Which of these have you let slide the longest?',
|
|
328
322
|
options: [
|
|
329
323
|
'Bad at texting back',
|
|
330
|
-
|
|
324
|
+
"Won't commit at your pace",
|
|
331
325
|
'Always busy with work',
|
|
332
|
-
'Emotionally shut down'
|
|
333
|
-
]
|
|
326
|
+
'Emotionally shut down'
|
|
327
|
+
]
|
|
334
328
|
},
|
|
335
329
|
{
|
|
336
330
|
key: 'attractionKiller',
|
|
337
|
-
question: 'Which one makes you lose interest the fastest
|
|
331
|
+
question: 'Which one makes you lose interest the fastest?',
|
|
338
332
|
options: [
|
|
339
333
|
'No drive or initiative',
|
|
340
334
|
'Constant insecurity',
|
|
341
335
|
'Hot and cold behavior',
|
|
342
|
-
'Refuses to talk about where things are going'
|
|
343
|
-
]
|
|
336
|
+
'Refuses to talk about where things are going'
|
|
337
|
+
]
|
|
344
338
|
},
|
|
345
339
|
{
|
|
346
340
|
key: 'pastPattern',
|
|
@@ -349,18 +343,8 @@ export const TRADEOFF_QUESTIONS = [
|
|
|
349
343
|
'I fall for potential instead of proof',
|
|
350
344
|
'I stay way past the expiration date',
|
|
351
345
|
'I leave before giving it a real chance',
|
|
352
|
-
'I give too much too soon'
|
|
353
|
-
]
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
key: 'earlyDatingTendency',
|
|
357
|
-
question: 'When someone new enters the picture, which version of you takes over?',
|
|
358
|
-
options: [
|
|
359
|
-
'I lock in on one person immediately',
|
|
360
|
-
'I keep my options open',
|
|
361
|
-
'I get emotionally attached too fast',
|
|
362
|
-
'I keep a wall up no matter what',
|
|
363
|
-
],
|
|
346
|
+
'I give too much too soon'
|
|
347
|
+
]
|
|
364
348
|
},
|
|
365
349
|
];
|
|
366
350
|
//# sourceMappingURL=quiz-questions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quiz-questions.js","sourceRoot":"","sources":["../src/quiz-questions.ts"],"names":[],"mappings":"AAAA,2BAA2B;
|
|
1
|
+
{"version":3,"file":"quiz-questions.js","sourceRoot":"","sources":["../src/quiz-questions.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"section-hooks.d.ts","sourceRoot":"","sources":["../src/section-hooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAEjJ,KAAK,gBAAgB,GAAG,MAAM,CAAC,eAAe,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;AACxE,KAAK,eAAe,GAAG,MAAM,CAAC,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AAClE,KAAK,cAAc,GAAG,MAAM,CAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AAChE,KAAK,kBAAkB,GAAG,MAAM,CAAC,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AACxE,KAAK,eAAe,GAAG,MAAM,CAAC,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AAElE,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,gBAAgB,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"section-hooks.d.ts","sourceRoot":"","sources":["../src/section-hooks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAEjJ,KAAK,gBAAgB,GAAG,MAAM,CAAC,eAAe,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC;AACxE,KAAK,eAAe,GAAG,MAAM,CAAC,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AAClE,KAAK,cAAc,GAAG,MAAM,CAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AAChE,KAAK,kBAAkB,GAAG,MAAM,CAAC,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AACxE,KAAK,eAAe,GAAG,MAAM,CAAC,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC;AAElE,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,gBAAgB,GAAG,MAAM,CAwClE;AAED,wBAAgB,eAAe,CAAC,OAAO,EAAE,eAAe,GAAG,MAAM,CAqBhE;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,cAAc,GAAG,MAAM,CA+B9D;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,kBAAkB,GAAG,MAAM,CA2BtE;AAED,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,eAAe,GAAG,MAAM,CAqBjE"}
|
package/dist/section-hooks.js
CHANGED
|
@@ -7,11 +7,6 @@ export function getStandardsHook(answers) {
|
|
|
7
7
|
const v = answers[key];
|
|
8
8
|
return typeof v === 'number' && v >= 4;
|
|
9
9
|
};
|
|
10
|
-
// Follow-through option-based
|
|
11
|
-
const ft = answers.followThrough;
|
|
12
|
-
if (ft === 'I let it go — people forget' || ft === 'I notice but don\'t say anything') {
|
|
13
|
-
return 'You just admitted you let people break promises without saying a word. That\'s not patience — that\'s a pattern.';
|
|
14
|
-
}
|
|
15
10
|
// Long-term goals option-based
|
|
16
11
|
const ltg = answers.longTermGoals;
|
|
17
12
|
if (ltg === 'I avoid it because I\'m scared of what he\'ll say') {
|
|
@@ -23,18 +18,9 @@ export function getStandardsHook(answers) {
|
|
|
23
18
|
if (high('physicalAttraction') && low('emotionalStability')) {
|
|
24
19
|
return 'You rated attraction high and emotional stability low. You already know which one keeps winning.';
|
|
25
20
|
}
|
|
26
|
-
if (low('communicationFrequency') && low('initiativeAndEffort')) {
|
|
27
|
-
return 'You rated communication and effort low. You\'ve trained yourself to expect less — and you\'re getting exactly that.';
|
|
28
|
-
}
|
|
29
|
-
if (high('initiativeAndEffort') && low('followThrough')) {
|
|
30
|
-
return 'You want him to lead but you don\'t hold him to his word. That gap is where most of your disappointment lives.';
|
|
31
|
-
}
|
|
32
21
|
if (low('emotionalAvailability')) {
|
|
33
22
|
return 'You rated emotional availability low. You\'ve accepted silence as normal — but that doesn\'t mean it doesn\'t hurt.';
|
|
34
23
|
}
|
|
35
|
-
if (high('weeklyConsistency') && low('communicationFrequency')) {
|
|
36
|
-
return 'You need to see him but you don\'t need to hear from him? Or have you just stopped asking for both?';
|
|
37
|
-
}
|
|
38
24
|
// Generic fallback based on overall pattern
|
|
39
25
|
const numericValues = Object.entries(answers)
|
|
40
26
|
.filter(([, v]) => typeof v === 'number')
|
|
@@ -49,12 +35,6 @@ export function getStandardsHook(answers) {
|
|
|
49
35
|
return 'You know what you want. But knowing has never been your problem, has it?';
|
|
50
36
|
}
|
|
51
37
|
export function getTimelineHook(answers) {
|
|
52
|
-
if (answers.exclusivityExpectation === 'I avoid bringing it up') {
|
|
53
|
-
return 'You won\'t even ask where you stand. That silence isn\'t peace — it\'s fear.';
|
|
54
|
-
}
|
|
55
|
-
if (answers.intentionClarity === 'I wait for them to bring it up') {
|
|
56
|
-
return 'You\'re leaving the biggest decision to someone who hasn\'t earned that power yet.';
|
|
57
|
-
}
|
|
58
38
|
if (answers.progressionPace === 'I go with whatever he sets') {
|
|
59
39
|
return 'You just said you follow his pace. That means you don\'t have one — you have his.';
|
|
60
40
|
}
|
|
@@ -85,13 +65,7 @@ export function getMindsetHook(answers) {
|
|
|
85
65
|
if (answers.effortInterpretation === 'I probably did something wrong') {
|
|
86
66
|
return 'His effort dropped and your first thought was that it\'s your fault. That instinct is protecting him, not you.';
|
|
87
67
|
}
|
|
88
|
-
if (answers.
|
|
89
|
-
return 'You replay conversations looking for what you did wrong. You\'re investigating yourself instead of evaluating him.';
|
|
90
|
-
}
|
|
91
|
-
if (answers.ambiguityTolerance === 'I convince myself he\'s losing interest and start spiraling') {
|
|
92
|
-
return 'One dry day and you\'re already spiraling. That\'s not intuition — that\'s anxiety making decisions for you.';
|
|
93
|
-
}
|
|
94
|
-
if (answers.emotionalInvestmentSpeed === 'Immediately — I can already picture it') {
|
|
68
|
+
if (answers.emotionalInvestmentSpeed === 'Immediately') {
|
|
95
69
|
return 'One date and you\'re already picturing a future. You fall for the idea of someone before you even know who they are.';
|
|
96
70
|
}
|
|
97
71
|
// Scale-based checks (stored as string numbers "1"-"5")
|
|
@@ -152,12 +126,6 @@ export function getTradeOffsHook(answers) {
|
|
|
152
126
|
if (answers.stabilityVsIntensity === 'The passionate, intense one') {
|
|
153
127
|
return 'You\'re drawn to intensity. But intensity without stability isn\'t passion — it\'s chaos that feels familiar.';
|
|
154
128
|
}
|
|
155
|
-
if (answers.earlyDatingTendency === 'I get emotionally attached too fast') {
|
|
156
|
-
return 'You get attached too fast. Which means by the time you see someone clearly, you\'re already too deep to walk away easily.';
|
|
157
|
-
}
|
|
158
|
-
if (answers.earlyDatingTendency === 'I keep a wall up no matter what') {
|
|
159
|
-
return 'You keep a wall up. It protects you — but it also makes sure no one ever gets close enough to actually stay.';
|
|
160
|
-
}
|
|
161
129
|
if (answers.toleratedFlaw === 'Won\'t commit at your pace') {
|
|
162
130
|
return 'The flaw you tolerate the longest is someone who won\'t commit. You already know what that says about you.';
|
|
163
131
|
}
|