import React, { useRef, useState, useEffect } from "react"; import { ArrowDown, Check, BookOpen, AlertTriangle, Zap } from "lucide-react"; import ContextEliminationWidget, { type VocabExercise, } from "../../../components/lessons/ContextEliminationWidget"; import { PracticeFromDataset } from "../../../components/lessons/LessonShell"; import { WORDS_CONTEXT_EASY, WORDS_CONTEXT_MEDIUM, } from "../../../data/rw/words-in-context"; interface LessonProps { onFinish?: () => void; } const EBRWVocabMeaningLesson: React.FC = ({ onFinish }) => { const [activeSection, setActiveSection] = useState(0); const sectionsRef = useRef<(HTMLElement | null)[]>([]); useEffect(() => { const observers: IntersectionObserver[] = []; sectionsRef.current.forEach((el, idx) => { if (!el) return; const obs = new IntersectionObserver( ([entry]) => { if (entry.isIntersecting) setActiveSection(idx); }, { threshold: 0.3 }, ); obs.observe(el); observers.push(obs); }); return () => observers.forEach((o) => o.disconnect()); }, []); const scrollToSection = (i: number) => { setActiveSection(i); sectionsRef.current[i]?.scrollIntoView({ behavior: "smooth" }); }; const SectionMarker = ({ index, title, icon: Icon, }: { index: number; title: string; icon: React.ElementType; }) => { const isActive = activeSection === index; const isPast = activeSection > index; return ( ); }; const VOCAB_EXERCISES: VocabExercise[] = [ { sentence: "The critic's review was pointed, cutting directly to the weaknesses of the performance without any diplomatic softening.", word: "pointed", question: "As used in this sentence, 'pointed' most nearly means:", options: [ { id: "A", definition: "having a sharp physical tip", isCorrect: false, elimReason: "This is the literal, physical meaning. In a review context, 'pointed' describes the directness of criticism, not a physical shape.", }, { id: "B", definition: "deliberately directed and sharply critical", isCorrect: true, elimReason: "Correct — 'pointed' here means incisively critical and direct. The phrase 'cutting directly to the weaknesses' confirms the metaphorical sharpness of the critique.", }, { id: "C", definition: "polite and professionally worded", isCorrect: false, elimReason: "Opposite — the sentence says 'without diplomatic softening,' meaning the review was NOT polite. Eliminate on opposite-meaning grounds.", }, { id: "D", definition: "carefully structured and well-organized", isCorrect: false, elimReason: "The sentence emphasizes directness and impact, not organization. 'Pointed' is about force, not structure.", }, ], }, { sentence: "The administration's new policy represented a marked departure from the approach taken by its predecessor.", word: "marked", question: "As used in this sentence, 'marked' most nearly means:", options: [ { id: "A", definition: "labeled or indicated with a visible sign", isCorrect: false, elimReason: "Physical marking meaning. Here 'marked departure' is an idiom meaning notable/significant departure — no literal label is involved.", }, { id: "B", definition: "slight and barely noticeable", isCorrect: false, elimReason: "Opposite connotation — 'marked' as an adjective before a noun means striking or significant, the opposite of slight.", }, { id: "C", definition: "clearly noticeable and significant", isCorrect: true, elimReason: "Correct — 'a marked departure' means a clearly noticeable, significant change. This is the standard idiomatic meaning of 'marked' as an adjective.", }, { id: "D", definition: "controversial and widely debated", isCorrect: false, elimReason: "The sentence says nothing about controversy — it only describes how different the policy is. 'Marked' means notable, not controversial.", }, ], }, { sentence: "Despite the economic pressures, the nonprofit remained committed to its founding mission, refusing to compromise its principles.", word: "compromise", question: "As used in this sentence, 'compromise' most nearly means:", options: [ { id: "A", definition: "reach a mutual agreement through negotiation", isCorrect: false, elimReason: "This is the common meaning of 'compromise' as a noun/verb in negotiations. Here it's used differently — to weaken or undermine.", }, { id: "B", definition: "weaken or undermine", isCorrect: true, elimReason: "Correct — 'compromise its principles' means to weaken or betray them. This is the secondary meaning of 'compromise' as a verb: to expose to risk or damage.", }, { id: "C", definition: "publicly disclose or reveal", isCorrect: false, elimReason: "This meaning applies to 'compromise' in security contexts (e.g., 'compromised data'). Here the context is about integrity, not disclosure.", }, { id: "D", definition: "renegotiate or redefine", isCorrect: false, elimReason: "'Refusing to compromise' means refusing to weaken principles, not refusing to redefine them. Too specific and misses the core meaning.", }, ], }, ]; return (
{/* Section 0: Word Meaning Strategy */}
{ sectionsRef.current[0] = el; }} className="min-h-screen flex flex-col justify-center mb-24 pt-20 lg:pt-0" >
Vocabulary in Context

Word Meaning Strategy

A word can have many meanings. "Most nearly means" asks which meaning fits THIS sentence. Context, not the dictionary, is the judge.

Four Essential Rules

1. 'Most Nearly Means'

This question type asks for the word's meaning IN THIS CONTEXT, not its general definition. The same word can have different meanings in different sentences.

2. Substitute Test

Insert each answer choice into the sentence in place of the word. The correct answer will sound natural and preserve the sentence's meaning.

3. Watch for Secondary Meanings

The SAT deliberately picks words that have a common meaning AND a rarer contextual meaning. The correct answer is usually the less obvious one.

4. Tone and Connotation

Even if a word is technically correct, wrong connotation = wrong answer. 'Famous' and 'notorious' both mean well-known, but 'notorious' has negative connotation.

"The scientist's findings were met with considerable reservation by her peers."

'Reservation' here = doubt/skepticism. {" "} Not a place to stay — context overrides the common meaning.

Wrong choice trap: {" "} 'hesitation' — close but 'reservation' implies more sustained doubt, not momentary pause.

The 'most nearly means' trap

The SAT picks the most common meaning of the word as a wrong answer choice. Always check if the common meaning fits the sentence — if it feels wrong in context, look for the rarer contextual meaning.

Golden Rule

The correct answer substitutes naturally into the sentence without changing the author's intended meaning. Test each choice by reading the full sentence aloud.

{/* Section 1: Context Elimination */}
{ sectionsRef.current[1] = el; }} className="min-h-screen flex flex-col justify-center mb-24" >
Interactive Practice

Context Elimination

For each question below, read the sentence and use context clues to eliminate wrong choices — then select the best meaning.

{/* Section 2: Practice Quiz */}
{ sectionsRef.current[2] = el; }} className="min-h-screen flex flex-col justify-center mb-24" >

Practice Quiz

{WORDS_CONTEXT_EASY.slice(2, 4).map((q) => ( ))} {WORDS_CONTEXT_MEDIUM.slice(1, 2).map((q) => ( ))}
); }; export default EBRWVocabMeaningLesson;