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: Implement contribution page #263

Merged
merged 8 commits into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from 6 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 @@ -17,13 +17,13 @@ export interface LanguageObject {
}

interface CardHorizontalBarChartProps {
languagesUsed: LanguageObject[];
languageList: LanguageObject[];
}

const languageToColor: AllSimpleColors = colors as AllSimpleColors;

const CardHorizontalBarChart = ({ languagesUsed }: CardHorizontalBarChartProps): JSX.Element => {
const sortedLangArray = languagesUsed.sort((a, b) => b.percentageUsed - a.percentageUsed);
const CardHorizontalBarChart = ({ languageList }: CardHorizontalBarChartProps): JSX.Element => {
const sortedLangArray = languageList.sort((a, b) => b.percentageUsed - a.percentageUsed);

const [descriptText, setDescriptText] = useState(sortedLangArray[0].languageName);

Expand Down
8 changes: 4 additions & 4 deletions components/molecules/ContributorTable/contributor-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ export interface PRs {
}

interface CardTableProps {
prList: PRs[];
listOfPRs: PRs[];
}

const ContributorTable = ({ prList }: CardTableProps) => {
const ContributorTable = ({ listOfPRs }: CardTableProps) => {
return (
prList.length > 0 ?
listOfPRs.length > 0 ?
<>
<div className="flex gap-2 items-center bg-light-slate-3 rounded-md px-2 py-1">
<div className="w-3/5">
Expand Down Expand Up @@ -49,7 +49,7 @@ const ContributorTable = ({ prList }: CardTableProps) => {
</div>
</IconContext.Provider>
</div>
{prList.map(({prName, prStatus, prIssuedTime, prClosedTime, noOfFilesChanged, noOfLinesChanged}, index) =>
{listOfPRs.map(({prName, prStatus, prIssuedTime, prClosedTime, noOfFilesChanged, noOfLinesChanged}, index) =>
<div key={index} className="flex gap-2 items-center px-2 py-1">
<div className="flex item-center gap-2 w-3/5">
{prStatus === "open" ?
Expand Down
28 changes: 12 additions & 16 deletions components/organisms/ContributorCard/contributor-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ interface ContributorObject {
dateOfFirstPR: string;
};
repoList: RepoList[];
lineChartOption: object;
languagesUsed: LanguageObject[];
prList: PRs[];
lineChart: object;
languageList: LanguageObject[];
listOfPRs: PRs[];
}

interface ContributorCardProps {
Expand All @@ -31,31 +31,27 @@ interface ContributorCardProps {
}

const ContributorCard = ({ className, contributor }: ContributorCardProps) => {
const { profile, repoList, lineChartOption, languagesUsed, prList } = contributor;
const { profile, repoList, lineChart, languageList, listOfPRs } = contributor;
const [ showPRs, setShowPRs ] = useState(false);

return (
<Card className={className} >
<Card className={className}>
<div className="flex flex-col gap-2">
<div className="flex w-full justify-between gap-2">
<CardProfile {...profile} />
<div className="w-32">
<CardHorizontalBarChart languagesUsed={languagesUsed} />
<CardHorizontalBarChart languageList={languageList} />
</div>
</div>
<CardLineChart lineChartOption={lineChartOption}/>
<CardRepoList repoList={repoList}/>
{showPRs ?
<CardLineChart lineChartOption={lineChart} />
<CardRepoList repoList={repoList} />
{showPRs ? (
<div className="p-4">
<ContributorTable prList={prList} />
<ContributorTable listOfPRs={listOfPRs} />
</div>

:

null
}
) : null}
<div className="flex w-full py-3 justify-center">
<Button onClick={() => setShowPRs(prevState => !prevState)} type="link">
<Button onClick={() => setShowPRs((prevState) => !prevState)} type="link">
<Text className="!text-xs !text-light-slate-11 font-medium">
{showPRs ? "Hide" : "Show"} latest pull requests
</Text>
Expand Down
14 changes: 14 additions & 0 deletions components/organisms/Contributors/contributors.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import useContributorData from "lib/hooks/useContributorData";
import ContributorCard from "../ContributorCard/contributor-card";
const Contributors = (): JSX.Element =>{
const data = useContributorData();
OgDev-01 marked this conversation as resolved.
Show resolved Hide resolved
const array = Array.apply(null, Array(9));
return (
<div className="w-full grid grid-cols-automobile md:grid-cols-autodesktop gap-3">
{array.map((contributor, index) => (
<ContributorCard key={index} className="" contributor={{ ...data }} />
))}
</div>
);
};
export default Contributors;
5 changes: 4 additions & 1 deletion components/organisms/ToolsDisplay/tools-display.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import Contributors from "../Contributors/contributors";

import Dashboard from "../Dashboard/dashboard";
import Reports from "../Reports/reports";
Expand All @@ -17,7 +18,9 @@ const Tool = ({ tool }: ToolProps): JSX.Element => {
return <Repositories />;

case "Reports":
return <Reports/>;
return <Reports/>;
case "Contributors":
return <Contributors/>;
default:
return <> {tool ? `${tool}` : "Test"} Tool Page</>;
}
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
module.exports = {
reactStrictMode: true,
images: {
domains: ["avatars.githubusercontent.com"]
domains: ["avatars.githubusercontent.com", "images.unsplash.com"]
}
};
10 changes: 10 additions & 0 deletions stories/organisms/contributors.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import Contributors from "components/organisms/Contributors/contributors";

const StoryConfig = {
title: "Design System/Organisms/Contributors",
};
export default StoryConfig;

const ContributorsTemplate = (): JSX.Element => <Contributors />;
export const ContributorsStory = ContributorsTemplate.bind({});

Loading