-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from kpi-ua/KB-111-Add-new-tab-with-lecturer-…
…public-rating KB-111 Lecturer public rating
- Loading branch information
Showing
8 changed files
with
180 additions
and
96 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import React from 'react'; | ||
|
||
interface RatingsProps { | ||
ratings: Intellect.Rating[]; | ||
} | ||
|
||
export const Ratings = ({ ratings }: RatingsProps) => { | ||
return ( | ||
<div className="relative justify-between gap-24 mt-4"> | ||
<p className="text-xs text-neutral-600"> | ||
Рейтингове оцінювання професійної діяльності науково-педагогічних працівників є складовою | ||
внутрішньої системи забезпечення якості вищої освіти та освітньої діяльності університету. | ||
</p> | ||
|
||
<div className="w-full overflow-x-scroll"> | ||
<table className="-ml-6 -mr-6 border-separate whitespace-nowrap border-spacing-x-6 border-spacing-y-2"> | ||
<thead className="text-sm text-left text-primary"> | ||
<tr className="border-2 border-solid border-neutral-950"> | ||
<th>Навчальний рік</th> | ||
<th>НМР</th> | ||
<th>НIР</th> | ||
<th>ОВР</th> | ||
<th>Загальний рейтинг</th> | ||
<th>Кафедра</th> | ||
</tr> | ||
</thead> | ||
<tbody className="text-xs text-neutral-600"> | ||
{ratings.map(rating => ( | ||
<tr key={rating.studyYear}> | ||
<td>{rating.studyYear}</td> | ||
<td>{rating.educationalMethodologicalRating}</td> | ||
<td>{rating.scientificInnovativeRating}</td> | ||
<td>{rating.organizationalEducationalRating}</td> | ||
<td>{rating.overallRating}</td> | ||
<td>{rating.subdivision.name}</td> | ||
</tr> | ||
))} | ||
</tbody> | ||
</table> | ||
</div> | ||
|
||
<p className="mt-6"> | ||
<strong>НМР</strong> – рейтинг з навчально-методичної роботи <br /> | ||
<strong>НIР</strong> - рейтинг з науково-інноваційної роботи <br /> | ||
<strong>ОВР</strong> - рейтинг з організаційно-виховної роботи <br /> | ||
</p> | ||
</div> | ||
); | ||
}; |
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.