@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,205 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { PelliRobsonTestUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'pelli-robson-contrast-sensitivity-test';
|
|
6
|
+
const title = 'Pelli Robson Contrast Sensitivity Test';
|
|
7
|
+
const description =
|
|
8
|
+
'Measure your visual contrast sensitivity with the Pelli Robson test. Diagnose your ability to detect shades of grey, essential for night driving and eye health.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'What is the Pelli-Robson test?',
|
|
13
|
+
answer:
|
|
14
|
+
'It is a clinical test that measures the ability to distinguish levels of grey against a white background (contrast), unlike the traditional Snellen chart which only measures visual acuity (sharpness).',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Why is measuring contrast important?',
|
|
18
|
+
answer:
|
|
19
|
+
'Many conditions such as cataracts, glaucoma, or macular degeneration affect contrast before sharpness. It is vital for detecting functional problems invisible in standard tests.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'How are LogCS results interpreted?',
|
|
23
|
+
answer:
|
|
24
|
+
'A logarithmic scale is used. A value of 2.0 indicates perfect vision. Values below 1.50 suggest a contrast dysfunction that may require medical attention.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Why can I see small letters but fail this test?',
|
|
28
|
+
answer:
|
|
29
|
+
'Because sharpness (optical) and contrast (neural/chemical) are distinct processes in your eye and brain. You can have 20/20 acuity but poor functional vision in low-light conditions.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: 'Can contrast sensitivity improve?',
|
|
33
|
+
answer:
|
|
34
|
+
'Yes, in some cases through treatment of underlying pathologies, use of yellow filters (night lenses), or specific visual therapy exercises.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'How often should I repeat the test?',
|
|
38
|
+
answer:
|
|
39
|
+
'Follow-up every 6 months is recommended, especially if you are over 50 or have pre-existing conditions such as diabetes or glaucoma.',
|
|
40
|
+
},
|
|
41
|
+
];
|
|
42
|
+
|
|
43
|
+
const howToData = [
|
|
44
|
+
{
|
|
45
|
+
name: 'Adjust Your Screen',
|
|
46
|
+
text: 'Set brightness to approximately 75% and avoid direct light reflections.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: 'Identify the Letter',
|
|
50
|
+
text: 'A letter will appear in the center. If you can read it with total confidence, type it in the field.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Accept the Challenge',
|
|
54
|
+
text: 'Each letter will be fainter than the previous one. Stop when you can no longer distinguish the character from the background.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'Get Your Score',
|
|
58
|
+
text: 'The tool will calculate your LogCS value and provide a preliminary clinical interpretation.',
|
|
59
|
+
},
|
|
60
|
+
];
|
|
61
|
+
|
|
62
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'FAQPage',
|
|
65
|
+
mainEntity: faqData.map((item) => ({
|
|
66
|
+
'@type': 'Question',
|
|
67
|
+
name: item.question,
|
|
68
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
69
|
+
})),
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
73
|
+
'@context': 'https://schema.org',
|
|
74
|
+
'@type': 'HowTo',
|
|
75
|
+
name: title,
|
|
76
|
+
description,
|
|
77
|
+
step: howToData.map((step, i) => ({
|
|
78
|
+
'@type': 'HowToStep',
|
|
79
|
+
position: i + 1,
|
|
80
|
+
name: step.name,
|
|
81
|
+
text: step.text,
|
|
82
|
+
})),
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
86
|
+
'@context': 'https://schema.org',
|
|
87
|
+
'@type': 'SoftwareApplication',
|
|
88
|
+
name: title,
|
|
89
|
+
description,
|
|
90
|
+
applicationCategory: 'HealthApplication',
|
|
91
|
+
operatingSystem: 'Web',
|
|
92
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const content: ToolLocaleContent<PelliRobsonTestUI> = {
|
|
96
|
+
slug,
|
|
97
|
+
title,
|
|
98
|
+
description,
|
|
99
|
+
faqTitle: 'Frequently asked questions about the contrast test',
|
|
100
|
+
faq: faqData,
|
|
101
|
+
bibliographyTitle: 'Scientific references',
|
|
102
|
+
bibliography: [
|
|
103
|
+
{
|
|
104
|
+
name: 'The Design of a New Letter Chart for Measuring Contrast Sensitivity (Pelli-Robson, 1988)',
|
|
105
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/3394630/',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'American Academy of Ophthalmology: Contrast Sensitivity Testing',
|
|
109
|
+
url: 'https://www.aao.org/education/image/contrast-sensitivity-testing-5',
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
howTo: howToData,
|
|
113
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
114
|
+
ui: {
|
|
115
|
+
introSensLabel: 'Sensitivity',
|
|
116
|
+
introTestLabel: 'Test',
|
|
117
|
+
introTitle: 'What letter do you see?',
|
|
118
|
+
introDescription:
|
|
119
|
+
'Type the letter that appears on screen. The fainter it is, the greater your contrast sensitivity.',
|
|
120
|
+
introBtnStart: 'Start Challenge',
|
|
121
|
+
hudLevelLabel: 'Current Level',
|
|
122
|
+
hudScoreLabel: 'LogCS Detected',
|
|
123
|
+
inputPlaceholder: 'Type the letter...',
|
|
124
|
+
btnCantSee: 'I can no longer distinguish any letter',
|
|
125
|
+
resultScoreLabel: 'SCORE',
|
|
126
|
+
result4Title: 'Elite Vision!',
|
|
127
|
+
result4Text:
|
|
128
|
+
'Your contrast sensitivity is comparable to that of fighter pilots. You detect tone variations imperceptible to 95% of the population.',
|
|
129
|
+
result3Title: 'Optimal Result',
|
|
130
|
+
result3Text:
|
|
131
|
+
'Your functional visual capacity is excellent. You are in the ideal range for all daily activities and safe night driving.',
|
|
132
|
+
result2Title: 'Reduced Sensitivity',
|
|
133
|
+
result2Text:
|
|
134
|
+
'A moderate loss of sensitivity is detected. It may cause eye fatigue when reading or insecurity in low-light conditions.',
|
|
135
|
+
result1Title: 'Significant Deficit',
|
|
136
|
+
result1Text:
|
|
137
|
+
'Your contrast capacity is low. We recommend an ophthalmological examination to rule out structural abnormalities or chronic fatigue.',
|
|
138
|
+
btnRestart: 'Restart Test',
|
|
139
|
+
},
|
|
140
|
+
seo: [
|
|
141
|
+
{
|
|
142
|
+
type: 'summary',
|
|
143
|
+
title: 'Visual Contrast Test',
|
|
144
|
+
items: [
|
|
145
|
+
'<strong>16 contrast levels</strong>: the scale goes from 0.00 LogCS (pure black) to 2.25 LogCS (nearly imperceptible).',
|
|
146
|
+
'<strong>Same-size letters</strong>: unlike Snellen, contrast decreases, not size.',
|
|
147
|
+
'<strong>Immediate result</strong>: automatic interpretation in 4 clinical categories.',
|
|
148
|
+
'<strong>Calibrated screen</strong>: set brightness to 75% for maximum reliability.',
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
{ type: 'title', text: 'Contrast Sensitivity Test: Beyond 20/20 Vision', level: 2 },
|
|
152
|
+
{
|
|
153
|
+
type: 'paragraph',
|
|
154
|
+
html: 'Vision is not only acuity (how small the letters we can see are), but also <strong>contrast</strong> (how faint an object can be before blending into the background). The <strong>Pelli-Robson Test</strong> is the clinical standard for measuring this capacity, providing information that the traditional Snellen chart often misses.',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'paragraph',
|
|
158
|
+
html: 'Many patients with perfect 20/20 vision experience real difficulties: problems driving at night, reading under dim lights, or seeing steps in low-light conditions. This is frequently due to a loss of contrast sensitivity, a parameter that the Pelli-Robson test detects with precision.',
|
|
159
|
+
},
|
|
160
|
+
{ type: 'title', text: 'Results Interpretation Table', level: 2 },
|
|
161
|
+
{
|
|
162
|
+
type: 'table',
|
|
163
|
+
headers: ['Score (LogCS)', 'Vision Level', 'Description'],
|
|
164
|
+
rows: [
|
|
165
|
+
['<strong>2.00 or higher</strong>', 'Superior', 'Exceptional range, typical in healthy young people or professional pilots.'],
|
|
166
|
+
['<strong>1.65 to 1.95</strong>', 'Normal', 'Standard level for an adult without visual pathologies.'],
|
|
167
|
+
['<strong>1.20 to 1.50</strong>', 'Low', 'Moderate difficulty. Possible presence of cataracts or severe dry eye.'],
|
|
168
|
+
['<strong>Below 1.00</strong>', 'Deficient', 'Significant functional loss. High risk in night driving.'],
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{ type: 'title', text: 'Who Should Take This Test?', level: 2 },
|
|
172
|
+
{
|
|
173
|
+
type: 'list',
|
|
174
|
+
items: [
|
|
175
|
+
'<strong>Cataracts:</strong> Lens opacity scatters light, drastically reducing contrast even if acuity remains high.',
|
|
176
|
+
'<strong>Glaucoma:</strong> Damage to the optic nerve often manifests first as a loss in grey detection.',
|
|
177
|
+
'<strong>Macular Degeneration (AMD):</strong> The health of retinal photoreceptors is key for central contrast.',
|
|
178
|
+
'<strong>Diabetic Retinopathy:</strong> Early vascular changes affect the perception of faint tones.',
|
|
179
|
+
'<strong>Post-Refractive Surgery:</strong> Some LASIK patients experience transient contrast loss after the procedure.',
|
|
180
|
+
],
|
|
181
|
+
icon: 'mdi:eye-check-outline',
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
type: 'card',
|
|
185
|
+
icon: 'mdi:chart-bell-curve',
|
|
186
|
+
title: 'Contrast Sensitivity Function',
|
|
187
|
+
html: '<p>Scientifically, we perceive the world through different spatial frequencies. The Pelli-Robson test focuses on low and medium frequencies, responsible for detecting large shapes like faces, obstacles on the pavement, or cars in the rain.</p>',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: 'tip',
|
|
191
|
+
title: 'Test Conditions',
|
|
192
|
+
html: 'To obtain a reliable result in this digital version, set your screen brightness to <strong>75-80%</strong>, avoid direct reflections on the monitor, and perform the test at a comfortable reading distance (40-60 cm).',
|
|
193
|
+
},
|
|
194
|
+
{ type: 'title', text: 'Importance in Daily Life', level: 2 },
|
|
195
|
+
{
|
|
196
|
+
type: 'list',
|
|
197
|
+
items: [
|
|
198
|
+
'<strong>Road Safety:</strong> Seeing a pedestrian in dark clothing on a rainy night depends entirely on contrast.',
|
|
199
|
+
'<strong>Fall Prevention:</strong> In elderly people, contrast is the #1 factor for detecting uneven ground.',
|
|
200
|
+
'<strong>Efficient Reading:</strong> Visual fatigue when reading on screens is often linked to a lack of optimal contrast.',
|
|
201
|
+
'<strong>Action Sports:</strong> Following a ball or dodging obstacles at high speed requires an instant visual response to contrast.',
|
|
202
|
+
],
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
};
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { PelliRobsonTestUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'test-sensibilidad-contraste-pelli-robson';
|
|
6
|
+
const title = 'Test de Sensibilidad al Contraste Pelli Robson';
|
|
7
|
+
const description =
|
|
8
|
+
'Mide tu sensibilidad visual al contraste con el test Pelli-Robson. Diagnostica tu capacidad de detectar grises, fundamental para la conducción nocturna y salud ocular.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: '¿Qué es el test de Pelli-Robson?',
|
|
13
|
+
answer:
|
|
14
|
+
'Es un test clínico que mide la capacidad de distinguir niveles de gris sobre fondo blanco (contraste), a diferencia de la tabla de Snellen tradicional que solo mide agudeza visual (nitidez).',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: '¿Por qué es importante medir el contraste?',
|
|
18
|
+
answer:
|
|
19
|
+
'Muchas condiciones como las cataratas, el glaucoma o la degeneración macular afectan primero al contraste antes que a la nitidez. Es vital para detectar problemas funcionales invisibles en pruebas estándar.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿Cómo se interpretan los resultados de LogCS?',
|
|
23
|
+
answer:
|
|
24
|
+
'Se utiliza una escala logarítmica. Un valor de 2.0 indica visión perfecta. Valores por debajo de 1.50 sugieren una disfunción del contraste que puede requerir atención médica.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Por qué veo bien las letras pequeñas pero fallo en este test?',
|
|
28
|
+
answer:
|
|
29
|
+
'Porque la nitidez (óptica) y el contraste (neural/química) son procesos distintos en tu ojo y cerebro. Puedes tener un 20/20 de agudeza pero una visión funcional deficiente en condiciones de baja luz.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: '¿Puede mejorar la sensibilidad al contraste?',
|
|
33
|
+
answer:
|
|
34
|
+
'Sí, en algunos casos mediante el tratamiento de patologías base, el uso de filtros amarillos (lentes nocturnas) o ejercicios de terapia visual específicos.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: '¿Cuántas veces debo repetir el test?',
|
|
38
|
+
answer:
|
|
39
|
+
'Se recomienda realizar un seguimiento cada 6 meses, especialmente si tienes más de 50 años o condiciones preexistentes como diabetes o glaucoma.',
|
|
40
|
+
},
|
|
41
|
+
];
|
|
42
|
+
|
|
43
|
+
const howToData = [
|
|
44
|
+
{
|
|
45
|
+
name: 'Ajusta la Pantalla',
|
|
46
|
+
text: 'Sitúa el brillo al 75% aproximadamente y evita reflejos de luz directa.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: 'Identifica la Letra',
|
|
50
|
+
text: "Aparecerá una letra en el centro. Si puedes leerla con total seguridad, escríbela en el campo.",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Acepta el Desafío',
|
|
54
|
+
text: 'Cada letra será más clara que la anterior. Detente cuando ya no puedas distinguir el carácter del fondo.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'Obtén tu Puntuación',
|
|
58
|
+
text: 'La herramienta calculará tu valor LogCS y te proporcionará una interpretación clínica preliminar.',
|
|
59
|
+
},
|
|
60
|
+
];
|
|
61
|
+
|
|
62
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'FAQPage',
|
|
65
|
+
mainEntity: faqData.map((item) => ({
|
|
66
|
+
'@type': 'Question',
|
|
67
|
+
name: item.question,
|
|
68
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
69
|
+
})),
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
73
|
+
'@context': 'https://schema.org',
|
|
74
|
+
'@type': 'HowTo',
|
|
75
|
+
name: title,
|
|
76
|
+
description,
|
|
77
|
+
step: howToData.map((step, i) => ({
|
|
78
|
+
'@type': 'HowToStep',
|
|
79
|
+
position: i + 1,
|
|
80
|
+
name: step.name,
|
|
81
|
+
text: step.text,
|
|
82
|
+
})),
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
86
|
+
'@context': 'https://schema.org',
|
|
87
|
+
'@type': 'SoftwareApplication',
|
|
88
|
+
name: title,
|
|
89
|
+
description,
|
|
90
|
+
applicationCategory: 'HealthApplication',
|
|
91
|
+
operatingSystem: 'Web',
|
|
92
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const content: ToolLocaleContent<PelliRobsonTestUI> = {
|
|
96
|
+
slug,
|
|
97
|
+
title,
|
|
98
|
+
description,
|
|
99
|
+
faqTitle: 'Preguntas frecuentes sobre el test de contraste',
|
|
100
|
+
faq: faqData,
|
|
101
|
+
bibliographyTitle: 'Referencias científicas',
|
|
102
|
+
bibliography: [
|
|
103
|
+
{
|
|
104
|
+
name: 'The Design of a New Letter Chart for Measuring Contrast Sensitivity (Pelli-Robson, 1988)',
|
|
105
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/3394630/',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'American Academy of Ophthalmology: Contrast Sensitivity Testing',
|
|
109
|
+
url: 'https://www.aao.org/education/image/contrast-sensitivity-testing-5',
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
howTo: howToData,
|
|
113
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
114
|
+
ui: {
|
|
115
|
+
introSensLabel: 'Sensibilidad',
|
|
116
|
+
introTestLabel: 'Test',
|
|
117
|
+
introTitle: '¿Qué letra ves?',
|
|
118
|
+
introDescription:
|
|
119
|
+
'Escribe la letra que aparezca en pantalla. Cuanto más tenue sea, mayor será tu sensibilidad al contraste.',
|
|
120
|
+
introBtnStart: 'Comenzar Desafío',
|
|
121
|
+
hudLevelLabel: 'Nivel Actual',
|
|
122
|
+
hudScoreLabel: 'LogCS Detectado',
|
|
123
|
+
inputPlaceholder: 'Escribe la letra...',
|
|
124
|
+
btnCantSee: 'Ya no distingo ninguna letra',
|
|
125
|
+
resultScoreLabel: 'PUNTUACIÓN',
|
|
126
|
+
result4Title: '¡Visión de Élite!',
|
|
127
|
+
result4Text:
|
|
128
|
+
'Tu sensibilidad al contraste es comparable a la de pilotos de caza. Detectas variaciones de tono imperceptibles para el 95% de la población.',
|
|
129
|
+
result3Title: 'Resultado Óptimo',
|
|
130
|
+
result3Text:
|
|
131
|
+
'Tu capacidad visual funcional es excelente. Estás en el rango ideal para todas las actividades diarias y conducción nocturna segura.',
|
|
132
|
+
result2Title: 'Sensibilidad Reducida',
|
|
133
|
+
result2Text:
|
|
134
|
+
'Se detecta una pérdida moderada de sensibilidad. Puede causar fatiga ocular al leer o inseguridad en condiciones de baja iluminación.',
|
|
135
|
+
result1Title: 'Déficit Significativo',
|
|
136
|
+
result1Text:
|
|
137
|
+
'Tu capacidad de contraste es baja. Te recomendamos realizar un examen oftalmológico para descartar anomalías estructurales o fatiga crónica.',
|
|
138
|
+
btnRestart: 'Reiniciar Test',
|
|
139
|
+
},
|
|
140
|
+
seo: [
|
|
141
|
+
{
|
|
142
|
+
type: 'summary',
|
|
143
|
+
title: 'Test de Contraste Visual',
|
|
144
|
+
items: [
|
|
145
|
+
'<strong>16 niveles de contraste</strong>: la escala va de 0.00 LogCS (negro puro) a 2.25 LogCS (casi imperceptible).',
|
|
146
|
+
'<strong>Letras de igual tamaño</strong>: a diferencia del Snellen, el contraste disminuye, no el tamaño.',
|
|
147
|
+
'<strong>Resultado inmediato</strong>: interpretación automática en 4 categorías clínicas.',
|
|
148
|
+
'<strong>Pantalla calibrada</strong>: ajusta el brillo al 75% para máxima fiabilidad.',
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
{ type: 'title', text: 'Test de Sensibilidad al Contraste: Más allá de la Visión 20/20', level: 2 },
|
|
152
|
+
{
|
|
153
|
+
type: 'paragraph',
|
|
154
|
+
html: 'La visión no es solo agudeza (cuán pequeñas pueden ser las letras que vemos), sino también <strong>contraste</strong> (qué tan tenue puede ser un objeto antes de fundirse con el fondo). El <strong>Test de Pelli-Robson</strong> es el estándar clínico para medir esta capacidad, proporcionando información que la tabla de Snellen tradicional suele pasar por alto.',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'paragraph',
|
|
158
|
+
html: 'Muchos pacientes con una visión perfecta de 20/20 experimentan dificultades reales: problemas para conducir de noche, leer bajo luces tenues o ver escalones en condiciones de baja luz. Esto se debe con frecuencia a una pérdida de sensibilidad al contraste, un parámetro que el test Pelli-Robson detecta con precisión.',
|
|
159
|
+
},
|
|
160
|
+
{ type: 'title', text: 'Tabla de Interpretación de Resultados', level: 2 },
|
|
161
|
+
{
|
|
162
|
+
type: 'table',
|
|
163
|
+
headers: ['Puntuación (LogCS)', 'Nivel de Visión', 'Descripción'],
|
|
164
|
+
rows: [
|
|
165
|
+
['<strong>2.00 o superior</strong>', 'Superior', 'Rango excepcional, típico en jóvenes sanos o pilotos profesionales.'],
|
|
166
|
+
['<strong>1.65 a 1.95</strong>', 'Normal', 'Nivel estándar para un adulto sin patologías visuales.'],
|
|
167
|
+
['<strong>1.20 a 1.50</strong>', 'Bajo', 'Dificultad moderada. Posible presencia de cataratas o ojo seco severo.'],
|
|
168
|
+
['<strong>Inferior a 1.00</strong>', 'Deficiente', 'Pérdida funcional significativa. Riesgo elevado en la conducción nocturna.'],
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{ type: 'title', text: '¿Quiénes Deben Realizar Este Test?', level: 2 },
|
|
172
|
+
{
|
|
173
|
+
type: 'list',
|
|
174
|
+
items: [
|
|
175
|
+
'<strong>Cataratas:</strong> La opacidad del cristalino dispersa la luz, reduciendo drásticamente el contraste incluso si la agudeza se mantiene alta.',
|
|
176
|
+
'<strong>Glaucoma:</strong> El daño al nervio óptico a menudo se manifiesta primero como una pérdida en la detección de grises.',
|
|
177
|
+
'<strong>Degeneración Macular (DMAE):</strong> La salud del fotorreceptor retiniano es clave para el contraste central.',
|
|
178
|
+
'<strong>Retinopatía Diabética:</strong> Cambios vasculares tempranos afectan la percepción de tonos tenues.',
|
|
179
|
+
'<strong>Post-Cirugía Refractiva:</strong> Algunos pacientes de LASIK experimentan pérdida transitoria de contraste tras la operación.',
|
|
180
|
+
],
|
|
181
|
+
icon: 'mdi:eye-check-outline',
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
type: 'card',
|
|
185
|
+
icon: 'mdi:chart-bell-curve',
|
|
186
|
+
title: 'Función de Sensibilidad al Contraste',
|
|
187
|
+
html: '<p>Científicamente, percibimos el mundo a través de diferentes frecuencias espaciales. El test de Pelli-Robson se centra en las frecuencias bajas y medias, responsables de detectar formas grandes como rostros, obstáculos en la acera o coches bajo la lluvia.</p>',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: 'tip',
|
|
191
|
+
title: 'Condiciones para el Test',
|
|
192
|
+
html: 'Para obtener un resultado fiable en esta versión digital, ajusta el brillo de tu pantalla al <strong>75-80%</strong>, evita reflejos directos en el monitor y realiza la prueba a una distancia cómoda de lectura (40-60 cm).',
|
|
193
|
+
},
|
|
194
|
+
{ type: 'title', text: 'Importancia en la Vida Diaria', level: 2 },
|
|
195
|
+
{
|
|
196
|
+
type: 'list',
|
|
197
|
+
items: [
|
|
198
|
+
'<strong>Seguridad Vial:</strong> Ver a un peatón con ropa oscura en una noche lluviosa depende enteramente del contraste.',
|
|
199
|
+
'<strong>Prevención de Caídas:</strong> En personas mayores, el contraste es el factor #1 para detectar desniveles en el suelo.',
|
|
200
|
+
'<strong>Lectura Eficiente:</strong> La fatiga visual al leer en pantallas suele estar vinculada a una falta de contraste óptimo.',
|
|
201
|
+
'<strong>Deportes de Acción:</strong> Seguir una pelota o esquivar obstáculos a alta velocidad requiere una respuesta visual instantánea al contraste.',
|
|
202
|
+
],
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
};
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowToThing } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { PelliRobsonTestUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'test-sensibilite-contraste-pelli-robson';
|
|
6
|
+
const title = 'Test de Sensibilité au Contraste Pelli Robson';
|
|
7
|
+
const description =
|
|
8
|
+
'Mesurez votre sensibilité visuelle au contraste avec le test Pelli Robson. Diagnostiquez votre capacité à détecter les nuances de gris, essentielle pour la conduite nocturne et la santé oculaire.';
|
|
9
|
+
|
|
10
|
+
const faqData = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Qu\'est-ce que le test de Pelli-Robson?',
|
|
13
|
+
answer:
|
|
14
|
+
'C\'est un test clinique qui mesure la capacité à distinguer les niveaux de gris sur fond blanc (contraste), contrairement au tableau de Snellen traditionnel qui mesure uniquement l\'acuité visuelle (netteté).',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
question: 'Pourquoi est-il important de mesurer le contraste?',
|
|
18
|
+
answer:
|
|
19
|
+
'De nombreuses affections comme les cataractes, le glaucome ou la dégénérescence maculaire affectent d\'abord le contraste avant la netteté. C\'est vital pour détecter des problèmes fonctionnels invisibles dans les tests standard.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Comment interpréter les résultats LogCS?',
|
|
23
|
+
answer:
|
|
24
|
+
'Une échelle logarithmique est utilisée. Une valeur de 2,0 indique une vision parfaite. Des valeurs inférieures à 1,50 suggèrent un dysfonctionnement du contraste pouvant nécessiter une attention médicale.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Pourquoi je vois bien les petites lettres mais j\'échoue à ce test?',
|
|
28
|
+
answer:
|
|
29
|
+
'Parce que la netteté (optique) et le contraste (neural/chimique) sont des processus distincts dans votre œil et votre cerveau. Vous pouvez avoir une acuité 20/20 mais une vision fonctionnelle déficiente en conditions de faible luminosité.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: 'La sensibilité au contraste peut-elle s\'améliorer?',
|
|
33
|
+
answer:
|
|
34
|
+
'Oui, dans certains cas grâce au traitement des pathologies sous-jacentes, à l\'utilisation de filtres jaunes (lentilles nocturnes) ou à des exercices spécifiques de thérapie visuelle.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Combien de fois dois-je répéter le test?',
|
|
38
|
+
answer:
|
|
39
|
+
'Un suivi tous les 6 mois est recommandé, surtout si vous avez plus de 50 ans ou des pathologies préexistantes comme le diabète ou le glaucome.',
|
|
40
|
+
},
|
|
41
|
+
];
|
|
42
|
+
|
|
43
|
+
const howToData = [
|
|
44
|
+
{
|
|
45
|
+
name: 'Ajustez l\'Écran',
|
|
46
|
+
text: 'Réglez la luminosité à environ 75% et évitez les reflets de lumière directe.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: 'Identifiez la Lettre',
|
|
50
|
+
text: 'Une lettre apparaîtra au centre. Si vous pouvez la lire avec totale certitude, saisissez-la dans le champ.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Acceptez le Défi',
|
|
54
|
+
text: 'Chaque lettre sera plus claire que la précédente. Arrêtez-vous quand vous ne pouvez plus distinguer le caractère du fond.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'Obtenez Votre Score',
|
|
58
|
+
text: 'L\'outil calculera votre valeur LogCS et vous fournira une interprétation clinique préliminaire.',
|
|
59
|
+
},
|
|
60
|
+
];
|
|
61
|
+
|
|
62
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
63
|
+
'@context': 'https://schema.org',
|
|
64
|
+
'@type': 'FAQPage',
|
|
65
|
+
mainEntity: faqData.map((item) => ({
|
|
66
|
+
'@type': 'Question',
|
|
67
|
+
name: item.question,
|
|
68
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
69
|
+
})),
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
const howToSchema: WithContext<HowToThing> = {
|
|
73
|
+
'@context': 'https://schema.org',
|
|
74
|
+
'@type': 'HowTo',
|
|
75
|
+
name: title,
|
|
76
|
+
description,
|
|
77
|
+
step: howToData.map((step, i) => ({
|
|
78
|
+
'@type': 'HowToStep',
|
|
79
|
+
position: i + 1,
|
|
80
|
+
name: step.name,
|
|
81
|
+
text: step.text,
|
|
82
|
+
})),
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
86
|
+
'@context': 'https://schema.org',
|
|
87
|
+
'@type': 'SoftwareApplication',
|
|
88
|
+
name: title,
|
|
89
|
+
description,
|
|
90
|
+
applicationCategory: 'HealthApplication',
|
|
91
|
+
operatingSystem: 'Web',
|
|
92
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const content: ToolLocaleContent<PelliRobsonTestUI> = {
|
|
96
|
+
slug,
|
|
97
|
+
title,
|
|
98
|
+
description,
|
|
99
|
+
faqTitle: 'Questions fréquentes sur le test de contraste',
|
|
100
|
+
faq: faqData,
|
|
101
|
+
bibliographyTitle: 'Références scientifiques',
|
|
102
|
+
bibliography: [
|
|
103
|
+
{
|
|
104
|
+
name: 'The Design of a New Letter Chart for Measuring Contrast Sensitivity (Pelli-Robson, 1988)',
|
|
105
|
+
url: 'https://pubmed.ncbi.nlm.nih.gov/3394630/',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'American Academy of Ophthalmology: Contrast Sensitivity Testing',
|
|
109
|
+
url: 'https://www.aao.org/education/image/contrast-sensitivity-testing-5',
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
howTo: howToData,
|
|
113
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
114
|
+
ui: {
|
|
115
|
+
introSensLabel: 'Sensibilité',
|
|
116
|
+
introTestLabel: 'Test',
|
|
117
|
+
introTitle: 'Quelle lettre voyez-vous?',
|
|
118
|
+
introDescription:
|
|
119
|
+
'Saisissez la lettre qui apparaît à l\'écran. Plus elle est ténue, plus votre sensibilité au contraste est élevée.',
|
|
120
|
+
introBtnStart: 'Commencer le Défi',
|
|
121
|
+
hudLevelLabel: 'Niveau Actuel',
|
|
122
|
+
hudScoreLabel: 'LogCS Détecté',
|
|
123
|
+
inputPlaceholder: 'Saisissez la lettre...',
|
|
124
|
+
btnCantSee: 'Je ne distingue plus aucune lettre',
|
|
125
|
+
resultScoreLabel: 'SCORE',
|
|
126
|
+
result4Title: 'Vision d\'Élite!',
|
|
127
|
+
result4Text:
|
|
128
|
+
'Votre sensibilité au contraste est comparable à celle des pilotes de chasse. Vous détectez des variations de ton imperceptibles pour 95% de la population.',
|
|
129
|
+
result3Title: 'Résultat Optimal',
|
|
130
|
+
result3Text:
|
|
131
|
+
'Votre capacité visuelle fonctionnelle est excellente. Vous êtes dans la plage idéale pour toutes les activités quotidiennes et la conduite nocturne en toute sécurité.',
|
|
132
|
+
result2Title: 'Sensibilité Réduite',
|
|
133
|
+
result2Text:
|
|
134
|
+
'Une perte modérée de sensibilité est détectée. Elle peut provoquer une fatigue oculaire à la lecture ou une insécurité dans les conditions de faible luminosité.',
|
|
135
|
+
result1Title: 'Déficit Significatif',
|
|
136
|
+
result1Text:
|
|
137
|
+
'Votre capacité de contraste est faible. Nous vous recommandons un examen ophtalmologique pour écarter des anomalies structurelles ou une fatigue chronique.',
|
|
138
|
+
btnRestart: 'Recommencer le Test',
|
|
139
|
+
},
|
|
140
|
+
seo: [
|
|
141
|
+
{
|
|
142
|
+
type: 'summary',
|
|
143
|
+
title: 'Test de Contraste Visuel',
|
|
144
|
+
items: [
|
|
145
|
+
'<strong>16 niveaux de contraste</strong>: l\'échelle va de 0,00 LogCS (noir pur) à 2,25 LogCS (presque imperceptible).',
|
|
146
|
+
'<strong>Lettres de même taille</strong>: contrairement au Snellen, le contraste diminue, pas la taille.',
|
|
147
|
+
'<strong>Résultat immédiat</strong>: interprétation automatique en 4 catégories cliniques.',
|
|
148
|
+
'<strong>Écran calibré</strong>: réglez la luminosité à 75% pour une fiabilité maximale.',
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
{ type: 'title', text: 'Test de Sensibilité au Contraste: Au-delà de la Vision 20/20', level: 2 },
|
|
152
|
+
{
|
|
153
|
+
type: 'paragraph',
|
|
154
|
+
html: 'La vision n\'est pas seulement l\'acuité (à quelle taille peuvent être les lettres que nous voyons), mais aussi le <strong>contraste</strong> (à quelle ténuité un objet peut être avant de se fondre dans le fond). Le <strong>Test de Pelli-Robson</strong> est le standard clinique pour mesurer cette capacité, fournissant des informations que le tableau de Snellen traditionnel passe souvent sous silence.',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'paragraph',
|
|
158
|
+
html: 'De nombreux patients avec une vision parfaite de 20/20 éprouvent de vraies difficultés: problèmes pour conduire la nuit, lire sous des lumières tamisées ou voir les marches dans des conditions de faible luminosité. Cela est fréquemment dû à une perte de sensibilité au contraste, un paramètre que le test Pelli-Robson détecte avec précision.',
|
|
159
|
+
},
|
|
160
|
+
{ type: 'title', text: 'Tableau d\'Interprétation des Résultats', level: 2 },
|
|
161
|
+
{
|
|
162
|
+
type: 'table',
|
|
163
|
+
headers: ['Score (LogCS)', 'Niveau de Vision', 'Description'],
|
|
164
|
+
rows: [
|
|
165
|
+
['<strong>2,00 ou plus</strong>', 'Supérieur', 'Plage exceptionnelle, typique chez les jeunes en bonne santé ou les pilotes professionnels.'],
|
|
166
|
+
['<strong>1,65 à 1,95</strong>', 'Normal', 'Niveau standard pour un adulte sans pathologies visuelles.'],
|
|
167
|
+
['<strong>1,20 à 1,50</strong>', 'Faible', 'Difficulté modérée. Présence possible de cataractes ou d\'œil sec sévère.'],
|
|
168
|
+
['<strong>Inférieur à 1,00</strong>', 'Déficient', 'Perte fonctionnelle significative. Risque élevé lors de la conduite nocturne.'],
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{ type: 'title', text: 'Qui Devrait Passer Ce Test?', level: 2 },
|
|
172
|
+
{
|
|
173
|
+
type: 'list',
|
|
174
|
+
items: [
|
|
175
|
+
'<strong>Cataractes:</strong> L\'opacité du cristallin disperse la lumière, réduisant drastiquement le contraste même si l\'acuité reste élevée.',
|
|
176
|
+
'<strong>Glaucome:</strong> Les dommages au nerf optique se manifestent souvent d\'abord par une perte dans la détection des gris.',
|
|
177
|
+
'<strong>Dégénérescence Maculaire (DMLA):</strong> La santé des photorécepteurs rétiniens est essentielle pour le contraste central.',
|
|
178
|
+
'<strong>Rétinopathie Diabétique:</strong> Les modifications vasculaires précoces affectent la perception des tons ténus.',
|
|
179
|
+
'<strong>Post-Chirurgie Réfractive:</strong> Certains patients LASIK éprouvent une perte transitoire de contraste après l\'opération.',
|
|
180
|
+
],
|
|
181
|
+
icon: 'mdi:eye-check-outline',
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
type: 'card',
|
|
185
|
+
icon: 'mdi:chart-bell-curve',
|
|
186
|
+
title: 'Fonction de Sensibilité au Contraste',
|
|
187
|
+
html: '<p>Scientifiquement, nous percevons le monde à travers différentes fréquences spatiales. Le test de Pelli-Robson se concentre sur les fréquences basses et moyennes, responsables de la détection de grandes formes comme les visages, les obstacles sur le trottoir ou les voitures sous la pluie.</p>',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: 'tip',
|
|
191
|
+
title: 'Conditions pour le Test',
|
|
192
|
+
html: 'Pour obtenir un résultat fiable dans cette version numérique, réglez la luminosité de votre écran à <strong>75-80%</strong>, évitez les reflets directs sur le moniteur et effectuez le test à une distance de lecture confortable (40-60 cm).',
|
|
193
|
+
},
|
|
194
|
+
{ type: 'title', text: 'Importance dans la Vie Quotidienne', level: 2 },
|
|
195
|
+
{
|
|
196
|
+
type: 'list',
|
|
197
|
+
items: [
|
|
198
|
+
'<strong>Sécurité Routière:</strong> Voir un piéton en vêtements sombres par une nuit pluvieuse dépend entièrement du contraste.',
|
|
199
|
+
'<strong>Prévention des Chutes:</strong> Chez les personnes âgées, le contraste est le facteur #1 pour détecter les irrégularités du sol.',
|
|
200
|
+
'<strong>Lecture Efficace:</strong> La fatigue visuelle lors de la lecture sur écran est souvent liée à un manque de contraste optimal.',
|
|
201
|
+
'<strong>Sports d\'Action:</strong> Suivre un ballon ou esquiver des obstacles à grande vitesse nécessite une réponse visuelle instantanée au contraste.',
|
|
202
|
+
],
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { HealthToolEntry, ToolDefinition } from '../../types';
|
|
2
|
+
import PelliRobsonTestComponent from './component.astro';
|
|
3
|
+
import PelliRobsonTestSEO from './seo.astro';
|
|
4
|
+
import PelliRobsonTestBibliography from './bibliography.astro';
|
|
5
|
+
import type { PelliRobsonTestUI } from './ui';
|
|
6
|
+
|
|
7
|
+
export const pelliRobsonTest: HealthToolEntry<PelliRobsonTestUI> = {
|
|
8
|
+
id: 'pelliRobsonTest',
|
|
9
|
+
icons: {
|
|
10
|
+
bg: 'mdi:eye-outline',
|
|
11
|
+
fg: 'mdi:contrast-circle',
|
|
12
|
+
},
|
|
13
|
+
i18n: {
|
|
14
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
15
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
16
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export { PelliRobsonTestComponent, PelliRobsonTestSEO, PelliRobsonTestBibliography };
|
|
21
|
+
|
|
22
|
+
export const PELLI_ROBSON_TEST_TOOL: ToolDefinition = {
|
|
23
|
+
entry: pelliRobsonTest,
|
|
24
|
+
Component: PelliRobsonTestComponent,
|
|
25
|
+
SEOComponent: PelliRobsonTestSEO,
|
|
26
|
+
BibliographyComponent: PelliRobsonTestBibliography,
|
|
27
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { SEORenderer } from '@jjlmoya/utils-shared';
|
|
3
|
+
import { pelliRobsonTest } from './index';
|
|
4
|
+
import type { KnownLocale } from '../../types';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
locale?: KnownLocale;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const { locale = 'es' } = Astro.props;
|
|
11
|
+
const content = await pelliRobsonTest.i18n[locale]?.();
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
{content && <SEORenderer content={{ locale, sections: content.seo }} />}
|