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

feat(ui): calendar sidebar redesign #464

Open
wants to merge 43 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
705ee07
Merge pull request #1 from Longhorn-Developers/main
EthanL06 Oct 21, 2024
e0aff38
Merge branch 'Longhorn-Developers:main' into main
EthanL06 Oct 23, 2024
da127d1
feat: update calendar sidebar, footer, and header with Figma design
EthanL06 Dec 23, 2024
b83207c
chore: run lint
EthanL06 Dec 23, 2024
5754c1c
Merge pull request #4 from Longhorn-Developers/main
EthanL06 Dec 23, 2024
eae6253
Merge remote-tracking branch 'origin/main' into feature/sidebar-redesign
EthanL06 Dec 23, 2024
5e4c38a
feat: update header with Figma design
EthanL06 Dec 23, 2024
2f30ce2
chore: run lint
EthanL06 Dec 23, 2024
aca0594
chore: remove unused vars
EthanL06 Dec 23, 2024
c87643f
chore: fix types
EthanL06 Dec 23, 2024
c5aab8a
fix: adjust sidebar minimum width
EthanL06 Dec 26, 2024
c437aaf
fix: update LogoIcon layout to ensure text is always displayed
EthanL06 Dec 26, 2024
d34ab80
feat: add spacing constants
EthanL06 Dec 28, 2024
83479b9
fix: add sidebar styling with spacing system and sticky header
EthanL06 Dec 28, 2024
0753f0a
fix: update spacing constants to use rem units
EthanL06 Dec 28, 2024
96f86d2
refactor: replace padding with spacing system and colors with UTRP theme
EthanL06 Dec 28, 2024
ab3eb50
refactor: rename ImportantLinks to ResourceLinks
EthanL06 Dec 28, 2024
9f8e331
refactor: simplify CalendarHeader button component by using icon prop
EthanL06 Dec 28, 2024
a039ea9
feat: add sidebar open and close transition
EthanL06 Dec 28, 2024
4027ece
refactor: rename unused var
EthanL06 Dec 28, 2024
68990ec
Merge branch 'main' into feature/sidebar-redesign
EthanL06 Dec 28, 2024
859c2b2
fix: update social icon color
EthanL06 Dec 31, 2024
fcc3581
feat: improve layout and spacing in calendar components
EthanL06 Jan 3, 2025
59a4993
Merge branch 'feature/sidebar-redesign' of https://github.com/EthanL0…
EthanL06 Jan 3, 2025
46fa071
refactor: remove unused GearSix icon and options handler
EthanL06 Jan 3, 2025
9bd0ec8
feat: update calendar components with new icons and improved spacing
EthanL06 Jan 3, 2025
a4ad6f7
fix: correct class name
EthanL06 Jan 3, 2025
4ca3025
refactor: organize social links into array and update link styling
EthanL06 Jan 3, 2025
7ed1ea3
refactor: remove unused import
EthanL06 Jan 3, 2025
f1804ab
fix: adjust gap spacing in radio button
EthanL06 Jan 8, 2025
af8a0b8
fix: update divider component to use theme offwhite1
EthanL06 Jan 8, 2025
f89cd43
fix: increase size of outward arrow icon
EthanL06 Jan 8, 2025
3f6332d
feat: add getSpacingInPx function to convert rem to pixels
EthanL06 Jan 8, 2025
11f5d08
fix: update gap spacing in CalendarSchedules component to use spacing…
EthanL06 Jan 8, 2025
d5dbf38
fix: rollback footer social icons to original icons
EthanL06 Jan 8, 2025
12c396b
fix: update Calendar styles to use theme offwhite1 and adjust padding…
EthanL06 Jan 8, 2025
01cf99a
fix: update LargeLogo component to use gap-spacing-3
EthanL06 Jan 8, 2025
f24e72a
Merge branch 'main' into feature/sidebar-redesign
EthanL06 Jan 8, 2025
6894a58
fix: update button variants to 'minimal' and adjust styles for consis…
EthanL06 Jan 8, 2025
1b00026
fix: adjust padding in Calendar component for better layout consistency
EthanL06 Jan 8, 2025
1592d4f
Merge branch 'main' into feature/sidebar-redesign
EthanL06 Jan 8, 2025
75fd48d
fix: increase size of arrow icon
EthanL06 Jan 8, 2025
b2f1bbd
fix: add shrink-0 to radio buttons
EthanL06 Jan 8, 2025
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
55 changes: 44 additions & 11 deletions src/views/components/calendar/Calendar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import type { CalendarTabMessages } from '@shared/messages/CalendarMessages';
import type { Course } from '@shared/types/Course';
import { CRX_PAGES } from '@shared/types/CRXPages';
import { openReportWindow } from '@shared/util/openReportWindow';
import CalendarBottomBar from '@views/components/calendar/CalendarBottomBar';
import CalendarGrid from '@views/components/calendar/CalendarGrid';
import CalendarHeader from '@views/components/calendar/CalendarHeader';
Expand All @@ -13,9 +15,13 @@ import { useFlattenedCourseSchedule } from '@views/hooks/useFlattenedCourseSched
import { MessageListener } from 'chrome-extension-toolkit';
import React, { useEffect, useState } from 'react';

