feat(learn): 自学模块按语言分路由,支持 C 语言教程
This commit is contained in:
@@ -254,8 +254,8 @@ export function getTutorial(id: number) {
|
|||||||
return http.get("tutorial", { params: { id } })
|
return http.get("tutorial", { params: { id } })
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getTutorials() {
|
export function getTutorials(type: "python" | "c") {
|
||||||
return http.get("tutorials")
|
return http.get("tutorials", { params: { type } })
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getAIDetailData(start: string, end: string, username?: string) {
|
export function getAIDetailData(start: string, end: string, username?: string) {
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
content-style="height: calc(100% - 44px); padding: 0;"
|
content-style="height: calc(100% - 44px); padding: 0;"
|
||||||
>
|
>
|
||||||
<CodeEditor
|
<CodeEditor
|
||||||
language="Python3"
|
:language="editorLanguage"
|
||||||
v-model="tutorial.code"
|
v-model="tutorial.code"
|
||||||
height="100%"
|
height="100%"
|
||||||
/>
|
/>
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
</n-tab-pane>
|
</n-tab-pane>
|
||||||
|
|
||||||
<n-tab-pane name="code" tab="示例代码" v-if="tutorial.code">
|
<n-tab-pane name="code" tab="示例代码" v-if="tutorial.code">
|
||||||
<CodeEditor language="Python3" v-model="tutorial.code" />
|
<CodeEditor :language="editorLanguage" v-model="tutorial.code" />
|
||||||
</n-tab-pane>
|
</n-tab-pane>
|
||||||
</n-tabs>
|
</n-tabs>
|
||||||
|
|
||||||
@@ -128,13 +128,19 @@
|
|||||||
</n-button>
|
</n-button>
|
||||||
</n-flex>
|
</n-flex>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<n-empty
|
||||||
|
v-if="isEmpty"
|
||||||
|
description="该教程还没有公开"
|
||||||
|
style="margin-top: 80px"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { MdPreview } from "md-editor-v3"
|
import { MdPreview } from "md-editor-v3"
|
||||||
import "md-editor-v3/lib/preview.css"
|
import "md-editor-v3/lib/preview.css"
|
||||||
import type { Tutorial, Exercise } from "utils/types"
|
import type { Tutorial, Exercise, LANGUAGE } from "utils/types"
|
||||||
import { getTutorial, getTutorials, getExercises } from "../api"
|
import { getTutorial, getTutorials, getExercises } from "../api"
|
||||||
import { parseExercises } from "./composables/useExerciseParse"
|
import { parseExercises } from "./composables/useExerciseParse"
|
||||||
import { useBreakpoints } from "shared/composables/breakpoints"
|
import { useBreakpoints } from "shared/composables/breakpoints"
|
||||||
@@ -152,19 +158,29 @@ const router = useRouter()
|
|||||||
const { isDesktop } = useBreakpoints()
|
const { isDesktop } = useBreakpoints()
|
||||||
|
|
||||||
const step = computed(() => {
|
const step = computed(() => {
|
||||||
if (!route.params.step || !route.params.step.length) return 1
|
const value = route.params.step as string | undefined
|
||||||
return parseInt(route.params.step[0])
|
if (!value) return 1
|
||||||
|
return parseInt(value)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const type = computed<"python" | "c">(() =>
|
||||||
|
route.params.type === "c" ? "c" : "python",
|
||||||
|
)
|
||||||
|
|
||||||
const tutorial = ref<Partial<Tutorial>>({
|
const tutorial = ref<Partial<Tutorial>>({
|
||||||
id: 0,
|
id: 0,
|
||||||
title: "",
|
title: "",
|
||||||
content: "",
|
content: "",
|
||||||
code: "",
|
code: "",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const editorLanguage = computed<LANGUAGE>(() =>
|
||||||
|
tutorial.value.type === "c" ? "C" : "Python3",
|
||||||
|
)
|
||||||
const titles = ref<{ id: number; title: string }[]>([])
|
const titles = ref<{ id: number; title: string }[]>([])
|
||||||
const exercises = ref<Exercise[]>([])
|
const exercises = ref<Exercise[]>([])
|
||||||
const activeTab = ref("content")
|
const activeTab = ref("content")
|
||||||
|
const isEmpty = ref(false)
|
||||||
|
|
||||||
const segments = computed(() =>
|
const segments = computed(() =>
|
||||||
parseExercises(tutorial.value.content ?? "", exercises.value),
|
parseExercises(tutorial.value.content ?? "", exercises.value),
|
||||||
@@ -175,7 +191,9 @@ const isLastLesson = computed(() => step.value === titles.value.length)
|
|||||||
|
|
||||||
function goToLesson(lessonNumber: number) {
|
function goToLesson(lessonNumber: number) {
|
||||||
activeTab.value = "content"
|
activeTab.value = "content"
|
||||||
router.push("/learn/" + lessonNumber.toString().padStart(2, "0"))
|
router.push(
|
||||||
|
`/learn/${type.value}/${lessonNumber.toString().padStart(2, "0")}`,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
function goToPrevLesson() {
|
function goToPrevLesson() {
|
||||||
if (step.value > 1) goToLesson(step.value - 1)
|
if (step.value > 1) goToLesson(step.value - 1)
|
||||||
@@ -185,9 +203,10 @@ function goToNextLesson() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function init() {
|
async function init() {
|
||||||
const res1 = await getTutorials()
|
const res1 = await getTutorials(type.value)
|
||||||
titles.value = res1.data
|
titles.value = res1.data
|
||||||
if (titles.value.length === 0) return
|
isEmpty.value = titles.value.length === 0
|
||||||
|
if (isEmpty.value) return
|
||||||
const id = titles.value[step.value - 1].id
|
const id = titles.value[step.value - 1].id
|
||||||
const [res2, exs] = await Promise.allSettled([
|
const [res2, exs] = await Promise.allSettled([
|
||||||
getTutorial(id),
|
getTutorial(id),
|
||||||
@@ -198,7 +217,7 @@ async function init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => route.params.step,
|
() => [route.params.type, route.params.step],
|
||||||
async () => {
|
async () => {
|
||||||
if (route.name === "learn") init()
|
if (route.name === "learn") init()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ export const ojs: RouteRecordRaw = {
|
|||||||
meta: { requiresAuth: true },
|
meta: { requiresAuth: true },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "learn/:step+",
|
path: "learn/:type/:step",
|
||||||
name: "learn",
|
name: "learn",
|
||||||
component: () => import("oj/learn/index.vue"),
|
component: () => import("oj/learn/index.vue"),
|
||||||
props: true,
|
props: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user