Skip to content

Commit

Permalink
listview icons
Browse files Browse the repository at this point in the history
  • Loading branch information
PJDeSmijter committed May 18, 2024
1 parent 894e17e commit 7d85e72
Show file tree
Hide file tree
Showing 11 changed files with 63 additions and 13 deletions.
8 changes: 7 additions & 1 deletion frontend/app/[locale]/admin/users/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@ import NavBar from "@app/[locale]/components/NavBar";
import Footer from "@app/[locale]/components/Footer";
import ListView from '@app/[locale]/components/ListView';
import BackButton from '@app/[locale]/components/BackButton';
import EmailIcon from '@mui/icons-material/Email';
import WorkIcon from '@mui/icons-material/Work';

const i18nNamespaces = ['common'];

export default async function Users({ params: { locale } }: { params: { locale: any } }) {
const { t, resources } = await initTranslations(locale, i18nNamespaces);

const headers = [t('email'), t('role'), ''];
const headers = [
<React.Fragment><EmailIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('email')}</React.Fragment>,
,
<React.Fragment><WorkIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('role')}</React.Fragment>
, ''];
const headers_backend = ['email', 'role', ''];

return (
Expand Down
9 changes: 7 additions & 2 deletions frontend/app/[locale]/components/CourseCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import {Card, CardContent, CardMedia, Typography, Box} from '@mui/material';
import {Course, getLastSubmissionFromProject, getProjectsFromCourse, Project, Submission,} from "@lib/api";
import {useTranslation} from "react-i18next";
import ListView from '@app/[locale]/components/ListView';
import AccesAlarm from '@mui/icons-material/AccessAlarm';
import Person from '@mui/icons-material/Person';

const CourseCard = ({params: {course}}: { params: { course: Course } }) => {
const [projects, setProjects] = useState<Project[]>([]);
Expand Down Expand Up @@ -40,8 +42,11 @@ const CourseCard = ({params: {course}}: { params: { course: Course } }) => {

fetchProjects();
}, [course.course_id]);

const headers = [t('name'), t('deadline'), '']

const headers = [
<React.Fragment><Person style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('name')}</React.Fragment>,
<React.Fragment><AccesAlarm style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " +t('deadline')}</React.Fragment>,
'']
const headers_backend = ['name', 'deadline', '']


Expand Down
10 changes: 9 additions & 1 deletion frontend/app/[locale]/components/GroupSubmissionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,22 @@
import ListView from "@app/[locale]/components/ListView";
import React from "react";
import {useTranslation} from "react-i18next";
import GroupsIcon from '@mui/icons-material/Groups';
import CalendarMonthIcon from '@mui/icons-material/CalendarMonth';
import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline';

const GroupSubmissionList = ({project_id, page_size = 5, search}: {
project_id: number,
page_size: number,
search: string
}) => {
const {t} = useTranslation()
const headers = [t("group_number"), t("submission_date"), t("Status"), ""]
const headers = [
<React.Fragment><GroupsIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('group_number')}</React.Fragment>,
<React.Fragment><CalendarMonthIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('submission_date')}</React.Fragment>,
<React.Fragment><CheckCircleOutlineIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('Status')}</React.Fragment>,
""
];
const headers_backend = ["group_nr", "submission_date", "status", ""]
const sortable = [true, true, false]

