Skip to content

Commit fbf77cb

Browse files
committed
no message
1 parent 8d25662 commit fbf77cb

File tree

21 files changed

+307
-50
lines changed

21 files changed

+307
-50
lines changed

src/components/Gallery/index.story.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { Gallery as Component } from './index.tsx';
3+
4+
const meta = {
5+
title: 'components',
6+
component: Component,
7+
} satisfies Meta<typeof Component>;
8+
9+
export default meta;
10+
type Story = StoryObj<typeof meta>;
11+
12+
export const Gallery: Story = {
13+
args: {
14+
items: new Array(20).fill(null).map((_, i) => ({
15+
src: `https://cataas.com/cat?key=${i}`,
16+
label: `Placeholder ${i}`,
17+
}))
18+
}
19+
};

src/components/Gallery/index.tsx

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export type GalleryProps = {
2+
items: { src: string, label: string }[];
3+
};
4+
5+
export const Gallery = (props: GalleryProps) => {
6+
return (
7+
<div className={'grid grid-flow-col'}>
8+
{props.items.map((item, idx) => (
9+
<img className={'h-auto max-h-20 rounded-lg'} key={idx} src={item.src} alt={item.label}></img>
10+
))}
11+
</div>
12+
);
13+
}

src/components/PageTemplate/index.tsx

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
import { ComponentType, PropsWithChildren } from 'react';
22
import { Header } from 'src/components/Header';
3-
import { SideBar } from 'src/uikit/SideBar';
3+
import { SideBar } from 'src/components/SideBar';
44

55
export const PageTemplate: ComponentType<PropsWithChildren> = ({ children }) => {
66
return (
7-
<main className="min-h-screen bg-gray-100 text-xs">
7+
<main className="min-h-screen bg-gray-100">
88
<Header/>
9-
<SideBar/>
10-
<div className="w-full overflow-y-auto">
11-
{children}
9+
<div className="flex">
10+
<SideBar/>
11+
<div>
12+
{children}
13+
</div>
1214
</div>
15+
1316
</main>
1417
)
1518
}

src/components/Post/index.story.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { Post as Component } from './index.tsx';
3+
4+
const meta = {
5+
title: 'components',
6+
component: Component,
7+
} satisfies Meta<typeof Component>;
8+
9+
export default meta;
10+
type Story = StoryObj<typeof meta>;
11+
12+
export const Post: Story = {
13+
args: {}
14+
};

src/components/Post/index.tsx

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export const Post = () => (<div>
2+
<div>Author</div>
3+
<div>Date</div>
4+
<div>Text</div>
5+
<button>like</button>
6+
<button>Share</button>
7+
<button>Save</button>
8+
</div>)
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { PostForm as Component } from './index.tsx';
3+
4+
const meta = {
5+
title: 'components',
6+
component: Component,
7+
} satisfies Meta<typeof Component>;
8+
9+
export default meta;
10+
type Story = StoryObj<typeof meta>;
11+
12+
export const PostForm: Story = {
13+
args: {}
14+
};

src/components/PostForm/index.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export const PostForm = () => (<div>
2+
what's new?<input></input>
3+
<button>submit</button>
4+
</div>)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { ProfileHeader as Component } from './index.tsx';
3+
4+
const meta = {
5+
title: 'components',
6+
component: Component,
7+
} satisfies Meta<typeof Component>;
8+
9+
export default meta;
10+
type Story = StoryObj<typeof meta>;
11+
12+
export const ProfileHeader: Story = {
13+
args: {
14+
name: 'John Doe',
15+
isOnline: true,
16+
status: 'Looking for a job',
17+
}
18+
};
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { Typography } from 'src/uikit/Typography';
2+
3+
export type ProfileHeaderProps = {
4+
isOnline: boolean;
5+
name: string;
6+
status?: string;
7+
};
8+
9+
export const ProfileHeader = (props: ProfileHeaderProps) => {
10+
return (
11+
<div>
12+
<div className={'flex justify-between'}>
13+
<Typography variant={'h6'}>{props.name}</Typography>
14+
<Typography className={'text-end'} variant={'span'}>{props.isOnline ? 'online' : 'offline'}</Typography>
15+
</div>
16+
<Typography variant={'span'}>{props.status}</Typography>
17+
</div>
18+
)
19+
}
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { ProfileInfo as Component } from './index.tsx';
3+
4+
const meta = {
5+
title: 'components',
6+
component: Component,
7+
} satisfies Meta<typeof Component>;
8+
9+
export default meta;
10+
type Story = StoryObj<typeof meta>;
11+
12+
export const ProfileInfo: Story = {
13+
args: {
14+
dob: new Date(0),
15+
location: {
16+
city: 'Carretera Tulum',
17+
coords: {
18+
lat: 20.395914,
19+
long: -87.312324
20+
}
21+
}
22+
}
23+
};