import CalendarFooter from './CalendarFooter';
import TeamLinks from './TeamLinks';
import OutwardArrowIcon from '~icons/material-symbols/arrow-outward';
import MenuIcon from '~icons/material-symbols/menu';

import { Button } from '../common/Button';
import { LargeLogo } from '../common/LogoIcon';
import Text from '../common/Text/Text';
import CalendarFooter from './CalendarFooter';
/**
* Calendar page component
*/
Expand Down Expand Up @@ -54,25 +60,52 @@ export default function Calendar(): JSX.Element {
return (
<CalendarContext.Provider value>
<div className='h-full w-full flex flex-col'>
<CalendarHeader
onSidebarToggle={() => {
setShowSidebar(!showSidebar);
}}
/>
<div className='h-full flex overflow-auto pl-3'>
<div className='h-screen flex overflow-auto'>
{showSidebar && (
<div className='h-full flex flex-none flex-col justify-between pb-5 screenshot:hidden'>
<div className='mb-3 h-full w-fit flex flex-col overflow-auto pb-2 pl-4.5 pr-4 pt-5'>
<div className='h-full flex flex-none flex-col justify-between border-r border-ut-offwhite/75 px-7.5 py-5 shadow-[2px_0_10px,rgba(214_210_196_/_.1)] screenshot:hidden'>
<div className='h-full w-fit flex flex-col overflow-auto'>
<div className='w-full flex items-center justify-between gap-x-3xl pb-[1.5625rem]'>
<LargeLogo />
<Button
variant='single'
color='theme-black'
onClick={() => {
setShowSidebar(!showSidebar);
}}
className='h-fit screenshot:hidden !p-0'
>
<MenuIcon className='size-6' />
</Button>
</div>
<CalendarSchedules />
<Divider orientation='horizontal' size='100%' className='my-5' />
<ImportantLinks />
<Divider orientation='horizontal' size='100%' className='my-5' />
<TeamLinks />
{/* <TeamLinks /> */}
<a
href={CRX_PAGES.REPORT}
className='flex items-center gap-0.5 text-ut-burntorange underline-offset-2 hover:underline'
target='_blank'
rel='noreferrer'
onClick={event => {
event.preventDefault();
openReportWindow();
}}
>
<Text variant='p'>Send us Feedback!</Text>
<OutwardArrowIcon className='h-3 w-3' />
</a>
</div>
<CalendarFooter />
</div>
)}
<div className='h-full min-w-5xl flex flex-grow flex-col overflow-y-auto'>
<CalendarHeader
sidebarOpen={showSidebar}
onSidebarToggle={() => {
setShowSidebar(!showSidebar);
}}
/>
<div className='min-h-2xl flex-grow overflow-auto pl-2 pr-4 pt-6 screenshot:min-h-xl'>
<CalendarGrid courseCells={courseCells} setCourse={setCourse} />
</div>
Expand Down
21 changes: 15 additions & 6 deletions src/views/components/calendar/CalendarFooter.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,32 @@
import { openTabFromContentScript } from '@views/lib/openNewTabFromContentScript';
import React from 'react';

import DiscordIcon from '~icons/bi/discord';
import SettingsIcon from '~icons/material-symbols/settings';
import GithubIcon from '~icons/ri/github-fill';
import InstagramIcon from '~icons/ri/instagram-line';
import LinkedinIcon from '~icons/ri/linkedin-box-fill';

import { Button } from '../common/Button';
import Link from '../common/Link';

/**
* Opens the options page in a new tab.
* @returns A promise that resolves when the options page is opened.
*/
const handleOpenOptions = async (): Promise<void> => {
const url = chrome.runtime.getURL('/options.html');
await openTabFromContentScript(url);
};

/**
* The footer section of the calendar's sidebar
* @returns
*/
export default function CalendarFooter(): JSX.Element {
return (
<footer className='min-w-full w-0 pl-4.5 space-y-2'>
<div className='flex gap-2'>
<footer className='min-w-full w-0 flex items-center justify-between'>
<div className='flex gap-3.75'>
<Link className='linkanimate' href='https://www.instagram.com/longhorndevelopers'>
<InstagramIcon className='h-6 w-6' />
</Link>
Expand All @@ -31,10 +43,7 @@ export default function CalendarFooter(): JSX.Element {
<LinkedinIcon className='h-6 w-6 -mx-0.75' />
</Link>
</div>
<p className='text-2.5 text-ut-concrete font-light tracking-wide'>
UT Registration Plus is a project under Longhorn Developers, a student-led organization aimed at
addressing issues at UT Austin.
</p>
<Button variant='single' icon={SettingsIcon} color='ut-black' onClick={handleOpenOptions} />
</footer>
);
}
47 changes: 20 additions & 27 deletions src/views/components/calendar/CalendarHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,25 @@ import { initSettings, OptionsStore } from '@shared/storage/OptionsStore';
import { Button } from '@views/components/common/Button';
import CourseStatus from '@views/components/common/CourseStatus';
import Divider from '@views/components/common/Divider';
import { LargeLogo } from '@views/components/common/LogoIcon';
import ScheduleTotalHoursAndCourses from '@views/components/common/ScheduleTotalHoursAndCourses';
import useSchedules from '@views/hooks/useSchedules';
import { openTabFromContentScript } from '@views/lib/openNewTabFromContentScript';
import React, { useEffect, useState } from 'react';

import MenuIcon from '~icons/material-symbols/menu';
// import RefreshIcon from '~icons/material-symbols/refresh';
import SettingsIcon from '~icons/material-symbols/settings';

/**
* Opens the options page in a new tab.
* @returns A promise that resolves when the options page is opened.
*/
const handleOpenOptions = async (): Promise<void> => {
const url = chrome.runtime.getURL('/options.html');
await openTabFromContentScript(url);
};
import MenuIcon from '~icons/material-symbols/menu';

interface CalendarHeaderProps {
sidebarOpen?: boolean;
onSidebarToggle?: () => void;
}

/**
* Renders the header component for the calendar.
* @returns The JSX element representing the calendar header.
*/
export default function CalendarHeader({ onSidebarToggle }: CalendarHeaderProps): JSX.Element {
export default function CalendarHeader({ sidebarOpen, onSidebarToggle }: CalendarHeaderProps): JSX.Element {
const [enableCourseStatusChips, setEnableCourseStatusChips] = useState<boolean>(false);
const [_enableDataRefreshing, setEnableDataRefreshing] = useState<boolean>(false);
const [enableDataRefreshing, setEnableDataRefreshing] = useState<boolean>(false);

const [activeSchedule] = useSchedules();

Expand All @@ -58,23 +47,28 @@ export default function CalendarHeader({ onSidebarToggle }: CalendarHeaderProps)
}, []);

return (
<div className='flex items-center gap-5 overflow-x-auto overflow-y-hidden border-b border-ut-offwhite px-7 py-4 md:overflow-x-hidden'>
<Button
variant='single'
icon={MenuIcon}
color='ut-gray'
onClick={onSidebarToggle}
className='screenshot:hidden'
/>
<LargeLogo />
<Divider className='mx-2 self-center md:mx-4' size='2.5rem' orientation='vertical' />
<div className='flex-1 screenshot:transform-origin-left screenshot:scale-120'>
<div className='min-h-[91px] flex items-center gap-5 overflow-x-auto overflow-y-hidden px-7 py-4 md:overflow-x-hidden'>
{!sidebarOpen && (
<Button
variant='single'
color='theme-black'
onClick={onSidebarToggle}
className='h-fit screenshot:hidden !p-0'
>
<MenuIcon className='size-6' />
</Button>
)}

<div className='screenshot:transform-origin-left screenshot:scale-120'>
<ScheduleTotalHoursAndCourses
scheduleName={activeSchedule.name}
totalHours={activeSchedule.hours}
totalCourses={activeSchedule.courses.length}
/>
</div>

<Divider className='mx-2 self-center md:mx-4 screenshot:hidden' size='2.5rem' orientation='vertical' />

<div className='hidden flex-row items-center justify-end gap-6 screenshot:hidden lg:flex'>
{enableCourseStatusChips && (
<>
Expand All @@ -86,7 +80,6 @@ export default function CalendarHeader({ onSidebarToggle }: CalendarHeaderProps)

{/* <Button variant='single' icon={UndoIcon} color='ut-black' />
<Button variant='single' icon={RedoIcon} color='ut-black' /> */}
<Button variant='single' icon={SettingsIcon} color='theme-black' onClick={handleOpenOptions} />
</div>
</div>
);
Expand Down
22 changes: 11 additions & 11 deletions src/views/components/calendar/ImportantLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,26 @@ const links: LinkItem[] = [
text: 'Course Schedule Archives',
url: 'https://registrar.utexas.edu/schedules/archive',
},
{
text: 'My Degree Audit (IDA)',
url: 'https://utdirect.utexas.edu/apps/degree/audits/',
},
// {
// text: "Summer '24 Course Schedule",
// url: 'https://utdirect.utexas.edu/apps/registrar/course_schedule/20246/',
// },
// {
// text: "'24-'25 Academic Calendar",
// url: 'https://registrar.utexas.edu/calendars/24-25',
// },
{
text: "'24-'25 Academic Calendar",
url: 'https://registrar.utexas.edu/calendars/24-25',
},
{
text: 'Registration Info Sheet',
text: 'Registration Info Sheet (RIS)',
url: 'https://utdirect.utexas.edu/registrar/ris.WBX',
},
{
text: 'Register for Courses',
url: 'https://utdirect.utexas.edu/registration/chooseSemester.WBX',
},
{
text: 'Degree Audit',
url: 'https://utdirect.utexas.edu/apps/degree/audits/',
},
];

/**
Expand All @@ -50,8 +50,8 @@ const links: LinkItem[] = [
*/
export default function ImportantLinks({ className }: Props): JSX.Element {
return (
<article className={clsx(className, 'flex flex-col gap-2')}>
<Text variant='h3'>Useful Links</Text>
<article className={clsx(className, 'flex flex-col gap-2.5')}>
<Text variant='h3'>Resources</Text>
{links.map(link => (
<a
key={link.text}
Expand Down
41 changes: 12 additions & 29 deletions src/views/components/common/ScheduleTotalHoursAndCourses.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,36 +24,19 @@ export default function ScheduleTotalHoursAndCourses({
totalCourses,
}: ScheduleTotalHoursAndCoursesProps): JSX.Element {
return (
<div className='min-w-full w-0 items-center whitespace-nowrap'>
<Text className='truncate text-ut-burntorange normal-case!' variant='h1' as='span'>
{scheduleName}
<div className='min-w-full flex flex-col items-start whitespace-nowrap'>
<Text className='truncate text-ut-burntorange' variant='h1' as='span'>
{`${scheduleName} `}
</Text>
<Text variant='h3' as='div' className='flex flex-row items-center gap-2.5 text-theme-black'>
<Text variant='h4' as='span' className='hidden text-ut-black uppercase screenshot:inline sm:inline'>
{totalHours} {totalHours === 1 ? 'Hour' : 'Hours'}
</Text>

<Text variant='h4' as='span' className='hidden text-ut-black uppercase screenshot:inline sm:inline'>
{totalCourses} {totalCourses === 1 ? 'Course' : 'Courses'}
</Text>
</Text>
<div className='flex flex-row items-center gap-2.5 text-theme-black'>
<div className='flex flex-row items-center gap-1.25 text-theme-black'>
<Text variant='h3' as='span' className='capitalize screenshot:inline sm:inline'>
{totalHours}
</Text>
<Text
variant='h3'
as='span'
className='capitalize screenshot:inline sm:inline font-all-small-caps!'
>
{totalHours === 1 ? 'HOUR' : 'HOURS'}
</Text>
</div>
<div className='flex flex-row items-center gap-1.25 text-theme-black'>
<Text variant='h3' as='span' className='capitalize screenshot:inline sm:inline'>
{totalCourses}
</Text>
<Text
variant='h3'
as='span'
className='capitalize screenshot:inline sm:inline font-all-small-caps!'
>
{totalCourses === 1 ? 'COURSE' : 'COURSES'}
</Text>
</div>
</div>
</div>
);
}
Loading