Skip to content

Commit

Permalink
Merge branch 'main' into 98-feature-add-additional-graph-exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjnaT41756 authored Nov 24, 2024
2 parents b2a4618 + 72b49f5 commit 556b91c
Showing 1 changed file with 2 additions and 61 deletions.
63 changes: 2 additions & 61 deletions src/components/shared/Exercises/UnitCircleInput.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useState, useEffect } from 'react';
import { useState } from 'react';
import '../../../styles/Exercises/UnitCircleInput.scss';

interface UnitCircleInputProps {
Expand All @@ -15,9 +15,6 @@ interface CircleQuestion {
id: number; //This sucks lol
}

// Put this inside the function, push on each initial render, only update on render?
// let focusedList: boolean[] = [true, false, false];

function UnitCircleInput({
nextExercise,
answers,
Expand All @@ -28,73 +25,17 @@ function UnitCircleInput({
const handleChange = (event: { target: { value: string } }) => {
setText(event.target.value, id);
};
const [isInputFocused, setIsInputFocused] = useState(false);

useEffect(() => {
const input = document.getElementById(`unitcircle-check-box-${label}`);

// if (id === 0) {
// focusedList.push(true);
// } else {
// focusedList.push(false);
// }

const focusListener = () => {
setIsInputFocused(true);
};

const blurListener = () => {
setIsInputFocused(false);
};

if (input) {
input.addEventListener('focus', focusListener);
input.addEventListener('blur', blurListener);
}

// Clean up event listeners when component unmounts
return () => {
if (input) {
input.removeEventListener('focus', focusListener);
input.removeEventListener('blur', blurListener);
}
};
}, []);

// useEffect(() => {
// for (let i = 0; i < focusedList.length; i++) {
// if (inputText[id]) {
// focusedList[i] = true;
// }
// }
// for (let i = 1; i < focusedList.length; i++) {
// if (focusedList[i] === false && !inputText[id - 1]) {
// setIsInputFocused(true);
// break;
// }
// }
// });

// console.log(focusedList[id]);

/* lines 25-35, try to get component to look like this */
return (
<div id="unitcircle-question-container" key={id}>
<p
id={
isInputFocused
? 'unitcircle-check-question'
: 'unitcircle-check-question-faded'
}
>
<p id="unitcircle-check-question">
{label} = {direction}{' '}
</p>
<input
type="text"
className="unitcircle-check-box"
onChange={handleChange}
value={inputText[id]}
id={`unitcircle-check-box-${label}`}
/>
</div>
);
Expand Down

0 comments on commit 556b91c

Please sign in to comment.