src/components/ProfileInfo/index.tsx

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import { Typography } from 'src/uikit/Typography';
2+
3+
export type ProfileInfoProps = {
4+
dob: Date;
5+
location: {
6+
city: string;
7+
coords?: {
8+
lat: number;
9+
long: number;
10+
}
11+
};
12+
};
13+
14+
export const ProfileInfo = (props: ProfileInfoProps) => {
15+
return (<ul>
16+
<li>
17+
DOB: {props.dob.getUTCFullYear()}
18+
</li>
19+
<li>
20+
City: {props.location.city}
21+
</li>
22+
{props.location.coords && (
23+
<li>
24+
<Typography
25+
as={'a'}
26+
href={`https://maps.google.com/?q=${props.location.coords.lat},${props.location.coords.long}`}
27+
target={'_blank'}
28+
rel={'noreferrer noopener'}
29+
>
30+
Location
31+
</Typography>
32+
</li>
33+
)}
34+
</ul>)
35+
}

src/uikit/SideBar/index.story.ts src/components/SideBar/index.story.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react';
22
import { SideBar as Component } from './index.tsx';
33

44
const meta = {
5-
title: 'uikit',
5+
title: 'components',
66
component: Component,
77
} satisfies Meta<typeof Component>;
88

src/components/SideBar/index.tsx

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { ComponentType, PropsWithChildren } from 'react';
2+
import { Clickable } from 'src/uikit/Clickable';
3+
4+
const Li: ComponentType<PropsWithChildren> = ({ children }) => {
5+
return (
6+
<li className="bg-gray-50 mt-0.5 mr-0.5 rounded">
7+
<Clickable className="px-4 py-2">
8+
{children}
9+
</Clickable>
10+
</li>
11+
)
12+
}
13+
14+
export const SideBar = () => {
15+
return (
16+
<div className="w-60 bg-gray-300">
17+
<ul>
18+
<Li>My Page</Li>
19+
<Li>Contacts</Li>
20+
<Li>Messages</Li>
21+
</ul>
22+
</div>
23+
)
24+
}
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { Statistic as Component } from './index.tsx';
3+
4+
const meta = {
5+
title: 'components',
6+
component: Component,
7+
} satisfies Meta<typeof Component>;
8+
9+
export default meta;
10+
type Story = StoryObj<typeof meta>;
11+
12+
export const Statistic: Story = {
13+
args: {
14+
friends: 30,
15+
followers: 100,
16+
photos: 150,
17+
}
18+
};

src/components/Statistic/index.tsx

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { Typography } from 'src/uikit/Typography';
2+
3+
export type StatisticProps = {
4+
friends: number;
5+
followers: number;
6+
photos: number;
7+
}
8+
9+
const Item = (props: { label: string, value: number }) => {
10+
if (!props.value) return null
11+
return (
12+
<div className={'flex flex-col'}>
13+
<Typography className={'text-center'}>{props.value}</Typography>
14+
<Typography className={'text-center'}>{props.label}</Typography>
15+
</div>
16+
)
17+
}
18+
19+
export const Statistic = (props: StatisticProps) => {
20+
return (<div className={'flex flex-row justify-around text-slate-400'}>
21+
<Item label={'Friends'} value={props.friends}/>
22+
<Item label={'Followers'} value={props.followers}/>
23+
<Item label={'photos'} value={props.photos}/>
24+
</div>)
25+
}
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { __Template__ as Component } from './index.tsx';
3+
4+
const meta = {
5+
title: 'components',
6+
component: Component,
7+
} satisfies Meta<typeof Component>;
8+
9+
export default meta;
10+
type Story = StoryObj<typeof meta>;
11+
12+
export const __Template__: Story = {
13+
args: {}
14+
};

src/components/__Template__/index.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export const __Template__ = () => {
2+
return null;
3+
}

0 commit comments

Comments
 (0)