Skip to content

Commit

Permalink
feat: Tags (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
hachiojidev committed Oct 26, 2020
1 parent 8caae72 commit dbc4da2
Show file tree
Hide file tree
Showing 9 changed files with 173 additions and 1 deletion.
36 changes: 36 additions & 0 deletions src/components/Tag/StyledTag.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import styled, { DefaultTheme } from "styled-components";
import { TagProps, TagThemeVariant, variants } from "./types";

interface ThemedProps extends TagProps {
theme: DefaultTheme;
}

const InnerIcon = styled.span`
align-items: center;
display: inline-flex;
`;

export const StartIcon = styled(InnerIcon)`
margin-right: 0.5em;
`;

export const EndIcon = styled(InnerIcon)`
margin-left: 0.5em;
`;

const getTagVariantProp = (prop: keyof TagThemeVariant) => ({ theme, variant = variants.PURPLE }: ThemedProps) => {
return theme.tag[variant][prop];
};

export const StyledTag = styled.div<ThemedProps>`
align-items: center;
background-color: ${getTagVariantProp("background")};
border-radius: 16px;
color: ${getTagVariantProp("color")};
display: inline-flex;
font-size: 14px;
font-weight: 400;
height: 28px;
line-height: 1.5;
padding: 0 8px;
`;
67 changes: 67 additions & 0 deletions src/components/Tag/index.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
import React from "react";
import styled from "styled-components";
/* eslint-disable import/no-unresolved */
import { Meta } from "@storybook/react/types-6-0";
import Tag from "./index";

const Row = styled.div`
display: flex;
margin-bottom: 32px;
& > div {
margin-right: 16px;
}
`;

const CommunityIcon = () => (
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
<path
d="M8 8.5C9.08667 8.5 10.0467 8.76 10.8267 9.1C11.5467 9.42 12 10.14 12 10.92V11.3333C12 11.7 11.7 12 11.3333 12H4.66667C4.3 12 4 11.7 4 11.3333V10.9267C4 10.14 4.45333 9.42 5.17333 9.10667C5.95333 8.76 6.91333 8.5 8 8.5ZM2.66667 8.66667C3.4 8.66667 4 8.06667 4 7.33333C4 6.6 3.4 6 2.66667 6C1.93333 6 1.33333 6.6 1.33333 7.33333C1.33333 8.06667 1.93333 8.66667 2.66667 8.66667ZM3.42 9.4C3.17333 9.36 2.92667 9.33333 2.66667 9.33333C2.00667 9.33333 1.38 9.47333 0.813333 9.72C0.32 9.93333 0 10.4133 0 10.9533V11.3333C0 11.7 0.3 12 0.666667 12H3V10.9267C3 10.3733 3.15333 9.85333 3.42 9.4ZM13.3333 8.66667C14.0667 8.66667 14.6667 8.06667 14.6667 7.33333C14.6667 6.6 14.0667 6 13.3333 6C12.6 6 12 6.6 12 7.33333C12 8.06667 12.6 8.66667 13.3333 8.66667ZM16 10.9533C16 10.4133 15.68 9.93333 15.1867 9.72C14.62 9.47333 13.9933 9.33333 13.3333 9.33333C13.0733 9.33333 12.8267 9.36 12.58 9.4C12.8467 9.85333 13 10.3733 13 10.9267V12H15.3333C15.7 12 16 11.7 16 11.3333V10.9533ZM8 4C9.10667 4 10 4.89333 10 6C10 7.10667 9.10667 8 8 8C6.89333 8 6 7.10667 6 6C6 4.89333 6.89333 4 8 4Z"
fill="#323232"
/>
</mask>
<g mask="url(#mask0)">
<rect width="16" height="16" fill="currentColor" />
</g>
</svg>
);

const CoreIcon = () => (
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<mask id="mask1" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
<path
d="M15.3334 8L13.7067 6.14L13.9334 3.68L11.5267 3.13333L10.2667 1L8.00002 1.97333L5.73335 1L4.47335 3.12667L2.06669 3.66667L2.29335 6.13333L0.666687 8L2.29335 9.86L2.06669 12.3267L4.47335 12.8733L5.73335 15L8.00002 14.02L10.2667 14.9933L11.5267 12.8667L13.9334 12.32L13.7067 9.86L15.3334 8ZM6.25335 10.6733L4.66669 9.07333C4.40669 8.81333 4.40669 8.39333 4.66669 8.13333L4.71335 8.08667C4.97335 7.82667 5.40002 7.82667 5.66002 8.08667L6.73335 9.16667L10.1667 5.72667C10.4267 5.46667 10.8534 5.46667 11.1134 5.72667L11.16 5.77333C11.42 6.03333 11.42 6.45333 11.16 6.71333L7.21335 10.6733C6.94002 10.9333 6.52002 10.9333 6.25335 10.6733Z"
fill="#323232"
/>
</mask>
<g mask="url(#mask1)">
<rect width="16" height="16" fill="currentColor " />
</g>
</svg>
);

export default {
title: "Tag",
argTypes: {},
} as Meta;

export const Default: React.FC = () => {
return (
<>
<Row>
<Tag>Core</Tag>
<Tag variant="pink">Community</Tag>
</Row>
<Row>
<Tag startIcon={<CommunityIcon />}>Core</Tag>
<Tag startIcon={<CoreIcon />} variant="pink">
Community
</Tag>
<Tag startIcon={<CoreIcon />} endIcon={<CoreIcon />} variant="pink">
Start & End Icon
</Tag>
</Row>
</>
);
};
17 changes: 17 additions & 0 deletions src/components/Tag/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from "react";
import { TagProps, variants } from "./types";
import { StyledTag, StartIcon, EndIcon } from "./StyledTag";

const Tag: React.FC<TagProps> = ({ startIcon, endIcon, children, ...props }) => (
<StyledTag {...props}>
{startIcon && <StartIcon>{startIcon}</StartIcon>}
{children}
{endIcon && <EndIcon>{endIcon}</EndIcon>}
</StyledTag>
);

Tag.defaultProps = {
variant: variants.PURPLE,
};

export default Tag;
22 changes: 22 additions & 0 deletions src/components/Tag/theme.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { TagTheme } from "./types";
import { lightColors } from "../../theme/colors";

const pinkTheme = {
background: lightColors.failure,
color: "#FFFFFF",
};

const purpleTheme = {
background: lightColors.secondary,
color: "#FFFFFF",
};

export const light: TagTheme = {
pink: pinkTheme,
purple: purpleTheme,
};

export const dark: TagTheme = {
pink: pinkTheme,
purple: purpleTheme,
};
23 changes: 23 additions & 0 deletions src/components/Tag/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ReactNode } from "react";

