Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Features Release Modal #785

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import {
import { ModalBodyPagination } from "./ModalBodyPagination";
import InProgressIndicatorImage from "../../public/in-progress-indicator.png";
import SearchNEUIntegrationImage from "../../public/searchneu-integration.png";
import GeneralPlaceholdersImage from "../../public/general-placeholders.png";
import BetaMajorsImage from "../../public/2024-beta-majors.png";
import CoursesAddedToPlanImage from "../../public/courses-added-to-plan-check.png";
import { InfoOutlineIcon } from "@chakra-ui/icons";
import React, { useEffect } from "react";

Expand Down Expand Up @@ -73,6 +76,20 @@ const featurePagesData: FeaturePageData[] = [
),
image: InProgressIndicatorImage.src,
},
{
key: "courses-added-to-plan-check",
title: "Courses Added To Plan Check",
descriptionSection: (
<Stack>
<Text>See which courses have been added to your plan at a glance.</Text>
<Text>
Now, courses that have been added to your plan will be marked with a
checkmark in the sidebar!
</Text>
</Stack>
),
image: CoursesAddedToPlanImage.src,
},
{
key: "searchneu-integration",
title: "SearchNEU Integration",
Expand All @@ -92,6 +109,37 @@ const featurePagesData: FeaturePageData[] = [
),
image: SearchNEUIntegrationImage.src,
},
{
key: "general-placeholders",
title: "General Placeholder Courses",
descriptionSection: (
<Stack>
<Text>Not fully sure what courses you want to take yet?</Text>
<Text>
Add generic elective and NUPath tiles to your schedule to get a sense
of what your plan would look like.
</Text>
</Stack>
),
image: GeneralPlaceholdersImage.src,
},
{
key: "2024-beta-majors",
title: "Support for 2024-2025 Academic Catalog [BETA]",
descriptionSection: (
<Stack>
<Text>
We have added support for the undergraduate catalog of the 2024-2025
academic year.
</Text>
<Text>
You can now create plans that align with the new requirements for the
2024-2025 academic year.
</Text>
</Stack>
),
image: BetaMajorsImage.src,
},
];

export const Fall2024ReleaseModalContent: React.FC<ModalContentProps> = ({
Expand All @@ -114,7 +162,7 @@ export const Fall2024ReleaseModalContent: React.FC<ModalContentProps> = ({
borderBottom="1px"
borderColor="neutral.200"
>
<Text>Latest Release v26.09.24</Text>
<Text>Latest Release: Fall 2024</Text>
</ModalHeader>
{featurePages.length > 0 && <ModalBodyPagination pages={featurePages} />}
<ModalFooter alignContent="center" justifyContent="center">
Expand Down
Binary file added packages/frontend/public/2024-beta-majors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading