Blame view
src/pages/Dashboard/ChapterInfo.vue
5.98 KB
fe15ee8b4
|
1 2 |
<template> <div> |
6f7cf8cf5
|
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!-- LOADER --> <div class="loader" v-if="showLoader"> <v-progress-circular indeterminate color="white"></v-progress-circular> </div> <!-- SNACKBAR --> <v-snackbar :timeout="timeout" :top="y === 'top'" :right="x === 'right'" :vertical="mode === 'vertical'" v-model="snackbar" :color="snackbarColor" > {{ text }} <v-spacer></v-spacer> <v-btn flat text @click="snackbar = false">X</v-btn> </v-snackbar> |
fe15ee8b4
|
21 |
<v-container class="pt-0"> |
6f7cf8cf5
|
22 |
<v-layout row class="mt-1"> |
fe15ee8b4
|
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
<v-flex xs8> <!-- CHAPTER INFO --> <div class="title side-bar-color font-weight-bold">{{chapter.chapters[0].chapterName}}</div> <div class="subheading grey--text lighten-1">{{chapter.chapters[0].description}}</div> <div v-for="(point,index) in chapter.chapters[0].chapterPoints" :key="index" class="ml-2 mt-2" > <span class="subheading grey--text lighten-1">{{index +1}}. {{point}}</span> </div> <!-- ACTIVITIES --> <div class="mt-5"> <v-icon>library_books</v-icon> <span class="subheading font-weight-bold">Activities</span> </div> <!-- OTHER OPTIONS --> <div class="mt-5"> |
ac24ec07a
|
41 |
<ul class="subheading" style="cursor: pointer"> |
e91641fe5
|
42 43 44 45 |
<li @click="$router.push({name: 'Live Online Class', query: {chapterId: $route.query.selectedChapterId, chapterName: chapter.chapters[0].chapterName, courseId: $route.query.courseId, classId: localStorage.getItem('parentClassId') } })" > <v-btn flat>Live online classes</v-btn> |
ac24ec07a
|
46 47 48 49 50 51 52 53 54 55 |
</li> <!-- <li> <v-btn flat>Tutorial-pharmacetutical</v-btn> </li> <li> <v-btn flat>HSP Interactive content</v-btn> </li> <li> <v-btn flat>Assessment</v-btn> </li>--> |
fe15ee8b4
|
56 57 |
</ul> </div> |
0e5675ffe
|
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
<!-- SELECT CHAPTERS --> <v-layout row class="mt-5"> <!-- PREVIOUS CHAPTER --> <v-flex style="cursor: pointer;" class="subheading font-weight-bold text-xs-left" v-if="indexSelectedChapter > 0" @click="showSelectedChapter('back')" > <v-icon class="black--text" style="position:relative; top: 4px;">chevron_left</v-icon> {{chapterNames[indexSelectedChapter - 1]}} </v-flex> <v-spacer></v-spacer> <!-- NEXT CHAPTER --> <v-flex style="cursor: pointer;" class="subheading font-weight-bold text-xs-right" v-if="indexSelectedChapter < chapterNames.length -1" @click="showSelectedChapter('forward')" > |
fe15ee8b4
|
78 79 |
{{chapterNames[indexSelectedChapter + 1]}} <v-icon class="black--text" style="position:relative; top: 4px;">chevron_right</v-icon> |
0e5675ffe
|
80 81 |
</v-flex> </v-layout> |
fe15ee8b4
|
82 83 84 85 86 87 |
<!-- <v-flex class="text-xs-right mt-5" v-else> <span class="subheading font-weight-bold">Return to chapter one</span> </v-flex>--> </v-flex> <v-spacer></v-spacer> |
e91641fe5
|
88 |
<!-- COURSES SIDE BAR- positioned to the right of the page --> |
fe15ee8b4
|
89 90 |
<v-flex xs3> <v-card class="elevation-0 card-border" height="100%"> |
e91641fe5
|
91 |
<CoursesSideBar></CoursesSideBar> |
fe15ee8b4
|
92 93 94 95 |
</v-card> </v-flex> </v-layout> </v-container> |
fe15ee8b4
|
96 97 98 99 |
</div> </template> <script> import http from "@/Services/http.js"; |
6f7cf8cf5
|
100 |
import AllApiCalls from "@/Services/AllApiCalls.js"; |
e91641fe5
|
101 |
import CoursesSideBar from "@/pages/Common/CoursesSideBar.vue"; |
fe15ee8b4
|
102 |
export default { |
6f7cf8cf5
|
103 |
mixins: [AllApiCalls], |
e91641fe5
|
104 105 106 |
components: { CoursesSideBar }, |
fe15ee8b4
|
107 108 |
data() { return { |
6f7cf8cf5
|
109 |
// courseData: [], |
e91641fe5
|
110 |
localStorage: localStorage, |
fe15ee8b4
|
111 112 113 114 115 116 117 118 119 |
showLoader: false, chapter: { chapters: [{}] }, chapterNames: [], chapterIds: [], selectedChapterId: "", indexSelectedChapter: "" }; }, methods: { |
0e5675ffe
|
120 121 122 123 124 125 126 127 128 129 130 |
showSelectedChapter(newChapter) { if (newChapter == "forward") { this.indexSelectedChapter += 1; this.selectedChapterId = this.chapterIds[this.indexSelectedChapter]; this.getParticularChapterDetail(); } if (newChapter == "back") { this.indexSelectedChapter -= 1; this.selectedChapterId = this.chapterIds[this.indexSelectedChapter]; this.getParticularChapterDetail(); } |
fe15ee8b4
|
131 132 133 134 135 136 137 138 139 140 141 |
}, getParticularChapterDetail() { http() .get("/getParticularChapterDetail", { params: { courseDetailId: this.$route.query.courseDetailId, chapterId: this.selectedChapterId } }) .then(response => { this.chapter = response.data.data; |
fe15ee8b4
|
142 143 144 |
this.showLoader = false; }) .catch(err => { |
e91641fe5
|
145 |
console.log("err in getParticularChapterDetail====>", err); |
fe15ee8b4
|
146 147 148 149 150 151 152 153 154 |
this.showLoader = false; }); } }, // computed:{ // nextChapterIndex(){ // } // } |
6f7cf8cf5
|
155 |
async created() { |
fe15ee8b4
|
156 |
console.log("route query - ", this.$route.query); |
e91641fe5
|
157 |
this.selectedChapterId = this.$route.query.selectedChapterId; |
fe15ee8b4
|
158 159 160 161 162 |
/* set chapterNames array */ this.chapterNames = Object.keys(this.$route.query); this.chapterNames.pop(); this.chapterNames.pop(); |
e91641fe5
|
163 |
this.chapterNames.pop(); |
fe15ee8b4
|
164 165 166 167 168 |
/* set chapter Ids */ this.chapterIds = Object.values(this.$route.query); this.chapterIds.pop(); this.chapterIds.pop(); |
e91641fe5
|
169 |
this.chapterIds.pop(); |
fe15ee8b4
|
170 171 172 173 |
this.indexSelectedChapter = this.chapterIds.findIndex(id => { return id == this.selectedChapterId; }); |
fe15ee8b4
|
174 175 |
/* get chapter clicked on using the id */ |
6f7cf8cf5
|
176 |
await this.getParticularChapterDetail(this.selectedChapterId); |
fe15ee8b4
|
177 178 179 180 181 182 183 184 185 186 187 188 189 |
} }; </script> <style scoped> .side-bar-color { color: #827bfa !important; /* border-top-right-radius: 74px !important; */ } .card-border { border: 1px #bdbdbd solid; border-radius: 3px; } </style> |