This repository has been archived on 2022-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
Alley-HSBC-Frontend/src/api-bodies/MockData.tsx
2022-03-30 04:02:48 -07:00

169 lines
3.4 KiB
TypeScript

const userLites = [
{
uuid: "",
emailAddress: "cth0604@gmail.com",
name: "Taehee Choi",
role: "Front-end Dev",
},
{
uuid: "1",
emailAddress: "cth0604@gmail.com",
name: "Arthur Marques",
role: "Team Lead",
},
{
uuid: "2",
emailAddress: "cth0604@gmail.com",
name: "Mathew Balsdon",
role: "Front-end Dev",
},
{
uuid: "3",
emailAddress: "cth0604@gmail.com",
name: "Benson Lin",
role: "Back-end Dev",
},
{
uuid: "4",
emailAddress: "cth0604@gmail.com",
name: "Jincheng Lu",
role: "Front-end Dev",
},
{
uuid: "5",
emailAddress: "cth0604@gmail.com",
name: "Esteban Margaron",
role: "Back-end Dev",
},
{
uuid: "6",
emailAddress: "cth0604@gmail.com",
name: "Leanna Resurreccion",
role: "Back-end Dev",
},
];
const meetings = [
{
meetingId: "",
liveParticipantIds: [],
registrantIds: ["", "1", "2", "3", "4", "5", "6"],
startTime: "2022-03-13T17:00:00",
duration: 15,
timezone: "",
joinUrl: "",
topic: "Daily Scrum Meeting",
},
{
meetingId: "1",
liveParticipantIds: [],
registrantIds: ["", "2", "4"],
startTime: "2022-03-16T17:30:00",
duration: 30,
timezone: "",
joinUrl: "",
topic: "Front-end Meeting",
},
{
meetingId: "2",
liveParticipantIds: ["3", "5"],
registrantIds: ["3", "5", "6"],
startTime: "2022-03-13T17:30:00",
duration: 30,
timezone: "",
joinUrl: "",
topic: "Back-end Meeting",
},
{
meetingId: "3",
liveParticipantIds: [],
registrantIds: ["", "1"],
startTime: "2022-03-10T07:27:27",
duration: 727,
timezone: "",
joinUrl: "",
topic: "WHEN YOU",
},
{
meetingId: "4",
liveParticipantIds: [],
registrantIds: ["", "2", "3"],
startTime: "2022-03-10T12:30:00",
duration: 120,
timezone: "",
joinUrl: "",
topic: "Bathroom Break",
},
{
meetingId: "5",
liveParticipantIds: [""],
registrantIds: [""],
startTime: "2022-03-24T23:11:11",
duration: 11,
timezone: "",
joinUrl: "",
topic: "Drink Coffee",
},
{
meetingId: "6",
liveParticipantIds: ["", "1"],
registrantIds: ["", "1", "2", "3", "4", "5"],
startTime: "2022-03-25T09:00:00",
duration: 360,
timezone: "",
joinUrl: "",
topic: "Get grilled by Jerry",
},
{
meetingId: "7",
liveParticipantIds: [],
registrantIds: ["", "5"],
startTime: "2022-03-25T15:00:00",
duration: 150,
timezone: "",
joinUrl: "",
topic: "Get grilled by Arthur",
},
{
meetingId: "8",
liveParticipantIds: ["2"],
registrantIds: ["", "5", "2", "3"],
startTime: "2022-03-25T17:45:00",
duration: 60,
timezone: "",
joinUrl: "",
topic: "Jerry comes back for round 2",
},
{
meetingId: "9",
liveParticipantIds: ["2", "5"],
registrantIds: ["", "4"],
startTime: "2022-03-25T18:15:30",
duration: 75,
timezone: "",
joinUrl: "",
topic: "Tag team!",
},
{
meetingId: "10",
liveParticipantIds: [],
registrantIds: ["", "1", "2", "3", "4", "5", "6"],
startTime: "2022-04-04T18:30:00",
duration: 90,
timezone: "",
joinUrl: "",
topic: "MVP Deadline",
},
];
const team = {
user: "",
manager: "1",
sameManager: ["2", "3", "4", "5", "6"],
directReports: [],
};
const favorites = ["2", "4"];
export { userLites, meetings, team, favorites };