Made it so it is currently possible to generate reading passages
This commit is contained in:
@@ -28,19 +28,21 @@ export interface LevelExam {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ListeningExam {
|
export interface ListeningExam {
|
||||||
parts: {
|
parts: ListeningPart[];
|
||||||
audio: {
|
|
||||||
source: string;
|
|
||||||
repeatableTimes: number; // *The amount of times the user is allowed to repeat the audio, 0 for unlimited
|
|
||||||
};
|
|
||||||
exercises: Exercise[];
|
|
||||||
}[];
|
|
||||||
id: string;
|
id: string;
|
||||||
module: "listening";
|
module: "listening";
|
||||||
minTimer: number;
|
minTimer: number;
|
||||||
isDiagnostic: boolean;
|
isDiagnostic: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ListeningPart {
|
||||||
|
audio: {
|
||||||
|
source: string;
|
||||||
|
repeatableTimes: number; // *The amount of times the user is allowed to repeat the audio, 0 for unlimited
|
||||||
|
};
|
||||||
|
exercises: Exercise[];
|
||||||
|
}
|
||||||
|
|
||||||
export interface UserSolution {
|
export interface UserSolution {
|
||||||
solutions: any[];
|
solutions: any[];
|
||||||
module?: Module;
|
module?: Module;
|
||||||
|
|||||||
137
src/pages/(generation)/ListeningGeneration.tsx
Normal file
137
src/pages/(generation)/ListeningGeneration.tsx
Normal file
@@ -0,0 +1,137 @@
|
|||||||
|
import Input from "@/components/Low/Input";
|
||||||
|
import {ListeningPart} from "@/interfaces/exam";
|
||||||
|
import {Tab} from "@headlessui/react";
|
||||||
|
import axios from "axios";
|
||||||
|
import clsx from "clsx";
|
||||||
|
import {useState} from "react";
|
||||||
|
import {toast} from "react-toastify";
|
||||||
|
|
||||||
|
const ListeningGeneration = () => {
|
||||||
|
const [part1, setPart1] = useState<ListeningPart>();
|
||||||
|
const [part2, setPart2] = useState<ListeningPart>();
|
||||||
|
const [part3, setPart3] = useState<ListeningPart>();
|
||||||
|
const [types, setTypes] = useState<string[]>([]);
|
||||||
|
|
||||||
|
const availableTypes = [
|
||||||
|
{type: "fillBlanks", label: "Fill the Blanks"},
|
||||||
|
{type: "multipleChoice", label: "Multiple Choice"},
|
||||||
|
{type: "trueFalse", label: "True or False"},
|
||||||
|
{type: "writeBlanks", label: "Write the Blanks"},
|
||||||
|
];
|
||||||
|
|
||||||
|
const toggleType = (type: string) => setTypes((prev) => (prev.includes(type) ? [...prev.filter((x) => x !== type)] : [...prev, type]));
|
||||||
|
|
||||||
|
const PartTab = ({part, index, setPart}: {part?: ListeningPart; index: number; setPart: (part: ListeningPart) => void}) => {
|
||||||
|
const [topic, setTopic] = useState("");
|
||||||
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
|
||||||
|
const generate = () => {
|
||||||
|
setIsLoading(true);
|
||||||
|
axios
|
||||||
|
.get(`/api/exam/listening/generate/listening_passage_${index}?topic=${topic}&exercises=${types.join("&exercises=")}`)
|
||||||
|
.then((result) => setPart(result.data))
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
toast.error("Something went wrong!");
|
||||||
|
})
|
||||||
|
.finally(() => setIsLoading(false));
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Tab.Panel className="w-full bg-ielts-listening/20 min-h-[600px] h-full rounded-xl p-4 flex flex-col gap-4">
|
||||||
|
<div className="flex gap-4 items-end">
|
||||||
|
<Input type="text" placeholder="Grand Canyon..." name="topic" label="Topic" onChange={setTopic} roundness="xl" />
|
||||||
|
<button
|
||||||
|
onClick={generate}
|
||||||
|
disabled={types.length === 0 || topic.length === 0 || isLoading}
|
||||||
|
className={clsx(
|
||||||
|
"bg-ielts-listening/70 border border-ielts-listening text-white w-full max-w-[200px] px-6 py-6 rounded-xl h-[70px]",
|
||||||
|
"hover:bg-ielts-listening disabled:bg-ielts-listening/40 disabled:cursor-not-allowed",
|
||||||
|
"transition ease-in-out duration-300",
|
||||||
|
)}>
|
||||||
|
{!part ? "Generate" : "Regenerate"}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{isLoading && (
|
||||||
|
<div className="w-fit h-fit mt-12 self-center animate-pulse flex flex-col gap-8 items-center">
|
||||||
|
<span className={clsx("loading loading-infinity w-32 text-ielts-listening")} />
|
||||||
|
<span className={clsx("font-bold text-2xl text-ielts-listening")}>Generating...</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Tab.Panel>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="flex flex-col gap-3">
|
||||||
|
<label className="font-normal text-base text-mti-gray-dim">Exercises</label>
|
||||||
|
<div className="flex flex-row -2xl:flex-wrap w-full gap-4 -md:justify-center justify-between">
|
||||||
|
{availableTypes.map((x) => (
|
||||||
|
<span
|
||||||
|
onClick={() => toggleType(x.type)}
|
||||||
|
key={x.type}
|
||||||
|
className={clsx(
|
||||||
|
"px-6 py-4 w-64 flex justify-center text-sm font-normal rounded-full border focus:outline-none cursor-pointer",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
!types.includes(x.type)
|
||||||
|
? "bg-white border-mti-gray-platinum"
|
||||||
|
: "bg-ielts-listening/70 border-ielts-listening text-white",
|
||||||
|
)}>
|
||||||
|
{x.label}
|
||||||
|
</span>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Tab.Group>
|
||||||
|
<Tab.List className="flex space-x-1 rounded-xl bg-ielts-listening/20 p-1">
|
||||||
|
<Tab
|
||||||
|
className={({selected}) =>
|
||||||
|
clsx(
|
||||||
|
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-listening/70",
|
||||||
|
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-listening focus:outline-none focus:ring-2",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-listening",
|
||||||
|
)
|
||||||
|
}>
|
||||||
|
Passage 1
|
||||||
|
</Tab>
|
||||||
|
<Tab
|
||||||
|
className={({selected}) =>
|
||||||
|
clsx(
|
||||||
|
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-listening/70",
|
||||||
|
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-listening focus:outline-none focus:ring-2",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-listening",
|
||||||
|
)
|
||||||
|
}>
|
||||||
|
Passage 2
|
||||||
|
</Tab>
|
||||||
|
<Tab
|
||||||
|
className={({selected}) =>
|
||||||
|
clsx(
|
||||||
|
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-listening/70",
|
||||||
|
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-listening focus:outline-none focus:ring-2",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-listening",
|
||||||
|
)
|
||||||
|
}>
|
||||||
|
Passage 3
|
||||||
|
</Tab>
|
||||||
|
</Tab.List>
|
||||||
|
<Tab.Panels>
|
||||||
|
{[
|
||||||
|
{part: part1, setPart: setPart1},
|
||||||
|
{part: part2, setPart: setPart2},
|
||||||
|
{part: part3, setPart: setPart3},
|
||||||
|
].map(({part, setPart}, index) => (
|
||||||
|
<PartTab part={part} index={index + 1} key={index} setPart={setPart} />
|
||||||
|
))}
|
||||||
|
</Tab.Panels>
|
||||||
|
</Tab.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ListeningGeneration;
|
||||||
173
src/pages/(generation)/ReadingGeneration.tsx
Normal file
173
src/pages/(generation)/ReadingGeneration.tsx
Normal file
@@ -0,0 +1,173 @@
|
|||||||
|
import Input from "@/components/Low/Input";
|
||||||
|
import {ReadingPart} from "@/interfaces/exam";
|
||||||
|
import {convertCamelCaseToReadable} from "@/utils/string";
|
||||||
|
import {Tab} from "@headlessui/react";
|
||||||
|
import axios from "axios";
|
||||||
|
import clsx from "clsx";
|
||||||
|
import {useState} from "react";
|
||||||
|
import {BsArrowRepeat} from "react-icons/bs";
|
||||||
|
import {toast} from "react-toastify";
|
||||||
|
|
||||||
|
const PartTab = ({part, types, index, setPart}: {part?: ReadingPart; types: string[]; index: number; setPart: (part: ReadingPart) => void}) => {
|
||||||
|
const [topic, setTopic] = useState("");
|
||||||
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
|
||||||
|
const generate = () => {
|
||||||
|
setIsLoading(true);
|
||||||
|
axios
|
||||||
|
.get(`/api/exam/reading/generate/reading_passage_${index}?topic=${topic}&exercises=${types.join("&exercises=")}`)
|
||||||
|
.then((result) => setPart(result.data))
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
toast.error("Something went wrong!");
|
||||||
|
})
|
||||||
|
.finally(() => setIsLoading(false));
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Tab.Panel className="w-full bg-ielts-reading/20 min-h-[600px] h-full rounded-xl p-6 flex flex-col gap-4">
|
||||||
|
<div className="flex gap-4 items-end">
|
||||||
|
<Input type="text" placeholder="Grand Canyon..." name="topic" label="Topic" onChange={setTopic} roundness="xl" defaultValue={topic} />
|
||||||
|
<button
|
||||||
|
onClick={generate}
|
||||||
|
disabled={types.length === 0 || topic.length === 0 || isLoading}
|
||||||
|
data-tip={
|
||||||
|
types.length === 0 || topic.length === 0
|
||||||
|
? "Please select at least one exercise type and write a topic"
|
||||||
|
: "The passage is currently being generated"
|
||||||
|
}
|
||||||
|
className={clsx(
|
||||||
|
"bg-ielts-reading/70 border border-ielts-reading text-white w-full max-w-[200px] rounded-xl h-[70px]",
|
||||||
|
"hover:bg-ielts-reading disabled:bg-ielts-reading/40 disabled:cursor-not-allowed",
|
||||||
|
"transition ease-in-out duration-300",
|
||||||
|
(types.length === 0 || topic.length === 0 || isLoading) && "tooltip",
|
||||||
|
)}>
|
||||||
|
{isLoading ? (
|
||||||
|
<div className="flex items-center justify-center">
|
||||||
|
<BsArrowRepeat className="text-white animate-spin" size={25} />
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
"Generate"
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{isLoading && (
|
||||||
|
<div className="w-fit h-fit mt-12 self-center animate-pulse flex flex-col gap-8 items-center">
|
||||||
|
<span className={clsx("loading loading-infinity w-32 text-ielts-reading")} />
|
||||||
|
<span className={clsx("font-bold text-2xl text-ielts-reading")}>Generating...</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{part && (
|
||||||
|
<div className="flex flex-col gap-2 w-full overflow-y-scroll scrollbar-hide">
|
||||||
|
<div className="flex gap-4">
|
||||||
|
{part.exercises.map((x) => (
|
||||||
|
<span className="rounded-xl bg-white border border-ielts-reading p-1 px-4" key={x.id}>
|
||||||
|
{x.type && convertCamelCaseToReadable(x.type)}
|
||||||
|
</span>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-semibold">{part.text.title}</h3>
|
||||||
|
<span className="w-full h-96">{part.text.content}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Tab.Panel>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const ReadingGeneration = () => {
|
||||||
|
const [part1, setPart1] = useState<ReadingPart>();
|
||||||
|
const [part2, setPart2] = useState<ReadingPart>();
|
||||||
|
const [part3, setPart3] = useState<ReadingPart>();
|
||||||
|
const [types, setTypes] = useState<string[]>([]);
|
||||||
|
|
||||||
|
const availableTypes = [
|
||||||
|
{type: "fillBlanks", label: "Fill the Blanks"},
|
||||||
|
{type: "multipleChoice", label: "Multiple Choice"},
|
||||||
|
{type: "trueFalse", label: "True or False"},
|
||||||
|
{type: "writeBlanks", label: "Write the Blanks"},
|
||||||
|
];
|
||||||
|
|
||||||
|
const toggleType = (type: string) => setTypes((prev) => (prev.includes(type) ? [...prev.filter((x) => x !== type)] : [...prev, type]));
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="flex flex-col gap-3">
|
||||||
|
<label className="font-normal text-base text-mti-gray-dim">Exercises</label>
|
||||||
|
<div className="flex flex-row -2xl:flex-wrap w-full gap-4 -md:justify-center justify-between">
|
||||||
|
{availableTypes.map((x) => (
|
||||||
|
<span
|
||||||
|
onClick={() => toggleType(x.type)}
|
||||||
|
key={x.type}
|
||||||
|
className={clsx(
|
||||||
|
"px-6 py-4 w-64 flex justify-center text-sm font-normal rounded-full border focus:outline-none cursor-pointer",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
!types.includes(x.type) ? "bg-white border-mti-gray-platinum" : "bg-ielts-reading/70 border-ielts-reading text-white",
|
||||||
|
)}>
|
||||||
|
{x.label}
|
||||||
|
</span>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Tab.Group>
|
||||||
|
<Tab.List className="flex space-x-1 rounded-xl bg-ielts-reading/20 p-1">
|
||||||
|
<Tab
|
||||||
|
className={({selected}) =>
|
||||||
|
clsx(
|
||||||
|
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-reading/70",
|
||||||
|
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-reading focus:outline-none focus:ring-2",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-reading",
|
||||||
|
)
|
||||||
|
}>
|
||||||
|
Passage 1
|
||||||
|
</Tab>
|
||||||
|
<Tab
|
||||||
|
className={({selected}) =>
|
||||||
|
clsx(
|
||||||
|
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-reading/70",
|
||||||
|
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-reading focus:outline-none focus:ring-2",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-reading",
|
||||||
|
)
|
||||||
|
}>
|
||||||
|
Passage 2
|
||||||
|
</Tab>
|
||||||
|
<Tab
|
||||||
|
className={({selected}) =>
|
||||||
|
clsx(
|
||||||
|
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-reading/70",
|
||||||
|
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-reading focus:outline-none focus:ring-2",
|
||||||
|
"transition duration-300 ease-in-out",
|
||||||
|
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-reading",
|
||||||
|
)
|
||||||
|
}>
|
||||||
|
Passage 3
|
||||||
|
</Tab>
|
||||||
|
</Tab.List>
|
||||||
|
<Tab.Panels>
|
||||||
|
{[
|
||||||
|
{part: part1, setPart: setPart1},
|
||||||
|
{part: part2, setPart: setPart2},
|
||||||
|
{part: part3, setPart: setPart3},
|
||||||
|
].map(({part, setPart}, index) => (
|
||||||
|
<PartTab part={part} types={types} index={index + 1} key={index} setPart={setPart} />
|
||||||
|
))}
|
||||||
|
</Tab.Panels>
|
||||||
|
</Tab.Group>
|
||||||
|
<button
|
||||||
|
disabled={!part1 || !part2 || !part3}
|
||||||
|
data-tip="Please generate all three passages"
|
||||||
|
className={clsx(
|
||||||
|
"bg-ielts-reading/70 border border-ielts-reading text-white w-full max-w-[200px] px-6 py-6 rounded-xl h-[70px] self-end",
|
||||||
|
"hover:bg-ielts-reading disabled:bg-ielts-reading/40 disabled:cursor-not-allowed",
|
||||||
|
"transition ease-in-out duration-300",
|
||||||
|
(!part1 || !part2 || !part3) && "tooltip",
|
||||||
|
)}>
|
||||||
|
Submit
|
||||||
|
</button>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ReadingGeneration;
|
||||||
@@ -25,17 +25,11 @@ async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const {module} = req.query as {module: Module};
|
const {endpoint, topic, exercises} = req.query as {module: Module; endpoint: string; topic: string; exercises: string[]};
|
||||||
|
|
||||||
switch (module) {
|
const result = await axios.get(`${process.env.BACKEND_URL}/${endpoint}?topic=${topic.toLowerCase()}&exercises=${exercises.join("&exercises=")}`, {
|
||||||
case "reading":
|
headers: {Authorization: `Bearer ${process.env.BACKEND_JWT}`},
|
||||||
const result = await axios.get(
|
});
|
||||||
`${process.env.BACKEND_URL}/reading_passage_1?topic=football manager video game&exercises=multipleChoice&exercises=trueFalse&exercises=fillBlanks&exercises=writeBlanks`,
|
|
||||||
{headers: {Authorization: `Bearer ${process.env.BACKEND_JWT}`}},
|
|
||||||
);
|
|
||||||
res.status(200).json(result.data);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
res.status(200).json({ok: true});
|
res.status(200).json(result.data);
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,7 @@ import Head from "next/head";
|
|||||||
import {withIronSessionSsr} from "iron-session/next";
|
import {withIronSessionSsr} from "iron-session/next";
|
||||||
import {sessionOptions} from "@/lib/session";
|
import {sessionOptions} from "@/lib/session";
|
||||||
import useUser from "@/hooks/useUser";
|
import useUser from "@/hooks/useUser";
|
||||||
import {ToastContainer} from "react-toastify";
|
import {toast, ToastContainer} from "react-toastify";
|
||||||
import Layout from "@/components/High/Layout";
|
import Layout from "@/components/High/Layout";
|
||||||
import {shouldRedirectHome} from "@/utils/navigation.disabled";
|
import {shouldRedirectHome} from "@/utils/navigation.disabled";
|
||||||
import {useState} from "react";
|
import {useState} from "react";
|
||||||
@@ -15,6 +15,9 @@ import {capitalize} from "lodash";
|
|||||||
import Button from "@/components/Low/Button";
|
import Button from "@/components/Low/Button";
|
||||||
import {Exercise, ReadingPart} from "@/interfaces/exam";
|
import {Exercise, ReadingPart} from "@/interfaces/exam";
|
||||||
import Input from "@/components/Low/Input";
|
import Input from "@/components/Low/Input";
|
||||||
|
import axios from "axios";
|
||||||
|
import ReadingGeneration from "./(generation)/ReadingGeneration";
|
||||||
|
import ListeningGeneration from "./(generation)/ListeningGeneration";
|
||||||
|
|
||||||
export const getServerSideProps = withIronSessionSsr(({req, res}) => {
|
export const getServerSideProps = withIronSessionSsr(({req, res}) => {
|
||||||
const user = req.session.user;
|
const user = req.session.user;
|
||||||
@@ -51,176 +54,6 @@ export default function Generation() {
|
|||||||
|
|
||||||
const {user} = useUser({redirectTo: "/login"});
|
const {user} = useUser({redirectTo: "/login"});
|
||||||
|
|
||||||
const ReadingGeneration = () => {
|
|
||||||
const [part1, setPart1] = useState<ReadingPart>();
|
|
||||||
const [part2, setPart2] = useState<ReadingPart>();
|
|
||||||
const [part3, setPart3] = useState<ReadingPart>();
|
|
||||||
const [types, setTypes] = useState<string[]>([]);
|
|
||||||
|
|
||||||
const availableTypes = [
|
|
||||||
{type: "fillBlanks", label: "Fill the Blanks"},
|
|
||||||
{type: "multipleChoice", label: "Multiple Choice"},
|
|
||||||
{type: "trueFalse", label: "True or False"},
|
|
||||||
{type: "writeBlanks", label: "Write the Blanks"},
|
|
||||||
];
|
|
||||||
|
|
||||||
const toggleType = (type: string) => setTypes((prev) => (prev.includes(type) ? [...prev.filter((x) => x !== type)] : [...prev, type]));
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div className="flex flex-col gap-3">
|
|
||||||
<label className="font-normal text-base text-mti-gray-dim">Exercises</label>
|
|
||||||
<div className="flex flex-row -2xl:flex-wrap w-full gap-4 -md:justify-center justify-between">
|
|
||||||
{availableTypes.map((x) => (
|
|
||||||
<span
|
|
||||||
onClick={() => toggleType(x.type)}
|
|
||||||
key={x.type}
|
|
||||||
className={clsx(
|
|
||||||
"px-6 py-4 w-64 flex justify-center text-sm font-normal rounded-full border focus:outline-none cursor-pointer",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
!types.includes(x.type)
|
|
||||||
? "bg-white border-mti-gray-platinum"
|
|
||||||
: "bg-ielts-reading/70 border-ielts-reading text-white",
|
|
||||||
)}>
|
|
||||||
{x.label}
|
|
||||||
</span>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Tab.Group>
|
|
||||||
<Tab.List className="flex space-x-1 rounded-xl bg-ielts-reading/20 p-1">
|
|
||||||
<Tab
|
|
||||||
className={({selected}) =>
|
|
||||||
clsx(
|
|
||||||
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-reading/70",
|
|
||||||
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-reading focus:outline-none focus:ring-2",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-reading",
|
|
||||||
)
|
|
||||||
}>
|
|
||||||
Passage 1
|
|
||||||
</Tab>
|
|
||||||
<Tab
|
|
||||||
className={({selected}) =>
|
|
||||||
clsx(
|
|
||||||
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-reading/70",
|
|
||||||
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-reading focus:outline-none focus:ring-2",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-reading",
|
|
||||||
)
|
|
||||||
}>
|
|
||||||
Passage 2
|
|
||||||
</Tab>
|
|
||||||
<Tab
|
|
||||||
className={({selected}) =>
|
|
||||||
clsx(
|
|
||||||
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-reading/70",
|
|
||||||
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-reading focus:outline-none focus:ring-2",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-reading",
|
|
||||||
)
|
|
||||||
}>
|
|
||||||
Passage 3
|
|
||||||
</Tab>
|
|
||||||
</Tab.List>
|
|
||||||
<Tab.Panels>
|
|
||||||
{[part1, part2, part3].map((part, index) => (
|
|
||||||
<Tab.Panel className="w-full bg-ielts-reading/20 min-h-[600px] h-full rounded-xl p-4 flex flex-col gap-4" key={index}>
|
|
||||||
<div className="flex gap-4 items-end">
|
|
||||||
<Input type="text" placeholder="Grand Canyon..." name="topic" label="Topic" onChange={() => {}} roundness="xl" />
|
|
||||||
<button
|
|
||||||
disabled={types.length === 0}
|
|
||||||
className={clsx(
|
|
||||||
"bg-ielts-reading/70 border border-ielts-reading text-white w-full max-w-[200px] px-6 py-6 rounded-xl h-[70px]",
|
|
||||||
"hover:bg-ielts-reading disabled:bg-ielts-reading/40 disabled:cursor-not-allowed",
|
|
||||||
"transition ease-in-out duration-300",
|
|
||||||
)}>
|
|
||||||
{!part ? "Generate" : "Regenerate"}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</Tab.Panel>
|
|
||||||
))}
|
|
||||||
</Tab.Panels>
|
|
||||||
</Tab.Group>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const ListeningGeneration = () => {
|
|
||||||
const [types, setTypes] = useState<string[]>([]);
|
|
||||||
const availableTypes = [
|
|
||||||
{type: "fillBlanks", label: "Fill the Blanks"},
|
|
||||||
{type: "multipleChoice", label: "Multiple Choice"},
|
|
||||||
{type: "trueFalse", label: "True or False"},
|
|
||||||
{type: "writeBlanks", label: "Write the Blanks"},
|
|
||||||
];
|
|
||||||
|
|
||||||
const toggleType = (type: string) => setTypes((prev) => (prev.includes(type) ? [...prev.filter((x) => x !== type)] : [...prev, type]));
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div className="flex flex-col gap-3">
|
|
||||||
<label className="font-normal text-base text-mti-gray-dim">Exercises</label>
|
|
||||||
<div className="flex flex-row -2xl:flex-wrap w-full gap-4 -md:justify-center justify-between">
|
|
||||||
{availableTypes.map((x) => (
|
|
||||||
<span
|
|
||||||
onClick={() => toggleType(x.type)}
|
|
||||||
key={x.type}
|
|
||||||
className={clsx(
|
|
||||||
"px-6 py-4 w-64 flex justify-center text-sm font-normal rounded-full border focus:outline-none cursor-pointer",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
!types.includes(x.type)
|
|
||||||
? "bg-white border-mti-gray-platinum"
|
|
||||||
: "bg-ielts-listening/70 border-ielts-listening text-white",
|
|
||||||
)}>
|
|
||||||
{x.label}
|
|
||||||
</span>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Tab.Group>
|
|
||||||
<Tab.List className="flex space-x-1 rounded-xl bg-ielts-listening/20 p-1">
|
|
||||||
<Tab
|
|
||||||
className={({selected}) =>
|
|
||||||
clsx(
|
|
||||||
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-listening/70",
|
|
||||||
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-listening focus:outline-none focus:ring-2",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-listening",
|
|
||||||
)
|
|
||||||
}>
|
|
||||||
Passage 1
|
|
||||||
</Tab>
|
|
||||||
<Tab
|
|
||||||
className={({selected}) =>
|
|
||||||
clsx(
|
|
||||||
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-listening/70",
|
|
||||||
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-listening focus:outline-none focus:ring-2",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-listening",
|
|
||||||
)
|
|
||||||
}>
|
|
||||||
Passage 2
|
|
||||||
</Tab>
|
|
||||||
<Tab
|
|
||||||
className={({selected}) =>
|
|
||||||
clsx(
|
|
||||||
"w-full rounded-lg py-2.5 text-sm font-medium leading-5 text-ielts-listening/70",
|
|
||||||
"ring-white ring-opacity-60 ring-offset-2 ring-offset-ielts-listening focus:outline-none focus:ring-2",
|
|
||||||
"transition duration-300 ease-in-out",
|
|
||||||
selected ? "bg-white shadow" : "text-blue-100 hover:bg-white/[0.12] hover:text-ielts-listening",
|
|
||||||
)
|
|
||||||
}>
|
|
||||||
Passage 3
|
|
||||||
</Tab>
|
|
||||||
</Tab.List>
|
|
||||||
</Tab.Group>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
|
|||||||
Reference in New Issue
Block a user