Skip to content

Commit

Permalink
Merge pull request #731 from thinc-org/beta
Browse files Browse the repository at this point in the history
Deploy Production 15/1/2568
  • Loading branch information
leomotors authored Jan 15, 2025
2 parents 3853311 + 08de7d9 commit 09708d1
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 27 deletions.
19 changes: 19 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"mode": "exit",
"tag": "beta",
"initialVersions": {
"admin-api": "1.3.1",
"admin-web": "1.3.0",
"api": "1.9.1",
"reg-scraper": "1.5.1",
"web": "1.12.0",
"web-e2e": "0.3.0",
"@cgr/codegen": "1.5.0",
"@cgr/course-utils": "1.3.0",
"@cgr/project-config": "1.3.0",
"@cgr/schema": "1.5.0"
},
"changesets": [
"silly-rivers-hear"
]
}
5 changes: 5 additions & 0 deletions .changeset/silly-rivers-hear.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"web": patch
---

feat: update default semester to 67/2
6 changes: 6 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# web

## 1.12.1-beta.0

### Patch Changes

- 5ae9440: feat: update default semester to 67/2

## 1.12.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "1.12.0",
"version": "1.12.1-beta.0",
"private": true,
"scripts": {
"dev": "next dev -p 4200",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,11 @@ import { AnnouncementItem } from '@web/common/components/TopBar/components/Annou

// TODO Admin should be able to change the annoucement

export function getAnnouncement1(): AnnouncementItem {
return {
id: 'annoucement_1',
label: 'CU Get Reg เป็นเว็บไซต์ที่จัดทำโดยนิสิต ซึ่งได้รับการสนับสนุนเซิฟเวอร์จาก Reg Chula',
severity: 'info',
}
}

export function getNotRegChulaWarning(): AnnouncementItem {
return {
id: 'not_reg_chula',
label:
'CU Get Reg เป็นเพียงเครื่องมือที่ช่วยให้การวางแผนลงทะเบียนเรียนง่ายขึ้น แต่ไม่ใช่การลงทะเบียนเรียนจริง คุณสามารถลงทะเบียนเรียนได้ที่ https://www2.reg.chula.ac.th/ เพียงช่องทางเดียวเท่านั้น',
'CU Get Reg เป็นเว็บไซต์ที่จัดทำโดยนิสิต ซึ่งได้รับการสนับสนุนเซิฟเวอร์จาก Reg Chula โดยเป็นเพียงเครื่องมือที่ช่วยให้การวางแผนลงทะเบียนเรียนง่ายขึ้น แต่ไม่ใช่การลงทะเบียนเรียนจริง คุณสามารถลงทะเบียนเรียนได้ที่ https://www2.reg.chula.ac.th/ เพียงช่องทางเดียวเท่านั้น',
severity: 'warning',
}
}

export function term67Issue(): AnnouncementItem {
return {
id: 'term_67_issue',
label:
'ข้อมูลของปีการศึกษา 2567 จะยังมีไม่ครบ เนื่องจากปัญหาของการเชื่อมต่อระหว่าง CU Get Reg กับเว็บไซต์ของทะเบียนจุฬาฯ ขออภัยในความไม่สะดวก',
severity: 'error',
}
}
8 changes: 1 addition & 7 deletions apps/web/src/common/components/TopBar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import { useRouter } from 'next/router'

import { AnnouncementBar } from './components/AnnouncementBar'
import {
getAnnouncement1,
getNotRegChulaWarning,
term67Issue,
} from './components/AnnouncementBar/announcements'
import { getNotRegChulaWarning } from './components/AnnouncementBar/announcements'
import { ConfigBar } from './components/ConfigBar'
import { ConfigBarLayout } from './components/ConfigBar/styled'
import { NavBar } from './components/NavBar'
Expand All @@ -15,9 +11,7 @@ import { StickyContainer, StickySpace, TopBarLayout } from './styled'
export function AnnouncementSection() {
return (
<>
<AnnouncementBar announcement={getAnnouncement1()} />
<AnnouncementBar announcement={getNotRegChulaWarning()} />
<AnnouncementBar announcement={term67Issue()} />
</>
)
}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/common/constants/terms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ export const termOptions: TermOption[] = [
{ academicYear: '2564', semester: '1', label: '2564/1' },
]

export const tempHardCodedCurrentTerm = termOptions[2]
export const tempHardCodedCurrentTerm = termOptions[1]

0 comments on commit 09708d1

Please sign in to comment.