-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses.js
87 lines (67 loc) · 2.5 KB
/
courses.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* Show corses purchsed items in UI
*/
function coursesPurchased() {
let courseContainer = document.getElementById("courseContainer");
const itemPurchasedObj =
JSON.parse(localStorage.getItem("purchasedCourse")) || {};
const purchasedObjValues = Object.values(itemPurchasedObj);
if (purchasedObjValues && courseContainer) {
courseContainer.innerHTML = "";
purchasedObjValues.map((item) => {
courseContainer.innerHTML += `
<div class="coursePurchased">
<img class="purchasedCourseImg" src="./Images/${item.tag}.jpeg">
<h1 class="purchsedCourseName" id="${item.idName}" data=${item.name} onClick="switchToPreferedCourse(event)">${item.name}</h1>
</div>
`;
});
}
}
coursesPurchased();
// ---------------------------------------------------------------------------------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------------------------------------------------------------------------------
/**
* Show the Preferred courses details after courses are purchased and add to my profile
*/
function switchToPreferedCourse(event) {
// console.log(event.target.id);
if (event.target.id === "Html_CSS_Course") {
window.location = "./courses/htmlandcss.html";
}
if (event.target.id === "JavaScript_Course") {
window.location = "./courses/javascript.html";
}
if (event.target.id === "C_Plus_Course") {
window.location = "./courses/c++.html";
}
if (event.target.id === "Python_Course") {
window.location = "./courses/python.html";
}
if (event.target.id === "C_Sharp_Course") {
window.location = "./courses/C_Sharp.html";
}
if (event.target.id === "Bootstrap_Course") {
window.location = "./courses/bootstrap.html";
}
if (event.target.id === "React_Course") {
window.location = "./courses/react.html";
}
if (event.target.id === "Angular_Course") {
window.location = "./courses/angular.html";
}
}
{
/* <p class="removePurchasedCourse" data-id=${item.name
.split(" ")
.join("")} onClick="removeItemFromCoursePurchased(event)">+</P> */
}
// function removeItemFromCoursePurchased(event) {
// console.log(event.target.dataset.id);
// let productId = event.target.dataset.id;
// console.log(event);
// const oldData = Object.values(
// JSON.parse(localStorage.getItem("purchasedCourse"))
// );
// console.log(oldData);
// }