From e3a1fcfb5ab4e9d84a243a1034dcce35b917ab45 Mon Sep 17 00:00:00 2001 From: OGBONNA SUNDAY <62995161+OgDev-01@users.noreply.github.com> Date: Wed, 1 Feb 2023 17:21:03 +0100 Subject: [PATCH] feat: add profile badge to connected user profile (#824) Fixes #821 Fixes #820 --- components/atoms/Badge/badge.tsx | 17 +++++++++++++++++ components/atoms/InsightBadge/insight-badge.tsx | 6 ++---- .../contributor-profile-info.tsx | 10 +++++++--- layouts/profile.tsx | 2 +- stories/atoms/badge.stories.tsx | 15 +++++++++++++++ stories/atoms/insight-badge.stories.tsx | 14 ++++++-------- 6 files changed, 48 insertions(+), 16 deletions(-) create mode 100644 components/atoms/Badge/badge.tsx create mode 100644 stories/atoms/badge.stories.tsx diff --git a/components/atoms/Badge/badge.tsx b/components/atoms/Badge/badge.tsx new file mode 100644 index 000000000..7103f5be9 --- /dev/null +++ b/components/atoms/Badge/badge.tsx @@ -0,0 +1,17 @@ +interface BadgeProps { + text: string; + className?: string; +} +const Badge = ({ text, className }: BadgeProps): JSX.Element => { + return ( +
+ {text} +
+ ); +}; + +export default Badge; diff --git a/components/atoms/InsightBadge/insight-badge.tsx b/components/atoms/InsightBadge/insight-badge.tsx index 3a380a9ac..0262ed8e7 100644 --- a/components/atoms/InsightBadge/insight-badge.tsx +++ b/components/atoms/InsightBadge/insight-badge.tsx @@ -1,10 +1,8 @@ -import Text from "components/atoms/Typography/text"; - interface BadgeProps { isPublic: boolean; } -const Badge = ({ isPublic }: BadgeProps): JSX.Element => { +const InsightsBadge = ({ isPublic }: BadgeProps): JSX.Element => { return (
{!!isPublic ? "Public" : "Private"} @@ -12,4 +10,4 @@ const Badge = ({ isPublic }: BadgeProps): JSX.Element => { ); }; -export default Badge; +export default InsightsBadge; diff --git a/components/molecules/ContributorProfileInfo/contributor-profile-info.tsx b/components/molecules/ContributorProfileInfo/contributor-profile-info.tsx index 60b68c3dc..b036fc92d 100644 --- a/components/molecules/ContributorProfileInfo/contributor-profile-info.tsx +++ b/components/molecules/ContributorProfileInfo/contributor-profile-info.tsx @@ -7,6 +7,7 @@ import { HiOutlineMail } from "react-icons/hi"; import LanguagePill from "components/atoms/LanguagePill/LanguagePill"; import Title from "components/atoms/Typography/title"; +import Badge from "components/atoms/Badge/badge"; interface ContributorProfileInfoProps { githubName: string; @@ -29,9 +30,12 @@ const ContributorProfileInfo = ({ return (
- - {githubName} - +
+ + {githubName} + + {isConnected && } +
{`@${githubName}`} diff --git a/layouts/profile.tsx b/layouts/profile.tsx index 5450a0bdd..ad02077c0 100644 --- a/layouts/profile.tsx +++ b/layouts/profile.tsx @@ -8,7 +8,7 @@ const ProfileLayout = ({ children }: { children: React.ReactNode }) => { <>
-
{children}
+
{children}