stamford-syntax-club / course-compose

Course Compose is a course-review website tailored for Stamford students, providing a platform for sharing and discovering insights about various courses
MIT License
2 stars 0 forks source link

Course Reviews Page #40

Closed chinathaip closed 6 months ago

chinathaip commented 9 months ago

Overview

This is a page to see the reviews of each course

Design: @NayHtetKyaw

https://www.figma.com/file/PXPMF9wEKCCGy8x1t0DVPJ/Course-Compose?type=design&node-id=0%3A1&mode=design&t=2XR2zFkFSFyocduy-1

Frontend - @NayHtetKyaw

DTO

// GET /api/courses/ITE221/reviews?pageNumber=1&pageSize=10
{
    "pageInformation": {
        "number": 1,
        "size": 10
    },
    "totalNumberOfItems": 2,
    "totalPages": 1,
    "data": [
                 {
                     "id": 5,
                     "academicYear": 2022,
                     "description": "Some review for ITE221!",
                     "rating": 2,
                     "isOwner": true,
                     "status": "APPROVED",
                     "votes": 5,
                     "course": {
                           "id": 2,
                           "code": "ITE221"
                     },
                     "profile": {
                           "id": "d5a59cb2-1f22-4e23-8ef0-7108e54f842b"
                     },
                     "created_at": "2023-11-23T14:00:00Z"
                 },
                 {
                     "id": 9,
                     "academicYear": 2022,
                     "description": "Some review for ITE442",
                     "rating": 2,
                     "status": "APPROVED",
                     "votes": 0,
                     "course": {
                           "id": 2,
                           "code": "ITE221"
                     },
                     "profile": {
                           "id": "j2a59cb2-1f22-4e23-8ef0-7108e54f849s"
                     },
                     "created_at": "2023-11-23T14:00:00Z"
                 }
     ]
}
NayHtetKyaw commented 9 months ago

I'll try my best !

chinathaip commented 9 months ago

I'll try my best !

Yessirr, let's start by creating the UI and display some course detail + reviews🔥

chinathaip commented 6 months ago

https://github.com/stamford-syntax-club/course-compose/pull/53