Skip to content

Commit

Permalink
✏️ temporary disable some CTMS+ features
Browse files Browse the repository at this point in the history
  • Loading branch information
Belikhun committed Sep 23, 2023
1 parent eb86210 commit 810faaf
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 16 deletions.
2 changes: 1 addition & 1 deletion assets
15 changes: 0 additions & 15 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,6 @@
"name": "hát o u (dev)",
"default": true
},

"lambda": {
"host": "http://103.172.238.138:22075",
"name": "lambda"
},

"maylockhongkhi": {
"host": "https://out-of-service.now",
"name": "maylockhongkhi (Node)"
},

"render": {
"host": "https://ctmsmw.onrender.com",
"name": "Render (Node)"
},

"local": {
"host": "http://localhost:21075",
Expand Down
1 change: 1 addition & 0 deletions static/js/screens/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ const HomeScreen = {
});

this.setInputNow();
this.screen.show();
},

/**
Expand Down
13 changes: 13 additions & 0 deletions static/js/screens/results.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,19 @@ const ResultScreen = {
description: "xem toàn bộ kết quả học tập của các môn!"
});

// Check if we are testing using testing framework.
// If not, temporary disable this screen.
if (typeof oapi !== "object") {
this.screen.overlay({
show: true,
icon: "seedling",
title: "Tính năng tạm thời bị vô hiệu hóa!",
description: "Tính năng này hiện đã tạm dừng hoạt động do thay đổi hệ thống mới. CTMS+ sẽ tạm dừng hoạt động cho tới khi có thông báo mới."
});

return false;
}

let scanButton = createButton("XẾP NHÓM", {
icon: "search",
color: "orange",
Expand Down
13 changes: 13 additions & 0 deletions static/js/screens/schedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,19 @@ const ScheduleScreen = {
applyScrollable: false
});

// Check if we are testing using testing framework.
// If not, temporary disable this screen.
if (typeof oapi !== "object") {
this.screen.overlay({
show: true,
icon: "seedling",
title: "Tính năng tạm thời bị vô hiệu hóa!",
description: "Tính năng này hiện đã tạm dừng hoạt động do thay đổi hệ thống mới. CTMS+ sẽ tạm dừng hoạt động cho tới khi có thông báo mới."
});

return false;
}

this.note.group.style.display = "none";
this.loading = true;
this.screen.content = this.view;
Expand Down
13 changes: 13 additions & 0 deletions static/js/screens/subscribe.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,19 @@ const SubscribeScreen = {
description: "đăng kí lớp tín chỉ!"
});

// Check if we are testing using testing framework.
// If not, temporary disable this screen.
if (typeof oapi !== "object") {
this.screen.overlay({
show: true,
icon: "seedling",
title: "Tính năng tạm thời bị vô hiệu hóa!",
description: "Tính năng này hiện đã tạm dừng hoạt động do thay đổi hệ thống mới. CTMS+ sẽ tạm dừng hoạt động cho tới khi có thông báo mới."
});

return false;
}

this.screen.content = this.view;

this.onLogout();
Expand Down
13 changes: 13 additions & 0 deletions static/js/screens/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,19 @@ core.screen = {
applyScrollable: false
});

// Check if we are testing using testing framework.
// If not, temporary disable this screen.
if (typeof oapi !== "object") {
this.screen.overlay({
show: true,
icon: "seedling",
title: "Tính năng tạm thời bị vô hiệu hóa!",
description: "Tính năng này hiện đã tạm dừng hoạt động do thay đổi hệ thống mới. CTMS+ sẽ tạm dừng hoạt động cho tới khi có thông báo mới."
});

return false;
}

this.screen.content = this.view;
new Scrollable(this.view, { content: this.view.table });

Expand Down

0 comments on commit 810faaf

Please sign in to comment.