-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…e-evaluation-detail Feature/#103 lecture evaluation detail
- Loading branch information
Showing
38 changed files
with
773 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
core/model/src/main/java/com/suwiki/core/model/enums/LectureEvaluationTab.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.suwiki.core.model.enums | ||
|
||
enum class LectureEvaluationTab( | ||
val position: Int, | ||
val title: String, | ||
) { | ||
LECTURE_EVALUATION( | ||
position = 0, | ||
title = "강의평가", | ||
), | ||
EXAM_INFO( | ||
position = 1, | ||
title = "시험정보", | ||
), | ||
} |
6 changes: 5 additions & 1 deletion
6
core/model/src/main/java/com/suwiki/core/model/lectureevaluation/exam/ExamEvaluationList.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
package com.suwiki.core.model.lectureevaluation.exam | ||
|
||
import androidx.compose.runtime.Stable | ||
|
||
@Stable | ||
data class ExamEvaluationList( | ||
val data: List<ExamEvaluation>, | ||
val needBuyExam: Boolean, | ||
val written: Boolean, | ||
) | ||
|
||
@Stable | ||
data class ExamEvaluation( | ||
val id: Long, | ||
val selectedSemester: String, | ||
val examInfo: String, | ||
val examType: String?, | ||
val examType: String, | ||
val examDifficulty: String, | ||
val content: String, | ||
) |
24 changes: 15 additions & 9 deletions
24
...ain/java/com/suwiki/core/model/lectureevaluation/lecture/LectureEvaluationExtraAverage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
package com.suwiki.core.model.lectureevaluation.lecture | ||
|
||
import androidx.compose.runtime.Stable | ||
import com.suwiki.core.model.enums.GradeLevel | ||
import com.suwiki.core.model.enums.HomeworkLevel | ||
import com.suwiki.core.model.enums.TeamLevel | ||
|
||
@Stable | ||
data class LectureEvaluationExtraAverage( | ||
val id: Long, | ||
val lectureInfo: LectureInfo, | ||
val lectureTotalAvg: Float, | ||
val lectureSatisfactionAvg: Float, | ||
val lectureHoneyAvg: Float, | ||
val lectureLearningAvg: Float, | ||
val lectureTeamAvg: Float, | ||
val lectureDifficultyAvg: Float, | ||
val lectureHomeworkAvg: Float, | ||
val id: Long = 0, | ||
val info: LectureInfo = LectureInfo(), | ||
val totalAvg: Float = 0f, | ||
val satisfactionAvg: Float = 0f, | ||
val honeyAvg: Float = 0f, | ||
val learningAvg: Float = 0f, | ||
val teamAvg: TeamLevel = TeamLevel.EXIST, | ||
val gradeAvg: GradeLevel = GradeLevel.DIFFICULT, | ||
val homeworkAvg: HomeworkLevel = HomeworkLevel.MANY, | ||
) |
4 changes: 4 additions & 0 deletions
4
...el/src/main/java/com/suwiki/core/model/lectureevaluation/lecture/LectureEvaluationList.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.