Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[I2-22]/history to tab#56

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
nnnwa76 wants to merge14 commits intomaster
base:master
Choose a base branch
Loading
fromI2-22/history-to-tab
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
14 commits
Select commitHold shift + click to select a range
2b10823
extracted execs section into a separate component
nnnwa76Jun 16, 2025
8299636
replaced image with tabs
nnnwa76Jun 16, 2025
db83bf8
combined execs and port data into single file
nnnwa76Jun 16, 2025
5b06bf6
refactored display components to use combined data file
nnnwa76Jun 16, 2025
498e02c
refactored history page to render data by selected year
nnnwa76Jun 16, 2025
0e342f7
added 2020 data
nnnwa76Jun 16, 2025
2d71cfb
removed unnecessary data files
nnnwa76Jun 16, 2025
db5e675
fixed import issues
nnnwa76Jun 16, 2025
30bfb15
2 space indent
nnnwa76Jun 16, 2025
c509fcf
added data for 2007-2019
nnnwa76Jul 1, 2025
d211ce3
fixed text overflow in portfolio tabs
nnnwa76Jul 1, 2025
999aa81
added head director role
nnnwa76Jul 1, 2025
9117d6d
removed port descriptions
nnnwa76Jul 1, 2025
18aca03
Merge branch 'master' into I2-22/history-to-tab
nnnwa76Jul 1, 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
45 changes: 0 additions & 45 deletionsfrontend/public/data/execs.ts
View file
Open in desktop

This file was deleted.

22 changes: 22 additions & 0 deletionsfrontend/public/data/members.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
export type Exec = {
name: string,
role: string,
};

export type PortfolioData = {
name: string,
description: string,
members: PortfolioMember[],
};

export type PortfolioMember = {
name: string,
role: PortfolioRole,
imageUrl: string;
}

export enum PortfolioRole {
DIRECTOR = "Director",
SUBCOM = "Subcommittee",
HEAD = "Head Director"
}
132 changes: 0 additions & 132 deletionsfrontend/public/data/portfolios.ts
View file
Open in desktop

This file was deleted.

78 changes: 78 additions & 0 deletionsfrontend/public/data/years/2007.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
import { Exec, PortfolioData, PortfolioRole } from "../members";

export const teamData = {
execs: [
{
name: "Stephen Cossell",
role: "President",
},
{
name: "Chris Macauley",
role: "Vice President",
},
{
name: "Mitchell Reid",
role: "Treasurer",
},
{
name: "Alex Kuptsov",
role: "Secretary",
},
] as Exec[],

portfolios: [
{
name: "Computer Engineering",
description: "",
members: [
{ name: "Andrew Bastardo", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Computer Science",
description: "",
members: [
{ name: "Glen Trevor Kelley", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "First Year",
description: "",
members: [
{ name: "Charissa Upcroft", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "David Claridge", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Publicity",
description: "",
members: [
{ name: "Mervin Sayseng", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Social",
description: "",
members: [
{ name: "Fionnbharr Davies", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Rupert Shuttleworth", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Software Engineering",
description: "",
members: [
{ name: "Andrew John Clayphan", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Technical",
description: "",
members: [
{ name: "V. Ramana Kirubagaran", role: PortfolioRole.HEAD, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Suwandy Tjin", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Yose Widjaja", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
] as PortfolioData[],
};
98 changes: 98 additions & 0 deletionsfrontend/public/data/years/2008.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
import { Exec, PortfolioData, PortfolioRole } from "../members";

export const teamData = {
execs: [
{
name: "David Claridge",
role: "President",
},
{
name: "Martin Mao",
role: "Vice President",
},
{
name: "Rhys Schmidtke",
role: "Treasurer",
},
{
name: "Elizabeth O'Loughlin",
role: "Secretary",
},
{
name: "Chaitanya Manapragada",
role: "Arc Delegate",
},
] as Exec[],

portfolios: [
{
name: "Computer Engineering",
description: "",
members: [
{ name: "Christopher Bailey", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Computer Science",
description: "",
members: [
{ name: "Matthew Conolly", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "First Year",
description: "",
members: [
{ name: "Luke Swithenbank", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Robert Massaioli", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Postgraduate",
description: "",
members: [
{ name: "Toby Rahilly", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Publicity",
description: "",
members: [
{ name: "Mervin Sayseng", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Social",
description: "",
members: [
{ name: "Anna Lyons", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Jayen Ashar", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Stuart Robinson", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Software Engineering",
description: "",
members: [
{ name: "Susan Shi", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "Technical",
description: "",
members: [
{ name: "V. Ramana Kirubagaran", role: PortfolioRole.HEAD, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Dean Berwick", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Prashant Varanasi", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
{
name: "The Switch",
description: "",
members: [
{ name: "Adam Brimo", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
{ name: "Sam Gentle", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
],
},
] as PortfolioData[],
};
Loading
Loading

[8]ページ先頭

©2009-2025 Movatter.jp