-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24a275f
commit 733eebc
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
// import React from 'react'; | ||
import { Button, View } from '@tarojs/components'; | ||
import Taro from '@tarojs/taro'; | ||
import { useEffect, useState } from 'react'; | ||
|
||
import './index.scss'; | ||
|
||
import { get } from '../../common/utils/fetch'; | ||
|
||
import { Course } from '../../common/assets/types'; | ||
import CourseInfo from '../../common/components/CourseInfo/CourseInfo'; | ||
import QuestionListComponent from '../../common/components/QuestionListComponent/QuestionListComponent'; | ||
|
||
interface IQuestion { | ||
id: number; | ||
questioner_id: number; | ||
biz: string; | ||
biz_id: number; | ||
content: string; | ||
answer_cnt: number; | ||
preview_answers: Array<{ | ||
id: number; | ||
publisher_id: number; | ||
question_id: number; | ||
content: string; | ||
utime: number; | ||
ctime: number; | ||
}>; | ||
utime: number; | ||
ctime: number; | ||
} | ||
|
||
const App = () => { | ||
const [course, setCourse] = useState<Course | null>(null); | ||
const [questions, setQuestions] = useState<IQuestion[] | null>(null); | ||
// const courseId = 2347; //先用概率统计A来调试吧 | ||
const [courseId, setCourseId] = useState<string | null>(null); | ||
useEffect(() => { | ||
const getParams = () => { | ||
const instance = Taro.getCurrentInstance(); | ||
const params = instance?.router?.params || {}; | ||
|
||
if (params.course_id) setCourseId(params.course_id); | ||
}; | ||
|
||
getParams(); | ||
}, []); | ||
|
||
useEffect(() => { | ||
// eslint-disable-next-line @typescript-eslint/require-await | ||
const getCourseData = async () => { | ||
try { | ||
void get(`/courses/${courseId}/detail`, true).then((res) => { | ||
console.log(res); | ||
// 检查 res 是否有 data 属性,并且断言其类型 | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
setCourse(res?.data as Course); | ||
}); | ||
} catch (error) { | ||
// 错误处理,例如弹出提示 | ||
console.error('Failed to fetch course data:', error); | ||
} | ||
}; | ||
|
||
if (courseId) void getCourseData().then((r) => console.log(r)); | ||
|
||
// eslint-disable-next-line @typescript-eslint/require-await | ||
const getQuestionList = async () => { | ||
try { | ||
void get( | ||
`/questions/list?biz=Course&biz_id=${courseId}&cur_question_id=0&limit=100`, | ||
true | ||
).then((res) => { | ||
console.log(res); | ||
// 检查 res 是否有 data 属性,并且断言其类型 | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access | ||
setQuestions(res?.data as IQuestion[]); | ||
}); | ||
} catch (error) { | ||
// 错误处理,例如弹出提示 | ||
console.error('Failed to fetch course data:', error); | ||
} | ||
}; | ||
|
||
if (courseId) void getQuestionList().then((r) => console.log(r)); | ||
}, [courseId]); | ||
|
||
const handleAsk = () => { | ||
void Taro.navigateTo({ | ||
url: `/pages/publishQuestion/index?course_id=${courseId}`, | ||
}); | ||
}; | ||
|
||
return ( | ||
<View> | ||
<CourseInfo name={course?.name} school={course?.school} teacher={course?.teacher} /> | ||
{questions !== null && | ||
questions.map((question, index) => ( | ||
<QuestionListComponent key={index} question={question} /> | ||
))} | ||
<Button className="btn" onClick={handleAsk}> | ||
我也要提问 | ||
</Button> | ||
</View> | ||
); | ||
}; | ||
|
||
export default App; |