@jjlmoya/utils-health 1.1.0
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/package.json +60 -0
- package/src/category/i18n/en.ts +60 -0
- package/src/category/i18n/es.ts +60 -0
- package/src/category/i18n/fr.ts +60 -0
- package/src/category/index.ts +22 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +28 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +36 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/locale_completeness.test.ts +42 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/binauralTuner/bibliography.astro +14 -0
- package/src/tool/binauralTuner/component.astro +687 -0
- package/src/tool/binauralTuner/i18n/en.ts +187 -0
- package/src/tool/binauralTuner/i18n/es.ts +187 -0
- package/src/tool/binauralTuner/i18n/fr.ts +187 -0
- package/src/tool/binauralTuner/index.ts +27 -0
- package/src/tool/binauralTuner/seo.astro +14 -0
- package/src/tool/binauralTuner/ui.ts +18 -0
- package/src/tool/bloodUnitConverter/bibliography.astro +14 -0
- package/src/tool/bloodUnitConverter/component.astro +915 -0
- package/src/tool/bloodUnitConverter/i18n/en.ts +227 -0
- package/src/tool/bloodUnitConverter/i18n/es.ts +250 -0
- package/src/tool/bloodUnitConverter/i18n/fr.ts +218 -0
- package/src/tool/bloodUnitConverter/index.ts +27 -0
- package/src/tool/bloodUnitConverter/seo.astro +14 -0
- package/src/tool/bloodUnitConverter/ui.ts +38 -0
- package/src/tool/bmiCalculator/bibliography.astro +14 -0
- package/src/tool/bmiCalculator/component.astro +415 -0
- package/src/tool/bmiCalculator/i18n/en.ts +217 -0
- package/src/tool/bmiCalculator/i18n/es.ts +221 -0
- package/src/tool/bmiCalculator/i18n/fr.ts +217 -0
- package/src/tool/bmiCalculator/index.ts +27 -0
- package/src/tool/bmiCalculator/seo.astro +14 -0
- package/src/tool/bmiCalculator/ui.ts +21 -0
- package/src/tool/breathingVisualizer/bibliography.astro +14 -0
- package/src/tool/breathingVisualizer/component.astro +636 -0
- package/src/tool/breathingVisualizer/i18n/en.ts +206 -0
- package/src/tool/breathingVisualizer/i18n/es.ts +206 -0
- package/src/tool/breathingVisualizer/i18n/fr.ts +206 -0
- package/src/tool/breathingVisualizer/index.ts +27 -0
- package/src/tool/breathingVisualizer/seo.astro +14 -0
- package/src/tool/breathingVisualizer/ui.ts +31 -0
- package/src/tool/caffeineTracker/bibliography.astro +14 -0
- package/src/tool/caffeineTracker/component.astro +1210 -0
- package/src/tool/caffeineTracker/i18n/en.ts +198 -0
- package/src/tool/caffeineTracker/i18n/es.ts +198 -0
- package/src/tool/caffeineTracker/i18n/fr.ts +198 -0
- package/src/tool/caffeineTracker/index.ts +27 -0
- package/src/tool/caffeineTracker/logic.ts +31 -0
- package/src/tool/caffeineTracker/seo.astro +14 -0
- package/src/tool/caffeineTracker/ui.ts +36 -0
- package/src/tool/daltonismSimulator/bibliography.astro +14 -0
- package/src/tool/daltonismSimulator/component.astro +383 -0
- package/src/tool/daltonismSimulator/i18n/en.ts +188 -0
- package/src/tool/daltonismSimulator/i18n/es.ts +218 -0
- package/src/tool/daltonismSimulator/i18n/fr.ts +168 -0
- package/src/tool/daltonismSimulator/index.ts +27 -0
- package/src/tool/daltonismSimulator/seo.astro +14 -0
- package/src/tool/daltonismSimulator/ui.ts +20 -0
- package/src/tool/digestionStopwatch/bibliography.astro +14 -0
- package/src/tool/digestionStopwatch/component.astro +627 -0
- package/src/tool/digestionStopwatch/i18n/en.ts +173 -0
- package/src/tool/digestionStopwatch/i18n/es.ts +173 -0
- package/src/tool/digestionStopwatch/i18n/fr.ts +173 -0
- package/src/tool/digestionStopwatch/index.ts +27 -0
- package/src/tool/digestionStopwatch/logic.ts +63 -0
- package/src/tool/digestionStopwatch/seo.astro +14 -0
- package/src/tool/digestionStopwatch/ui.ts +20 -0
- package/src/tool/epworthSleepinessScale/bibliography.astro +14 -0
- package/src/tool/epworthSleepinessScale/component.astro +528 -0
- package/src/tool/epworthSleepinessScale/i18n/en.ts +217 -0
- package/src/tool/epworthSleepinessScale/i18n/es.ts +217 -0
- package/src/tool/epworthSleepinessScale/i18n/fr.ts +217 -0
- package/src/tool/epworthSleepinessScale/index.ts +27 -0
- package/src/tool/epworthSleepinessScale/seo.astro +14 -0
- package/src/tool/epworthSleepinessScale/ui.ts +27 -0
- package/src/tool/hydrationCalculator/bibliography.astro +14 -0
- package/src/tool/hydrationCalculator/component.astro +694 -0
- package/src/tool/hydrationCalculator/i18n/en.ts +217 -0
- package/src/tool/hydrationCalculator/i18n/es.ts +222 -0
- package/src/tool/hydrationCalculator/i18n/fr.ts +199 -0
- package/src/tool/hydrationCalculator/index.ts +27 -0
- package/src/tool/hydrationCalculator/seo.astro +14 -0
- package/src/tool/hydrationCalculator/ui.ts +28 -0
- package/src/tool/pelliRobsonTest/bibliography.astro +14 -0
- package/src/tool/pelliRobsonTest/component.astro +653 -0
- package/src/tool/pelliRobsonTest/i18n/en.ts +205 -0
- package/src/tool/pelliRobsonTest/i18n/es.ts +205 -0
- package/src/tool/pelliRobsonTest/i18n/fr.ts +205 -0
- package/src/tool/pelliRobsonTest/index.ts +27 -0
- package/src/tool/pelliRobsonTest/seo.astro +14 -0
- package/src/tool/pelliRobsonTest/ui.ts +21 -0
- package/src/tool/peripheralVisionTrainer/bibliography.astro +14 -0
- package/src/tool/peripheralVisionTrainer/component.astro +678 -0
- package/src/tool/peripheralVisionTrainer/i18n/en.ts +224 -0
- package/src/tool/peripheralVisionTrainer/i18n/es.ts +224 -0
- package/src/tool/peripheralVisionTrainer/i18n/fr.ts +211 -0
- package/src/tool/peripheralVisionTrainer/index.ts +27 -0
- package/src/tool/peripheralVisionTrainer/seo.astro +14 -0
- package/src/tool/peripheralVisionTrainer/ui.ts +26 -0
- package/src/tool/readingDistanceCalculator/bibliography.astro +14 -0
- package/src/tool/readingDistanceCalculator/component.astro +588 -0
- package/src/tool/readingDistanceCalculator/i18n/en.ts +202 -0
- package/src/tool/readingDistanceCalculator/i18n/es.ts +215 -0
- package/src/tool/readingDistanceCalculator/i18n/fr.ts +193 -0
- package/src/tool/readingDistanceCalculator/index.ts +31 -0
- package/src/tool/readingDistanceCalculator/seo.astro +14 -0
- package/src/tool/readingDistanceCalculator/ui.ts +18 -0
- package/src/tool/screenDecompressionTime/bibliography.astro +14 -0
- package/src/tool/screenDecompressionTime/component.astro +671 -0
- package/src/tool/screenDecompressionTime/i18n/en.ts +225 -0
- package/src/tool/screenDecompressionTime/i18n/es.ts +247 -0
- package/src/tool/screenDecompressionTime/i18n/fr.ts +225 -0
- package/src/tool/screenDecompressionTime/index.ts +27 -0
- package/src/tool/screenDecompressionTime/seo.astro +14 -0
- package/src/tool/screenDecompressionTime/ui.ts +32 -0
- package/src/tool/tinnitusReliever/bibliography.astro +14 -0
- package/src/tool/tinnitusReliever/component.astro +581 -0
- package/src/tool/tinnitusReliever/i18n/en.ts +161 -0
- package/src/tool/tinnitusReliever/i18n/es.ts +161 -0
- package/src/tool/tinnitusReliever/i18n/fr.ts +161 -0
- package/src/tool/tinnitusReliever/index.ts +27 -0
- package/src/tool/tinnitusReliever/seo.astro +14 -0
- package/src/tool/tinnitusReliever/ui.ts +9 -0
- package/src/tool/ubeCalculator/bibliography.astro +14 -0
- package/src/tool/ubeCalculator/component.astro +683 -0
- package/src/tool/ubeCalculator/i18n/en.ts +200 -0
- package/src/tool/ubeCalculator/i18n/es.ts +200 -0
- package/src/tool/ubeCalculator/i18n/fr.ts +196 -0
- package/src/tool/ubeCalculator/index.ts +27 -0
- package/src/tool/ubeCalculator/seo.astro +14 -0
- package/src/tool/ubeCalculator/ui.ts +26 -0
- package/src/tool/waterPurifier/bibliography.astro +14 -0
- package/src/tool/waterPurifier/component.astro +628 -0
- package/src/tool/waterPurifier/i18n/en.ts +167 -0
- package/src/tool/waterPurifier/i18n/es.ts +167 -0
- package/src/tool/waterPurifier/i18n/fr.ts +167 -0
- package/src/tool/waterPurifier/index.ts +27 -0
- package/src/tool/waterPurifier/seo.astro +14 -0
- package/src/tool/waterPurifier/ui.ts +18 -0
- package/src/tools.ts +19 -0
- package/src/types.ts +72 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { EpworthSleepinessScaleUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'epworth-sleepiness-scale-test';
|
|
6
|
+
const title = 'Epworth Sleepiness Scale Test';
|
|
7
|
+
const description =
|
|
8
|
+
'Measure your daytime sleepiness with the Epworth Sleepiness Scale. A clinically validated test to detect possible sleep disorders.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Is the Epworth Scale a definitive diagnostic tool?',
|
|
13
|
+
answer:
|
|
14
|
+
'No, it is a clinical screening tool. It provides a subjective measure of daytime sleepiness, but a medical diagnosis requires additional tests such as polysomnography.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: "What is considered a 'normal' score?",
|
|
18
|
+
answer:
|
|
19
|
+
'A score of up to 10 is considered within normal parameters for healthy adults. From 11 onwards, excessive sleepiness is indicated.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Can daytime sleepiness be dangerous?',
|
|
23
|
+
answer:
|
|
24
|
+
'Yes, excessive sleepiness significantly increases the risk of traffic accidents and serious work errors, and is also linked to cardiovascular problems.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'What is the difference between fatigue and sleepiness?',
|
|
28
|
+
answer:
|
|
29
|
+
'Fatigue is a general lack of energy, while sleepiness is the specific tendency to fall asleep during the day.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Analyze Real Situations',
|
|
36
|
+
text: 'Think about your usual behavior over the past few weeks in the proposed situations.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Rate the Probability',
|
|
40
|
+
text: 'Score each situation from 0 (would never doze) to 3 (high probability of dozing).',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Calculate Your Score',
|
|
44
|
+
text: 'Add up the points from all 8 situations. The system will do this automatically as you select your answers.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Check the Ranges',
|
|
48
|
+
text: 'Compare your final result with the clinical criteria (Normal, Mild, Moderate or Severe).',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'HealthApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent<EpworthSleepinessScaleUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: 'Frequently asked questions about the Epworth Scale',
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Scientific references',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'A new method for measuring daytime sleepiness: the Epworth sleepiness scale (Johns MW, 1991)',
|
|
95
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/1798888/',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'Reliability and factor analysis of the Epworth Sleepiness Scale (Sleep, 1992)',
|
|
99
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/1519015/',
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
ui: {
|
|
105
|
+
sit0: 'Sitting and reading',
|
|
106
|
+
sit1: 'Watching television',
|
|
107
|
+
sit2: 'Sitting inactive in a public place',
|
|
108
|
+
sit3: 'As a passenger in a car for an hour without a break',
|
|
109
|
+
sit4: 'Lying down to rest in the afternoon',
|
|
110
|
+
sit5: 'Sitting and talking to someone',
|
|
111
|
+
sit6: 'Sitting quietly after a lunch without alcohol',
|
|
112
|
+
sit7: 'In a car, stopped for a few minutes in traffic',
|
|
113
|
+
opt0: 'Would never doze',
|
|
114
|
+
opt1: 'Slight chance',
|
|
115
|
+
opt2: 'Moderate chance',
|
|
116
|
+
opt3: 'High chance',
|
|
117
|
+
situationPrefix: 'Situation',
|
|
118
|
+
situationOf: 'of',
|
|
119
|
+
btnPrev: 'Previous',
|
|
120
|
+
scoreOf: 'out of 24',
|
|
121
|
+
badgeNormal: 'Normal',
|
|
122
|
+
descNormal:
|
|
123
|
+
'Your level of daytime sleepiness is normal. There appear to be no signs of respiratory or sleep disorders.',
|
|
124
|
+
badgeMild: 'Mild',
|
|
125
|
+
descMild:
|
|
126
|
+
'You have mild daytime sleepiness. Try to improve your sleep hygiene and observe whether symptoms persist.',
|
|
127
|
+
badgeMod: 'Moderate',
|
|
128
|
+
descMod:
|
|
129
|
+
'Your sleepiness level is significant. It may be affecting your daily performance and deserves a review of your habits.',
|
|
130
|
+
badgeSevere: 'Severe',
|
|
131
|
+
descSevere:
|
|
132
|
+
'You have excessive and severe daytime sleepiness. It is highly recommended that you consult a sleep specialist as soon as possible.',
|
|
133
|
+
btnReset: 'Restart Assessment',
|
|
134
|
+
},
|
|
135
|
+
seo: [
|
|
136
|
+
{
|
|
137
|
+
type: 'summary',
|
|
138
|
+
title: 'Epworth Sleepiness Scale',
|
|
139
|
+
items: [
|
|
140
|
+
'<strong>8 daily situations</strong>: rated from 0 (would never doze) to 3 (high probability).',
|
|
141
|
+
'<strong>Maximum score 24</strong>: clinical ranges Normal, Mild, Moderate and Severe.',
|
|
142
|
+
'<strong>Clinically validated test</strong>: developed by Dr. Murray Johns in 1990.',
|
|
143
|
+
'<strong>Immediate result</strong>: automatic interpretation upon completing all 8 questions.',
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
type: 'title',
|
|
148
|
+
text: 'Comprehensive Guide to the Epworth Sleepiness Scale (ESS)',
|
|
149
|
+
level: 2,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'paragraph',
|
|
153
|
+
html: 'Excessive daytime sleepiness is one of the most significant challenges for contemporary public health. It is not simply a feeling of tiredness, but a physiological propensity to fall asleep at inappropriate times.',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: 'The <strong>Epworth Sleepiness Scale</strong> (ESS) is the most widely used and validated clinical instrument for objectively measuring this symptom. Developed in 1990 by Dr. Murray Johns, it has transformed how sleep specialists assess quality of life and the risk of underlying disease in their patients.',
|
|
158
|
+
},
|
|
159
|
+
{ type: 'title', text: 'Origins and Evolution of Sleep Assessment', level: 2 },
|
|
160
|
+
{
|
|
161
|
+
type: 'paragraph',
|
|
162
|
+
html: 'Before the Epworth scale was created, sleepiness measurement relied largely on subjective sleep diaries or costly tests like the Multiple Sleep Latency Test (MSLT). Dr. Johns identified the need for a quick yet sensitive tool. The brilliance of his approach is that it does not ask whether the subject feels tired, but asks them to rate the <strong>probability of falling asleep in eight real-life situations</strong>.',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'tip',
|
|
166
|
+
title: 'Key Distinction',
|
|
167
|
+
html: 'It is vital to distinguish between <strong>fatigue</strong> (general lack of physical energy) and <strong>sleepiness</strong> (biological need to sleep). The Epworth test focuses exclusively on the latter.',
|
|
168
|
+
},
|
|
169
|
+
{ type: 'title', text: 'The Physiology of Daytime Sleepiness', level: 2 },
|
|
170
|
+
{
|
|
171
|
+
type: 'paragraph',
|
|
172
|
+
html: 'Humans alternate between NREM and REM sleep. Any interruption in these cycles generates an accumulation of <strong>adenosine</strong>, the chemical that acts as an indicator of accumulated sleep pressure. Under normal conditions, overnight rest clears these levels; in subjects with apnoea or insomnia, adenosine persists and forces the brain to seek microsleeps during the day.',
|
|
173
|
+
},
|
|
174
|
+
{ type: 'title', text: 'Interpretation of Clinical Ranges', level: 2 },
|
|
175
|
+
{
|
|
176
|
+
type: 'table',
|
|
177
|
+
headers: ['Score', 'Classification', 'Clinical Implication'],
|
|
178
|
+
rows: [
|
|
179
|
+
['0 — 10', '<strong>Normal</strong>', 'Adequate alertness level for daily life.'],
|
|
180
|
+
['11 — 12', '<strong>Mild Sleepiness</strong>', 'Grey zone suggesting accumulated fatigue or improvable sleep hygiene.'],
|
|
181
|
+
['13 — 15', '<strong>Moderate Sleepiness</strong>', 'Elevated risk of cognitive errors and accidents.'],
|
|
182
|
+
['16 — 24', '<strong>Severe Sleepiness</strong>', 'High probability of serious pathological sleep disorder.'],
|
|
183
|
+
],
|
|
184
|
+
},
|
|
185
|
+
{ type: 'title', text: 'Analysis of the Evaluated Situations', level: 2 },
|
|
186
|
+
{
|
|
187
|
+
type: 'list',
|
|
188
|
+
items: [
|
|
189
|
+
'<strong>Passive Activities:</strong> Sitting and reading or watching television are the scenarios with least resistance to sleep.',
|
|
190
|
+
'<strong>Public Settings:</strong> Falling asleep in a public place indicates an inability to inhibit sleep under social pressure.',
|
|
191
|
+
'<strong>Travel Situations:</strong> Being a car passenger for an hour uses monotony to measure microsleep propensity.',
|
|
192
|
+
'<strong>Social Alert Moments:</strong> Dozing while talking to someone is a sign of extreme clinical alarm.',
|
|
193
|
+
'<strong>Road Safety:</strong> Maximum risk is measured in stopped traffic situations, where alertness is critical.',
|
|
194
|
+
],
|
|
195
|
+
},
|
|
196
|
+
{ type: 'title', text: 'Related Sleep Disorders', level: 2 },
|
|
197
|
+
{
|
|
198
|
+
type: 'paragraph',
|
|
199
|
+
html: 'The most frequent diagnosis associated with high scores is <strong>obstructive sleep apnoea syndrome (OSAS)</strong>, which causes airway collapses that fragment sleep hundreds of times per night. Other disorders include <strong>narcolepsy</strong> (hypocretin deficiency) and <strong>restless legs syndrome</strong>.',
|
|
200
|
+
},
|
|
201
|
+
{ type: 'title', text: 'Strategies to Improve Sleep Hygiene', level: 2 },
|
|
202
|
+
{
|
|
203
|
+
type: 'list',
|
|
204
|
+
items: [
|
|
205
|
+
'<strong>Consistent sleep window:</strong> Waking at the same time every day synchronises the master circadian clock.',
|
|
206
|
+
'<strong>Optimise the environment:</strong> The bedroom should be at around 18°C and in total darkness.',
|
|
207
|
+
'<strong>Block blue light:</strong> Screen exposure before bed suppresses melatonin production.',
|
|
208
|
+
'<strong>Mind stimulants:</strong> Caffeine has an influence window of up to 6 hours; avoid consumption after midday.',
|
|
209
|
+
],
|
|
210
|
+
},
|
|
211
|
+
{ type: 'title', text: 'Conclusions on Neurocognitive Health', level: 2 },
|
|
212
|
+
{
|
|
213
|
+
type: 'paragraph',
|
|
214
|
+
html: 'The Epworth Sleepiness Scale is not just a set of questions, but a <strong>diagnostic window into the efficiency of our rest</strong>. Identifying excessive sleepiness early can prevent fatal accidents and dramatically improve long-term metabolic and emotional health.',
|
|
215
|
+
},
|
|
216
|
+
],
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { EpworthSleepinessScaleUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'test-escala-epworth';
|
|
6
|
+
const title = 'Test de Escala de Epworth';
|
|
7
|
+
const description =
|
|
8
|
+
'Mide tu nivel de cansancio y somnolencia con la Escala de Epworth. Test clínico validado para detectar posibles trastornos del sueño.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: '¿Es la Escala de Epworth una herramienta de diagnóstico definitivo?',
|
|
13
|
+
answer:
|
|
14
|
+
'No, es una herramienta de cribado clínico. Proporciona una medida subjetiva de la somnolencia diurna, pero un diagnóstico médico requiere pruebas adicionales como la polisomnografía.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: "¿Qué se considera una puntuación 'normal'?",
|
|
18
|
+
answer:
|
|
19
|
+
'Una puntuación de hasta 10 se considera dentro de los parámetros normales en adultos sanos. A partir de 11, se habla de somnolencia excesiva.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿Puede la somnolencia diurna ser peligrosa?',
|
|
23
|
+
answer:
|
|
24
|
+
'Sí, la somnolencia excesiva aumenta significativamente el riesgo de accidentes de tráfico y errores laborales graves, además de estar vinculada a problemas cardiovasculares.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Qué diferencia hay entre fatiga y somnolencia?',
|
|
28
|
+
answer:
|
|
29
|
+
'La fatiga es una falta generalizada de energía, mientras que la somnolencia es la tendencia específica a quedarse dormido durante el día.',
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Analiza Situaciones Reales',
|
|
36
|
+
text: 'Piensa en tu comportamiento habitual durante las últimas semanas ante las situaciones propuestas.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Valora la Probabilidad',
|
|
40
|
+
text: 'Puntúa cada situación de 0 (jamás se dormiría) a 3 (alta probabilidad de dormitar).',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Calcula tu Puntuación',
|
|
44
|
+
text: 'Suma los puntos de las 8 situaciones. El sistema lo hará automáticamente al seleccionar tus respuestas.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Verifica los Rangos',
|
|
48
|
+
text: 'Compara tu resultado final con los criterios clínicos (Normal, Leve, Moderado o Grave).',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'HealthApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent<EpworthSleepinessScaleUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: 'Preguntas frecuentes sobre la Escala de Epworth',
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Referencias científicas',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'A new method for measuring daytime sleepiness: the Epworth sleepiness scale (Johns MW, 1991)',
|
|
95
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/1798888/',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'Reliability and factor analysis of the Epworth Sleepiness Scale (Sleep, 1992)',
|
|
99
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/1519015/',
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
ui: {
|
|
105
|
+
sit0: 'Sentado y leyendo',
|
|
106
|
+
sit1: 'Viendo la televisión',
|
|
107
|
+
sit2: 'Sentado e inactivo en un lugar público',
|
|
108
|
+
sit3: 'Como pasajero en un coche una hora seguida',
|
|
109
|
+
sit4: 'Tumbado para descansar a media tarde',
|
|
110
|
+
sit5: 'Sentado y hablando con alguien',
|
|
111
|
+
sit6: 'Sentado después de una comida (sin alcohol)',
|
|
112
|
+
sit7: 'En un coche parado unos minutos por el tráfico',
|
|
113
|
+
opt0: 'Nunca me dormiría',
|
|
114
|
+
opt1: 'Poco probable',
|
|
115
|
+
opt2: 'Probabilidad moderada',
|
|
116
|
+
opt3: 'Alta probabilidad',
|
|
117
|
+
situationPrefix: 'Situación',
|
|
118
|
+
situationOf: 'de',
|
|
119
|
+
btnPrev: 'Anterior',
|
|
120
|
+
scoreOf: 'de 24',
|
|
121
|
+
badgeNormal: 'Normal',
|
|
122
|
+
descNormal:
|
|
123
|
+
'Tu nivel de somnolencia durante el día es normal. No parece haber signos de trastornos respiratorios o del sueño.',
|
|
124
|
+
badgeMild: 'Leve',
|
|
125
|
+
descMild:
|
|
126
|
+
'Presentas una somnolencia diurna leve. Intenta mejorar tu higiene de sueño y observa si los síntomas persisten.',
|
|
127
|
+
badgeMod: 'Moderada',
|
|
128
|
+
descMod:
|
|
129
|
+
'Tu nivel de somnolencia es significativo. Podría estar afectando a tu rendimiento diario y merece una revisión de tus hábitos.',
|
|
130
|
+
badgeSevere: 'Grave',
|
|
131
|
+
descSevere:
|
|
132
|
+
'Posees una somnolencia diurna excesiva y grave. Es altamente recomendable que consultes con un especialista del sueño lo antes posible.',
|
|
133
|
+
btnReset: 'Reiniciar Evaluación',
|
|
134
|
+
},
|
|
135
|
+
seo: [
|
|
136
|
+
{
|
|
137
|
+
type: 'summary',
|
|
138
|
+
title: 'Escala de Somnolencia de Epworth',
|
|
139
|
+
items: [
|
|
140
|
+
'<strong>8 situaciones cotidianas</strong>: evaluadas de 0 (nunca dormitaría) a 3 (alta probabilidad).',
|
|
141
|
+
'<strong>Puntuación máxima 24</strong>: rangos clínicos Normal, Leve, Moderado y Grave.',
|
|
142
|
+
'<strong>Test validado clínicamente</strong>: desarrollado por el Dr. Murray Johns en 1990.',
|
|
143
|
+
'<strong>Resultado inmediato</strong>: interpretación automática al completar las 8 preguntas.',
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
type: 'title',
|
|
148
|
+
text: 'Guía Exhaustiva sobre la Escala de Somnolencia de Epworth (ESS)',
|
|
149
|
+
level: 2,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'paragraph',
|
|
153
|
+
html: 'La somnolencia diurna excesiva representa uno de los desafíos más significativos para la salud pública contemporánea. No se trata simplemente de una sensación de cansancio, sino de una propensión fisiológica a quedar dormido en momentos inapropiados.',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: 'La <strong>Escala de Somnolencia de Epworth</strong> (ESS) es el instrumento clínico más utilizado y validado para medir este síntoma de manera objetiva. Desarrollada en 1990 por el doctor Murray Johns, ha transformado la forma en que los especialistas del sueño evalúan la calidad de vida y el riesgo de enfermedades subyacentes en sus pacientes.',
|
|
158
|
+
},
|
|
159
|
+
{ type: 'title', text: 'Orígenes y Evolución de la Evaluación del Sueño', level: 2 },
|
|
160
|
+
{
|
|
161
|
+
type: 'paragraph',
|
|
162
|
+
html: 'Antes de la creación de la escala de Epworth, la medición de la somnolencia dependía en gran medida de diarios subjetivos o de pruebas costosas como el test de latencias múltiples del sueño (TLMS). El doctor Johns identificó la necesidad de una herramienta rápida pero sensible. La genialidad de su propuesta radica en que no pregunta si el sujeto se siente cansado, sino que le pide que califique la <strong>probabilidad de quedarse dormido en ocho situaciones reales</strong>.',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'tip',
|
|
166
|
+
title: 'Diferencia Clave',
|
|
167
|
+
html: 'Es vital distinguir entre <strong>fatiga</strong> (falta de energía física) y <strong>somnolencia</strong> (necesidad biológica de dormir). El test de Epworth se centra exclusivamente en la segunda.',
|
|
168
|
+
},
|
|
169
|
+
{ type: 'title', text: 'La Fisiología de la Somnolencia Diurna', level: 2 },
|
|
170
|
+
{
|
|
171
|
+
type: 'paragraph',
|
|
172
|
+
html: 'El ser humano alterna entre sueño NREM y sueño REM. Cualquier interrupción en estos ciclos genera una acumulación de <strong>adenosina</strong>, la sustancia química que actúa como indicador de la presión de sueño acumulada. En condiciones normales, el descanso nocturno limpia estos niveles; en sujetos con apnea o insomnio, la adenosina persiste y fuerza al cerebro a buscar microsueños durante el día.',
|
|
173
|
+
},
|
|
174
|
+
{ type: 'title', text: 'Interpretación de los Rangos Clínicos', level: 2 },
|
|
175
|
+
{
|
|
176
|
+
type: 'table',
|
|
177
|
+
headers: ['Puntuación', 'Clasificación', 'Implicación Clínica'],
|
|
178
|
+
rows: [
|
|
179
|
+
['0 — 10', '<strong>Normal</strong>', 'Nivel de alerta adecuado para la vida diaria.'],
|
|
180
|
+
['11 — 12', '<strong>Somnolencia Leve</strong>', 'Zona gris que sugiere fatiga acumulada o higiene de sueño mejorable.'],
|
|
181
|
+
['13 — 15', '<strong>Somnolencia Moderada</strong>', 'Riesgo elevado de errores cognitivos y accidentes.'],
|
|
182
|
+
['16 — 24', '<strong>Somnolencia Grave</strong>', 'Alta probabilidad de trastorno del sueño patológico grave.'],
|
|
183
|
+
],
|
|
184
|
+
},
|
|
185
|
+
{ type: 'title', text: 'Análisis de las Situaciones Evaluadas', level: 2 },
|
|
186
|
+
{
|
|
187
|
+
type: 'list',
|
|
188
|
+
items: [
|
|
189
|
+
'<strong>Actividades Pasivas:</strong> Estar sentado y leyendo o viendo la televisión son los escenarios con menor resistencia al sueño.',
|
|
190
|
+
'<strong>Entornos Públicos:</strong> Quedarse dormido en un lugar público indica una incapacidad de inhibir el sueño ante presiones sociales.',
|
|
191
|
+
'<strong>Situaciones de Viaje:</strong> Ser pasajero en un coche una hora seguida aprovecha la monotonía para medir la propensión al microsueño.',
|
|
192
|
+
'<strong>Momentos de Alerta Social:</strong> Dormitar mientras se habla con alguien es un signo de extrema alarma clínica.',
|
|
193
|
+
'<strong>Seguridad Vial:</strong> El riesgo máximo se mide en situaciones de tráfico detenido, donde la alerta es crítica.',
|
|
194
|
+
],
|
|
195
|
+
},
|
|
196
|
+
{ type: 'title', text: 'Trastornos del Sueño Relacionados', level: 2 },
|
|
197
|
+
{
|
|
198
|
+
type: 'paragraph',
|
|
199
|
+
html: 'El diagnóstico más frecuente asociado a puntuaciones elevadas es el <strong>síndrome de apnea obstructiva del sueño (SAOS)</strong>, que provoca colapsos en las vías respiratorias fragmentando el sueño cientos de veces por noche. Otros trastornos incluyen la <strong>narcolepsia</strong> (deficiencia de hipocretina) y el <strong>síndrome de piernas inquietas</strong>.',
|
|
200
|
+
},
|
|
201
|
+
{ type: 'title', text: 'Estrategias para Mejorar la Higiene del Sueño', level: 2 },
|
|
202
|
+
{
|
|
203
|
+
type: 'list',
|
|
204
|
+
items: [
|
|
205
|
+
'<strong>Ventana de sueño consistente:</strong> Despertarse a la misma hora todos los días sincroniza el reloj circadiano maestro.',
|
|
206
|
+
'<strong>Optimiza el ambiente:</strong> El dormitorio debe estar a unos 18°C y en oscuridad absoluta.',
|
|
207
|
+
'<strong>Bloquea la luz azul:</strong> La exposición a pantallas antes de dormir suprime la producción de melatonina.',
|
|
208
|
+
'<strong>Cuida los estimulantes:</strong> La cafeína tiene una ventana de influencia de hasta 6 horas; evita su consumo después del mediodía.',
|
|
209
|
+
],
|
|
210
|
+
},
|
|
211
|
+
{ type: 'title', text: 'Conclusiones sobre la Salud Neurocognitiva', level: 2 },
|
|
212
|
+
{
|
|
213
|
+
type: 'paragraph',
|
|
214
|
+
html: 'La escala de somnolencia de Epworth no es solo un conjunto de preguntas, sino una <strong>ventana diagnóstica a la eficiencia de nuestro descanso</strong>. Identificar a tiempo una somnolencia excesiva puede prevenir accidentes fatales y mejorar drásticamente la salud metabólica y emocional a largo plazo.',
|
|
215
|
+
},
|
|
216
|
+
],
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { EpworthSleepinessScaleUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'test-echelle-somnolence-epworth';
|
|
6
|
+
const title = "Test d'Échelle de Somnolence d'Epworth";
|
|
7
|
+
const description =
|
|
8
|
+
"Mesurez votre niveau de somnolence diurne avec l'Échelle d'Epworth. Test clinique validé pour détecter d'éventuels troubles du sommeil.";
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: "L'Échelle d'Epworth est-elle un outil de diagnostic définitif?",
|
|
13
|
+
answer:
|
|
14
|
+
"Non, c'est un outil de dépistage clinique. Elle fournit une mesure subjective de la somnolence diurne, mais un diagnostic médical nécessite des tests supplémentaires comme la polysomnographie.",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: "Qu'est-ce qu'un score 'normal'?",
|
|
18
|
+
answer:
|
|
19
|
+
"Un score jusqu'à 10 est considéré dans les paramètres normaux pour les adultes en bonne santé. À partir de 11, on parle de somnolence excessive.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'La somnolence diurne peut-elle être dangereuse?',
|
|
23
|
+
answer:
|
|
24
|
+
"Oui, la somnolence excessive augmente significativement le risque d'accidents de la route et d'erreurs professionnelles graves, et est également liée à des problèmes cardiovasculaires.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Quelle est la différence entre fatigue et somnolence?',
|
|
28
|
+
answer:
|
|
29
|
+
"La fatigue est un manque général d'énergie, tandis que la somnolence est la tendance spécifique à s'endormir pendant la journée.",
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howToData = [
|
|
34
|
+
{
|
|
35
|
+
name: 'Analysez des Situations Réelles',
|
|
36
|
+
text: 'Pensez à votre comportement habituel au cours des dernières semaines face aux situations proposées.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Évaluez la Probabilité',
|
|
40
|
+
text: "Notez chaque situation de 0 (ne s'endormirait jamais) à 3 (forte probabilité de s'assoupir).",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Calculez Votre Score',
|
|
44
|
+
text: 'Additionnez les points des 8 situations. Le système le fera automatiquement lorsque vous sélectionnerez vos réponses.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Vérifiez les Plages',
|
|
48
|
+
text: 'Comparez votre résultat final avec les critères cliniques (Normal, Léger, Modéré ou Sévère).',
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqData.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'HowTo',
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howToData.map((step, i) => ({
|
|
68
|
+
'@type': 'HowToStep',
|
|
69
|
+
position: i + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'HealthApplication',
|
|
81
|
+
operatingSystem: 'Web',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const content: ToolLocaleContent<EpworthSleepinessScaleUI> = {
|
|
86
|
+
slug,
|
|
87
|
+
title,
|
|
88
|
+
description,
|
|
89
|
+
faqTitle: "Questions fréquentes sur l'Échelle d'Epworth",
|
|
90
|
+
faq: faqData,
|
|
91
|
+
bibliographyTitle: 'Références scientifiques',
|
|
92
|
+
bibliography: [
|
|
93
|
+
{
|
|
94
|
+
name: 'A new method for measuring daytime sleepiness: the Epworth sleepiness scale (Johns MW, 1991)',
|
|
95
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/1798888/',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'Reliability and factor analysis of the Epworth Sleepiness Scale (Sleep, 1992)',
|
|
99
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/1519015/',
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
howTo: howToData,
|
|
103
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
104
|
+
ui: {
|
|
105
|
+
sit0: 'Assis en lisant',
|
|
106
|
+
sit1: 'En regardant la télévision',
|
|
107
|
+
sit2: 'Assis et inactif dans un lieu public',
|
|
108
|
+
sit3: 'En tant que passager en voiture pendant une heure',
|
|
109
|
+
sit4: "Allongé pour se reposer l'après-midi",
|
|
110
|
+
sit5: 'Assis à parler avec quelqu\'un',
|
|
111
|
+
sit6: 'Assis tranquillement après un repas sans alcool',
|
|
112
|
+
sit7: "Dans une voiture arrêtée quelques minutes dans la circulation",
|
|
113
|
+
opt0: 'Ne s\'endormirait jamais',
|
|
114
|
+
opt1: 'Faible probabilité',
|
|
115
|
+
opt2: 'Probabilité modérée',
|
|
116
|
+
opt3: 'Forte probabilité',
|
|
117
|
+
situationPrefix: 'Situation',
|
|
118
|
+
situationOf: 'sur',
|
|
119
|
+
btnPrev: 'Précédent',
|
|
120
|
+
scoreOf: 'sur 24',
|
|
121
|
+
badgeNormal: 'Normal',
|
|
122
|
+
descNormal:
|
|
123
|
+
"Votre niveau de somnolence diurne est normal. Il ne semble pas y avoir de signes de troubles respiratoires ou du sommeil.",
|
|
124
|
+
badgeMild: 'Léger',
|
|
125
|
+
descMild:
|
|
126
|
+
"Vous présentez une somnolence diurne légère. Essayez d'améliorer votre hygiène de sommeil et observez si les symptômes persistent.",
|
|
127
|
+
badgeMod: 'Modéré',
|
|
128
|
+
descMod:
|
|
129
|
+
"Votre niveau de somnolence est significatif. Il pourrait affecter vos performances quotidiennes et mérite une révision de vos habitudes.",
|
|
130
|
+
badgeSevere: 'Sévère',
|
|
131
|
+
descSevere:
|
|
132
|
+
"Vous présentez une somnolence diurne excessive et sévère. Il est fortement recommandé de consulter un spécialiste du sommeil dès que possible.",
|
|
133
|
+
btnReset: "Recommencer l'Évaluation",
|
|
134
|
+
},
|
|
135
|
+
seo: [
|
|
136
|
+
{
|
|
137
|
+
type: 'summary',
|
|
138
|
+
title: "Échelle de Somnolence d'Epworth",
|
|
139
|
+
items: [
|
|
140
|
+
"<strong>8 situations quotidiennes</strong>: évaluées de 0 (ne s'endormirait jamais) à 3 (forte probabilité).",
|
|
141
|
+
'<strong>Score maximum 24</strong>: plages cliniques Normal, Léger, Modéré et Sévère.',
|
|
142
|
+
'<strong>Test validé cliniquement</strong>: développé par le Dr. Murray Johns en 1990.',
|
|
143
|
+
"<strong>Résultat immédiat</strong>: interprétation automatique à la fin des 8 questions.",
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
type: 'title',
|
|
148
|
+
text: "Guide Exhaustif sur l'Échelle de Somnolence d'Epworth (ESS)",
|
|
149
|
+
level: 2,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'paragraph',
|
|
153
|
+
html: "La somnolence diurne excessive représente l'un des défis les plus significatifs pour la santé publique contemporaine. Il ne s'agit pas simplement d'une sensation de fatigue, mais d'une propension physiologique à s'endormir à des moments inappropriés.",
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'paragraph',
|
|
157
|
+
html: "L'<strong>Échelle de Somnolence d'Epworth</strong> (ESS) est l'instrument clinique le plus utilisé et validé pour mesurer ce symptôme de manière objective. Développée en 1990 par le docteur Murray Johns, elle a transformé la façon dont les spécialistes du sommeil évaluent la qualité de vie et le risque de maladies sous-jacentes chez leurs patients.",
|
|
158
|
+
},
|
|
159
|
+
{ type: 'title', text: "Origines et Évolution de l'Évaluation du Sommeil", level: 2 },
|
|
160
|
+
{
|
|
161
|
+
type: 'paragraph',
|
|
162
|
+
html: "Avant la création de l'échelle d'Epworth, la mesure de la somnolence dépendait largement de journaux subjectifs ou de tests coûteux comme le test de latences multiples du sommeil (TLMS). Le docteur Johns a identifié le besoin d'un outil rapide mais sensible. La génialité de son approche réside dans le fait qu'il ne demande pas si le sujet se sent fatigué, mais lui demande d'évaluer la <strong>probabilité de s'endormir dans huit situations réelles</strong>.",
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'tip',
|
|
166
|
+
title: 'Distinction Clé',
|
|
167
|
+
html: "Il est vital de distinguer entre la <strong>fatigue</strong> (manque général d'énergie physique) et la <strong>somnolence</strong> (besoin biologique de dormir). Le test d'Epworth se concentre exclusivement sur la seconde.",
|
|
168
|
+
},
|
|
169
|
+
{ type: 'title', text: 'La Physiologie de la Somnolence Diurne', level: 2 },
|
|
170
|
+
{
|
|
171
|
+
type: 'paragraph',
|
|
172
|
+
html: "L'être humain alterne entre le sommeil NREM et le sommeil REM. Toute interruption dans ces cycles génère une accumulation d'<strong>adénosine</strong>, la substance chimique qui agit comme indicateur de la pression de sommeil accumulée. En conditions normales, le repos nocturne nettoie ces niveaux; chez les sujets avec apnée ou insomnie, l'adénosine persiste et force le cerveau à chercher des microsommeils pendant la journée.",
|
|
173
|
+
},
|
|
174
|
+
{ type: 'title', text: 'Interprétation des Plages Cliniques', level: 2 },
|
|
175
|
+
{
|
|
176
|
+
type: 'table',
|
|
177
|
+
headers: ['Score', 'Classification', 'Implication Clinique'],
|
|
178
|
+
rows: [
|
|
179
|
+
['0 — 10', '<strong>Normal</strong>', "Niveau d'alerte adéquat pour la vie quotidienne."],
|
|
180
|
+
['11 — 12', '<strong>Somnolence Légère</strong>', "Zone grise suggérant une fatigue accumulée ou une hygiène de sommeil améliorable."],
|
|
181
|
+
['13 — 15', '<strong>Somnolence Modérée</strong>', "Risque élevé d'erreurs cognitives et d'accidents."],
|
|
182
|
+
['16 — 24', '<strong>Somnolence Sévère</strong>', "Forte probabilité de trouble du sommeil pathologique grave."],
|
|
183
|
+
],
|
|
184
|
+
},
|
|
185
|
+
{ type: 'title', text: 'Analyse des Situations Évaluées', level: 2 },
|
|
186
|
+
{
|
|
187
|
+
type: 'list',
|
|
188
|
+
items: [
|
|
189
|
+
"<strong>Activités Passives:</strong> Être assis en lisant ou regarder la télévision sont les scénarios avec la moindre résistance au sommeil.",
|
|
190
|
+
"<strong>Environnements Publics:</strong> S'endormir dans un lieu public indique une incapacité d'inhiber le sommeil sous pression sociale.",
|
|
191
|
+
"<strong>Situations de Voyage:</strong> Être passager en voiture pendant une heure utilise la monotonie pour mesurer la propension au microsommeil.",
|
|
192
|
+
"<strong>Moments d'Alerte Sociale:</strong> S'assoupir en parlant à quelqu'un est un signe d'alarme clinique extrême.",
|
|
193
|
+
"<strong>Sécurité Routière:</strong> Le risque maximum est mesuré dans les situations de circulation arrêtée, où la vigilance est critique.",
|
|
194
|
+
],
|
|
195
|
+
},
|
|
196
|
+
{ type: 'title', text: 'Troubles du Sommeil Associés', level: 2 },
|
|
197
|
+
{
|
|
198
|
+
type: 'paragraph',
|
|
199
|
+
html: "Le diagnostic le plus fréquent associé à des scores élevés est le <strong>syndrome d'apnée obstructive du sommeil (SAOS)</strong>, qui provoque des effondrements des voies respiratoires fragmentant le sommeil des centaines de fois par nuit. D'autres troubles incluent la <strong>narcolepsie</strong> (déficience en hypocrétine) et le <strong>syndrome des jambes sans repos</strong>.",
|
|
200
|
+
},
|
|
201
|
+
{ type: 'title', text: "Stratégies pour Améliorer l'Hygiène du Sommeil", level: 2 },
|
|
202
|
+
{
|
|
203
|
+
type: 'list',
|
|
204
|
+
items: [
|
|
205
|
+
"<strong>Fenêtre de sommeil cohérente:</strong> Se réveiller à la même heure tous les jours synchronise l'horloge circadienne maîtresse.",
|
|
206
|
+
"<strong>Optimisez l'environnement:</strong> La chambre doit être à environ 18°C et dans l'obscurité totale.",
|
|
207
|
+
"<strong>Bloquez la lumière bleue:</strong> L'exposition aux écrans avant de dormir supprime la production de mélatonine.",
|
|
208
|
+
"<strong>Attention aux stimulants:</strong> La caféine a une fenêtre d'influence allant jusqu'à 6 heures; évitez sa consommation après midi.",
|
|
209
|
+
],
|
|
210
|
+
},
|
|
211
|
+
{ type: 'title', text: 'Conclusions sur la Santé Neurocognitive', level: 2 },
|
|
212
|
+
{
|
|
213
|
+
type: 'paragraph',
|
|
214
|
+
html: "L'échelle de somnolence d'Epworth n'est pas seulement un ensemble de questions, mais une <strong>fenêtre diagnostique sur l'efficacité de notre repos</strong>. Identifier à temps une somnolence excessive peut prévenir des accidents fatals et améliorer drastiquement la santé métabolique et émotionnelle à long terme.",
|
|
215
|
+
},
|
|
216
|
+
],
|
|
217
|
+
};
|