Curriculum
Course curriculum accordion with sections and lessons.
Type: "curriculumList"
Course curriculum accordion with sections and lessons.
Props
| Field | Type | Default | Keterangan |
|---|---|---|---|
sections | Array<object> | [{"id":"sec-1","title":"Modul 1: Pengenalan","lessons":[{"id":"les-1","title":"Intro & Overview","duration":"5:00","type":"video","isFree":true},{"id":"les-2","title":"Persiapan Tools","duration":"10:00","type":"video"}]},{"id":"sec-2","title":"Modul 2: Inti Materi","lessons":[{"id":"les-3","title":"Materi Utama","duration":"20:00","type":"video"},{"id":"les-4","title":"Quiz Pemahaman","type":"quiz"}]}] | Seksi |
sections[].title | string | — | Judul Seksi |
defaultExpanded | 'all'|'first'|'none' | "first" | Buka Default |
showDuration | boolean | true | Tampilkan Durasi |
showLessonType | boolean | true | Tampilkan Tipe Pelajaran |
accentColor | CSS color | "#6366f1" | Warna Aksen |
Contoh
{
"id": "cur01abc",
"type": "curriculumList",
"props": {
"sections": [
{
"id": "sec-1",
"title": "Modul 1: Pengenalan",
"lessons": [
{
"id": "les-1",
"title": "Intro & Overview",
"duration": "5:00",
"type": "video",
"isFree": true
},
{
"id": "les-2",
"title": "Persiapan Tools",
"duration": "10:00",
"type": "video"
}
]
},
{
"id": "sec-2",
"title": "Modul 2: Inti Materi",
"lessons": [
{
"id": "les-3",
"title": "Materi Utama",
"duration": "20:00",
"type": "video"
},
{
"id": "les-4",
"title": "Quiz Pemahaman",
"type": "quiz"
}
]
}
],
"defaultExpanded": "first",
"showDuration": true,
"showLessonType": true,
"accentColor": "#6366f1"
}
}