| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import { useEffect, useState } from "react";
- import AnthologyTocTree from "./AnthologyTocTree";
- import { get } from "../../request";
- import type { ICourseResponse } from "../../api/Course";
- interface IWidget {
- courseId?: string | null;
- channels?: string[];
- onClick?: (article: string, target: string) => void;
- }
- const TextBookTocWidget = ({ courseId, channels, onClick }: IWidget) => {
- const [anthologyId, setAnthologyId] = useState<string>();
- useEffect(() => {
- if (!courseId) {
- return;
- }
- const url = `/v2/course/${courseId}`;
- console.debug("course url", url);
- get<ICourseResponse>(url).then((json) => {
- console.debug("course data", json.data);
- if (json.ok) {
- setAnthologyId(json.data.anthology_id);
- }
- });
- }, [courseId]);
- return (
- <AnthologyTocTree
- anthologyId={anthologyId}
- channels={channels}
- onClick={(_anthology: string, article: string, target: string) => {
- console.debug("AnthologyTocTree onClick", article);
- if (typeof onClick !== "undefined") {
- onClick(article, target);
- }
- }}
- />
- );
- };
- export default TextBookTocWidget;
|