Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

feat: some changes for retrofunding app #120

Merged
merged 8 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
"import": "./dist/icons.js",
"require": "./dist/icons.js"
},
"./logos": {
"types": "./dist/logos.d.ts",
"import": "./dist/logos.js",
"require": "./dist/logos.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js",
Expand All @@ -58,6 +63,11 @@
"import": "./dist/types.js",
"require": "./dist/types.js"
},
"./theme": {
"types": "./dist/theme.d.ts",
"import": "./dist/theme.js",
"require": "./dist/theme.js"
},
"./application": {
"types": "./dist/application.d.ts",
"import": "./dist/application.js",
Expand Down
25 changes: 19 additions & 6 deletions src/assets/icons/heroicons.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Status Icons
import { InformationCircleIcon } from "@heroicons/react/outline";
import {
BriefcaseIcon,
CalendarIcon,
CashIcon,
CheckCircleIcon as CheckSolidIcon,
Expand All @@ -9,9 +10,11 @@ import {
ChevronRightIcon,
ClipboardListIcon,
ClockIcon,
CollectionIcon,
DocumentDuplicateIcon,
ExclamationCircleIcon,
GlobeAltIcon as GlobeIcon,
HomeIcon,
LinkIcon,
PencilIcon,
QuestionMarkCircleIcon as SolidQuestionMarkCircleIcon,
Expand All @@ -25,19 +28,22 @@ import {
} from "@heroicons/react/solid";

enum HeroiconsType {
BRIEFCASE = "briefcase",
CALENDAR = "calendar",
CASH = "cash",
CHECK = "check",
CHEVRON_LEFT = "chevron-left",
CLIPBOARD_LIST = "clipboardList",
CLOCK = "clock",
COLLECTION = "collection",
DOCUMENT_DUPLICATE = "document-duplicate",
PENCIL = "pencil",
EXCLAMATION_CIRCLE = "exclamation-circle",
LINK = "link",
PLUS = "plus",
GLOBE = "globe",
HOME = "home",
INFORMATION_CIRCLE = "informationCircle",
LINK = "link",
PENCIL = "pencil",
PLUS = "plus",
SOLID_CHECK = "solid-check",
SOLID_QUESTION_MARK_CIRCLE = "questionMarkCircle",
SOLID_X = "solid-x",
Expand All @@ -49,18 +55,21 @@ enum HeroiconsType {
}

const heroiconsComponents: Record<HeroiconsType, React.FC<React.SVGProps<SVGSVGElement>>> = {
briefcase: BriefcaseIcon,
calendar: CalendarIcon,
cash: CashIcon,
check: CheckIcon,
"chevron-left": ChevronLeftIcon,
clipboardList: ClipboardListIcon,
clock: ClockIcon,
collection: CollectionIcon,
"document-duplicate": DocumentDuplicateIcon,
pencil: PencilIcon,
"exclamation-circle": ExclamationCircleIcon,
informationCircle: InformationCircleIcon,
globe: GlobeIcon,
informationCircle: InformationCircleIcon,
home: HomeIcon,
link: LinkIcon,
pencil: PencilIcon,
plus: PlusIcon,
questionMarkCircle: SolidQuestionMarkCircleIcon,
"solid-check": CheckSolidIcon,
Expand All @@ -77,18 +86,22 @@ const heroIcons = Object.keys(heroiconsComponents).sort((a, b) =>
) as HeroiconsType[];

export {
BriefcaseIcon,
CalendarIcon,
CheckSolidIcon,
CheckIcon,
ChevronLeftIcon,
ChevronRightIcon,
ClipboardListIcon,
ClockIcon,
CollectionIcon,
DocumentDuplicateIcon,
ExclamationCircleIcon,
InformationCircleIcon,
GlobeIcon,
HomeIcon,
InformationCircleIcon,
LinkIcon,
PencilIcon,
PlusIcon,
SolidQuestionMarkCircleIcon,
SparklesIcon,
Expand Down
1 change: 1 addition & 0 deletions src/assets/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from "./icons";
export * from "./images";
export * from "./logos";
6 changes: 6 additions & 0 deletions src/assets/logos/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export * from "./builder";
export * from "./explorer";
export * from "./gitcoin";
export * from "./grantsStack";
export * from "./manager";
export * from "./retrofunding";
3 changes: 2 additions & 1 deletion src/assets/logos/retrofunding/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import RetrofundingLogoLockup from "./retrofundingLockup.svg?react";
import RetrofundingLogoWordmark from "./retrofundingWordmark.svg?react";
import RetrofundingVoteLogoWordmark from "./voteWordmark.svg?react";

export { RetrofundingLogoWordmark, RetrofundingVoteLogoWordmark };
export { RetrofundingLogoLockup, RetrofundingLogoWordmark, RetrofundingVoteLogoWordmark };
9 changes: 9 additions & 0 deletions src/assets/logos/retrofunding/retrofundingLockup.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/logos/retrofunding/voteWordmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions src/components/CreateButton/CreateButton.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import { action } from "@storybook/addon-actions";
import { Meta, StoryObj } from "@storybook/react";

import { CreateButton } from "./CreateButton";

const onButtonClick = action("Button clicked!");

const meta: Meta<typeof CreateButton> = {
title: "Features/RetroFunding/Components/CreateButton",
component: CreateButton,
args: {
children: "Create new program",
onClick: () => onButtonClick("button clicked"),
},
argTypes: {
variant: {
control: {
type: "select",
options: ["program", "round"],
},
},
className: {
control: "text",
},
},
} satisfies Meta<typeof CreateButton>;

export default meta;

type Story = StoryObj<typeof CreateButton>;

export const Default: Story = {
args: {
onClick: () => onButtonClick("program button clicked"),
},
};

export const Round: Story = {
args: {
variant: "round",
children: "Create new round",
onClick: () => onButtonClick("round button clicked"),
},
};
40 changes: 40 additions & 0 deletions src/components/CreateButton/CreateButton.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
"use client";

import { tv, VariantProps } from "tailwind-variants";

import { cn } from "@/lib";
import { Icon, IconType } from "@/primitives/Icon";

const variants = tv({
base: "flex h-20 w-full items-center gap-2 rounded-2xl p-6 font-ui-sans text-2xl font-medium",
variants: {
variant: {
program: "bg-moss-50",
round: "bg-purple-50",
},
},
defaultVariants: {
variant: "program",
},
});

export interface CreateButtonProps extends VariantProps<typeof variants> {
className?: string;
children: string;
onClick?: () => void;
}

export const CreateButton = ({
variant,
children = "Create new program",
onClick,
className,
}: CreateButtonProps) => {
const styles = variants({ variant });
return (
<button className={cn(styles, className)} onClick={onClick} value={children}>
<Icon type={IconType.PLUS} />
{children}
</button>
);
};
1 change: 1 addition & 0 deletions src/components/CreateButton/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./CreateButton";
4 changes: 2 additions & 2 deletions src/components/SideNav/SideNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ export const SideNav = ({

return (
<div className={cn("relative flex flex-col gap-4", className)}>
{items.map((item, index) => {
{items?.map((item, index) => {
const isActive = item.id === activeId;

return (
<div key={`sidenav-item-${index}`}>
{item.items.length > 0 ? (
{item.items && item.items.length > 0 ? (
<AccordionItem
item={item}
onClick={onClick}
Expand Down
4 changes: 2 additions & 2 deletions src/components/SideNav/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export interface SideNavItem {
iconType?: IconType;
id?: string;
isSeparator?: boolean;
items: SideNavItem[];
items?: SideNavItem[];
}

export interface InternalSideNavProps {
items: SideNavItem[];
items?: SideNavItem[];
onClick: (id: string | undefined) => void;
activeId?: string;
className?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/docs/colors.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Meta, ColorPalette, ColorItem, Title } from "@storybook/blocks";

import { grantsStackUIKit, grantsStackDesignSystem } from "@/tokens/colors";
import { grantsStackUIKit, grantsStackDesignSystem } from "@/theme/colors";

<Meta title="Styles/Colors" />

Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ export * from "./primitives/StatCard";
export * from "./primitives/StatCardGroup";
export * from "./primitives/TextArea";
export * from "./primitives/Toast";
export * from "./primitives/Typography";
export * from "./primitives/VerticalTabs";
export * from "./primitives/Switch";
export * from "./primitives/Checkbox";

export * from "./components/CreateButton";
export * from "./components/IconLabel";
export * from "./components/ProgressModal";
export * from "./components/RadioGroupList";
Expand Down
Loading
Loading