export const variants = {
PINK: "pink",
PURPLE: "purple",
} as const;

export type Variants = typeof variants[keyof typeof variants];

export type TagThemeVariant = {
background: string;
color: string;
};

export type TagTheme = {
[key in Variants]: TagThemeVariant;
};

export interface TagProps {
variant?: Variants;
startIcon?: ReactNode;
endIcon?: ReactNode;
}
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export { default as Card } from "./components/Card";
export { default as Checkbox } from "./components/Checkbox";
export { default as Heading } from "./components/Heading";
export * from "./components/Layouts";
export { default as Tag } from "./components/Tag";
export { default as Text } from "./components/Text";
export { default as Link } from "./components/Link";
export { default as ResetCSS } from "./ResetCSS";
Expand Down
2 changes: 2 additions & 0 deletions src/styled.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import "styled-components";
import { ButtonTheme } from "./components/Button/types";
import { CardTheme } from "./components/Card/types";
import { TagTheme } from "./components/Tag/types";

export type Breakpoints = string[];

Expand Down Expand Up @@ -35,6 +36,7 @@ declare module "styled-components" {
colors: Colors;
button: ButtonTheme;
card: CardTheme;
tag: TagTheme;
scales: {
breakpoints: Breakpoints;
mediaQueries: MediaQueries;
Expand Down
2 changes: 2 additions & 0 deletions src/theme/dark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { DefaultTheme } from "styled-components";
import mediaQueries, { breakpoints } from "./mediaQueries";
import { dark as darkButton } from "../components/Button/theme";
import { dark as darkCard } from "../components/Card/theme";
import { dark as darkTag } from "../components/Tag/theme";
import { darkColors } from "./colors";

const darkTheme: DefaultTheme = {
Expand All @@ -16,6 +17,7 @@ const darkTheme: DefaultTheme = {
shadows: {
level1: "0px 2px 12px -8px rgba(25, 19, 38, 0.1), 0px 1px 1px rgba(25, 19, 38, 0.05)",
},
tag: darkTag,
};

export default darkTheme;
4 changes: 3 additions & 1 deletion src/theme/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ import { DefaultTheme } from "styled-components";
import mediaQueries, { breakpoints } from "./mediaQueries";
import { light as lightButton } from "../components/Button/theme";
import { light as lightCard } from "../components/Card/theme";
import { light as lightTag } from "../components/Tag/theme";
import { lightColors } from "./colors";

const lightTheme: DefaultTheme = {
isDark: false,
colors: lightColors,
button: lightButton,
colors: lightColors,
card: lightCard,
scales: {
breakpoints,
Expand All @@ -16,6 +17,7 @@ const lightTheme: DefaultTheme = {
shadows: {
level1: "0px 2px 12px -8px rgba(25, 19, 38, 0.1), 0px 1px 1px rgba(25, 19, 38, 0.05)",
},
tag: lightTag,
};

export default lightTheme;

0 comments on commit dbc4da2

Please sign in to comment.