Expand Down
4 changes: 2 additions & 2 deletions frontend/app/[locale]/components/ListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ const ListView: NextPage<ListViewProps> = ({
<TableHead>
<TableRow>
{(get !== 'groups' && get !== 'projects' && get !== 'courses' && !(get === 'submissions' && !action_name)) &&
get !== 'course_teachers' && get !== 'users' && !(action_name && user?.role === 3) &&
get !== 'course_teachers' && get !== 'users' && !(action_name && user?.role === 3) && get !== 'archived_courses' &&
<StyledTableCell>
<Typography
variant={"body1"}
Expand Down Expand Up @@ -504,7 +504,7 @@ const ListView: NextPage<ListViewProps> = ({
{rows.map((row, index) => (
<StyledTableRow key={index}>
{((get !== 'groups' && get !== 'projects' && get !== 'courses' && !(get === 'submissions' && !action_name) && get != 'users') &&
get !== 'course_teachers' && !(action_name && user?.role === 3) &&
get !== 'course_teachers' && !(action_name && user?.role === 3 && get !== 'archived_courses') &&
<StyledTableCell>
{<CheckBoxWithCustomCheck checked={false}/>}
</StyledTableCell>)}
Expand Down
11 changes: 10 additions & 1 deletion frontend/app/[locale]/components/ProjectSubmissionsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import ListView from "@app/[locale]/components/ListView";
import React from "react";
import {useTranslation} from "react-i18next";
import GroupsIcon from '@mui/icons-material/Groups';
import CalendarMonthIcon from '@mui/icons-material/CalendarMonth';
import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline';


const ProjectSubmissionsList = ({project_id, page_size = 5, search}: {
Expand All @@ -11,7 +14,13 @@ const ProjectSubmissionsList = ({project_id, page_size = 5, search}: {
search: string
}) => {
const {t} = useTranslation()
const headers = [t("group_number"), t("submission_date"), t("Status"), ""]
const headers = [
<React.Fragment><GroupsIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('group_number')}</React.Fragment>
,
<React.Fragment><CalendarMonthIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('submission_date')}</React.Fragment>
,
<React.Fragment><CheckCircleOutlineIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('Status')}</React.Fragment>
, ""]
const headers_backend = ["group_nr", "submission_date", "status", ""]
const sortable = [true, true, false]

Expand Down
8 changes: 7 additions & 1 deletion frontend/app/[locale]/course/[course_id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@ import JoinCourseWithToken from "@app/[locale]/components/JoinCourseWithToken";
import ListView from '@app/[locale]/components/ListView';
import AddProjectButton from "@app/[locale]/components/AddProjectButton";
import React from "react";
import AccesAlarm from '@mui/icons-material/AccessAlarm';
import Person from '@mui/icons-material/Person';

const i18nNamespaces = ['common']

export default async function Course({params: {locale, course_id}, searchParams: {token}}:
{ params: { locale: any, course_id: number }, searchParams: { token: string } }) {
const {t, resources} = await initTranslations(locale, i18nNamespaces)
const headers = [t('name'), t('deadline'), '']

const headers = [
<React.Fragment><Person style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('name')}</React.Fragment>,
<React.Fragment><AccesAlarm style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " +t('deadline')}</React.Fragment>,
'']
const headers_backend = ['name', 'deadline', '']

return (
Expand Down
4 changes: 3 additions & 1 deletion frontend/app/[locale]/course/[course_id]/students/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ import ListView from '@app/[locale]/components/ListView';
import {Box, Button} from "@mui/material";
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
import React from "react";
import EmailIcon from '@mui/icons-material/Email';

const i18nNamespaces = ['common']

export default async function StudentsPage({ params }: { params: { locale: any, course_id: number } }) {
const { locale, course_id } = params;
const { t, resources } = await initTranslations(locale, i18nNamespaces);

const headers = [t('email')];
const headers = [
<React.Fragment><EmailIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('email')}</React.Fragment>];
const headers_backend = ['email'];

return (
Expand Down
3 changes: 2 additions & 1 deletion frontend/app/[locale]/course/[course_id]/teachers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ import ListView from '@app/[locale]/components/ListView';
import {Box, Button} from "@mui/material";
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
import React from "react";
import EmailIcon from '@mui/icons-material/Email';

const i18nNamespaces = ['common']

export default async function TeachersPage({params}: { params: { locale: any, course_id: number } }) {
const {locale, course_id} = params;
const {t, resources} = await initTranslations(locale, i18nNamespaces);

const headers = [t('email')];
const headers = [<React.Fragment><EmailIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('email')}</React.Fragment>];
const headers_backend = ['email'];

return (
Expand Down
7 changes: 6 additions & 1 deletion frontend/app/[locale]/course/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,19 @@ import NavBar from "@app/[locale]/components/NavBar";
import ListView from '@app/[locale]/components/ListView';
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
import {Box, Button} from "@mui/material";
import NotesIcon from '@mui/icons-material/Notes';
import MeetingRoomIcon from '@mui/icons-material/MeetingRoom';


const i18nNamespaces = ['common']

export default async function AllCoursesPage({params: {locale}}: { params: { locale: any } }) {
const {t, resources} = await initTranslations(locale, i18nNamespaces)

const headers = [t('name'), t('description'), t('open'), t('join/leave')]
const headers = [t('name'),
<React.Fragment><NotesIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('description')}</React.Fragment>,
, t('open'),
<React.Fragment><MeetingRoomIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('join_leave')}</React.Fragment>];
const headers_backend = ['name', 'description', 'open', 'join/leave']

return (
Expand Down
5 changes: 4 additions & 1 deletion frontend/app/[locale]/course/archived/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ import ListView from '@app/[locale]/components/ListView';
import initTranslations from "@app/i18n";
import TranslationsProvider from "@app/[locale]/components/TranslationsProvider";
import BackButton from "@app/[locale]/components/BackButton";
import NotesIcon from '@mui/icons-material/Notes';

const i18nNamespaces = ['common'];

const ArchivePage = async ({params: {locale}}) => {
const {t, resources} = await initTranslations(locale, i18nNamespaces);
const headers = [t('name'), t('description'), t('open')];
const headers = [t('name'),
<React.Fragment><NotesIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('description')}</React.Fragment>,
, t('open')];
const headers_backend = ['name', 'description', 'open'];

return (
Expand Down
7 changes: 6 additions & 1 deletion frontend/app/[locale]/project/[project_id]/groups/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,19 @@ import ListView from '@app/[locale]/components/ListView';
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
import { Button, Box } from "@mui/material";
import React from "react";
import GroupsIcon from '@mui/icons-material/Groups';
import MeetingRoomIcon from '@mui/icons-material/MeetingRoom';

const i18nNamespaces = ['common']

export default async function GroupPage({ params }: { params: { locale: any, project_id: number } }) {
const { locale, project_id: projectId } = params;
const { t, resources } = await initTranslations(locale, i18nNamespaces);

const headers = [t('group_nr'), t('members'), t('join/leave')];
const headers = [
<React.Fragment><GroupsIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('group_nr')}</React.Fragment>
, t('members'),
<React.Fragment><MeetingRoomIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('join_leave')}</React.Fragment>];
const headers_backend = ['group_nr', 'members', 'join/leave'];

return (
Expand Down

0 comments on commit 7d85e72

Please sign in to comment.