chore: use grid layouts all
This commit is contained in:
parent
32e3b43bc4
commit
dc06eba105
7 changed files with 32 additions and 27 deletions
|
@ -6,7 +6,7 @@ export interface AppContainerProps {
|
||||||
|
|
||||||
const AppContainer: FC<AppContainerProps> = ({ children }) => {
|
const AppContainer: FC<AppContainerProps> = ({ children }) => {
|
||||||
return (
|
return (
|
||||||
<div className="fixed bottom-10 right-10 top-10 z-top box-border grid w-1/4 grid-flow-col grid-rows-[auto_1fr_auto] overflow-hidden rounded-xl bg-slate-50 shadow-2xl transition-transform">
|
<div className="fixed bottom-10 right-10 top-10 z-top box-border grid w-1/4 grid-flow-col grid-rows-[auto_1fr_auto] overflow-hidden rounded-xl bg-slate-50 font-sans shadow-2xl transition-transform">
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
@ -13,23 +13,27 @@ const Footer: FC = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid grid-cols-2 gap-y-2 p-4">
|
<div className="grid gap-y-2 p-4">
|
||||||
<Textarea
|
<Textarea
|
||||||
className="col-span-2 rounded-lg bg-gray-50"
|
className="rounded-lg bg-gray-50"
|
||||||
rows={is2XL ? 3 : 2}
|
rows={is2XL ? 3 : 2}
|
||||||
value={message}
|
value={message}
|
||||||
placeholder="Type your message here."
|
placeholder="Type your message here."
|
||||||
onInput={handleInput}
|
onInput={handleInput}
|
||||||
/>
|
/>
|
||||||
|
<div className="grid grid-cols-[auto_auto_1fr] items-center justify-items-end">
|
||||||
<Button variant="ghost" size="icon" className="place-self-start">
|
<Button variant="ghost" size="icon">
|
||||||
<SmileIcon size={20} />
|
<SmileIcon size={20} />
|
||||||
</Button>
|
</Button>
|
||||||
<Button size="sm" className="place-self-end">
|
<Button variant="ghost" size="icon">
|
||||||
<span className="mr-2">Send</span>
|
<SmileIcon size={20} />
|
||||||
<CommandIcon className="text-slate-400" size={12}></CommandIcon>
|
</Button>
|
||||||
<CornerDownLeftIcon className="text-slate-400" size={12}></CornerDownLeftIcon>
|
<Button size="sm">
|
||||||
</Button>
|
<span className="mr-2">Send</span>
|
||||||
|
<CommandIcon className="text-slate-400" size={12}></CommandIcon>
|
||||||
|
<CornerDownLeftIcon className="text-slate-400" size={12}></CornerDownLeftIcon>
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ const Header: FC = () => {
|
||||||
const websiteInfo = getWebSiteInfo()
|
const websiteInfo = getWebSiteInfo()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="shadow-xs flex h-12 items-center bg-white px-4 2xl:h-14">
|
<div className="shadow-xs grid h-12 grid-cols-[auto_1fr_auto] items-center bg-white px-4 backdrop-blur-lg 2xl:h-14">
|
||||||
<img className="h-8 w-8 overflow-hidden rounded-full" src={websiteInfo.icon} />
|
<img className="h-8 w-8 overflow-hidden rounded-full" src={websiteInfo.icon} />
|
||||||
<HoverCard>
|
<HoverCard>
|
||||||
<HoverCardTrigger asChild>
|
<HoverCardTrigger asChild>
|
||||||
|
@ -16,16 +16,16 @@ const Header: FC = () => {
|
||||||
</Button>
|
</Button>
|
||||||
</HoverCardTrigger>
|
</HoverCardTrigger>
|
||||||
<HoverCardContent className="w-80">
|
<HoverCardContent className="w-80">
|
||||||
<div className="flex justify-between space-x-4">
|
<div className="grid grid-cols-[auto_1fr] gap-x-4">
|
||||||
<img className="h-14 w-14 flex-shrink-0 overflow-hidden rounded-full" src={websiteInfo.icon} />
|
<img className="h-14 w-14 overflow-hidden rounded-full" src={websiteInfo.icon} />
|
||||||
<div className="space-y-1">
|
<div className="grid">
|
||||||
<h4 className="text-sm font-semibold">{websiteInfo.title}</h4>
|
<h4 className="text-sm font-semibold">{websiteInfo.title}</h4>
|
||||||
<p className="text-xs text-slate-500">{websiteInfo.description}</p>
|
<p className="text-xs text-slate-500">{websiteInfo.description}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</HoverCardContent>
|
</HoverCardContent>
|
||||||
</HoverCard>
|
</HoverCard>
|
||||||
<div className="ml-auto flex-shrink-0 text-sm text-slate-500">Online 99</div>
|
<div className="text-sm text-slate-500">Online 99</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,13 +29,14 @@ const LikeButton: FC<LikeButtonProps> = ({ type, checked, count, onClick, onChan
|
||||||
onClick={handleOnClick}
|
onClick={handleOnClick}
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className={cn(
|
className={cn(
|
||||||
'flex items-center gap-x-1 rounded-full transition-all ',
|
'grid items-center overflow-hidden rounded-full leading-none transition-all',
|
||||||
checked ? 'text-orange-500' : 'text-slate-500'
|
checked ? 'text-orange-500' : 'text-slate-500',
|
||||||
|
count ? 'grid-cols-[auto_1fr] gap-x-1' : 'grid-cols-[auto_0fr] gap-x-0'
|
||||||
)}
|
)}
|
||||||
size="xs"
|
size="xs"
|
||||||
>
|
>
|
||||||
<Icon size={14} />
|
<Icon size={14} />
|
||||||
{!!count && <span className="text-xs">{count}</span>}
|
{!!count && <span className="min-w-0 text-xs">{count}</span>}
|
||||||
</Button>
|
</Button>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,13 +34,13 @@ const Message: FC<MessageProps> = ({ data }) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex w-full gap-x-2">
|
<div className="grid grid-cols-[auto_1fr] gap-x-2">
|
||||||
<Avatar>
|
<Avatar>
|
||||||
<AvatarImage src={formatData.avatar} />
|
<AvatarImage src={formatData.avatar} />
|
||||||
<AvatarFallback>{formatData.username}</AvatarFallback>
|
<AvatarFallback>{formatData.username}</AvatarFallback>
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<div className="flex-1">
|
<div className="grid">
|
||||||
<div className="flex items-baseline gap-x-2 leading-none">
|
<div className="grid grid-cols-[auto_1fr] items-baseline gap-x-2 leading-none">
|
||||||
<div className="text-sm font-medium text-slate-600">{formatData.username}</div>
|
<div className="text-sm font-medium text-slate-600">{formatData.username}</div>
|
||||||
<div className="text-xs text-slate-400">{formatData.date}</div>
|
<div className="text-xs text-slate-400">{formatData.date}</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -48,7 +48,7 @@ const Message: FC<MessageProps> = ({ data }) => {
|
||||||
<div className="pb-2">
|
<div className="pb-2">
|
||||||
<pre className="text-sm">{formatData.body}</pre>
|
<pre className="text-sm">{formatData.body}</pre>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-end gap-x-2 leading-none">
|
<div className="grid grid-flow-col justify-end gap-x-2 leading-none">
|
||||||
<LikeButton
|
<LikeButton
|
||||||
type="like"
|
type="like"
|
||||||
checked={formatData.likeChecked}
|
checked={formatData.likeChecked}
|
||||||
|
|
|
@ -26,19 +26,19 @@ const Main: FC = () => {
|
||||||
hateCount: 0
|
hateCount: 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: '1',
|
id: '3',
|
||||||
body: 'Do you like XJP?',
|
body: 'Do you like XJP?',
|
||||||
username: 'molvqingtai',
|
username: 'molvqingtai',
|
||||||
avatar: 'https://github.com/shadcn.png',
|
avatar: 'https://github.com/shadcn.png',
|
||||||
date: Date.now(),
|
date: Date.now(),
|
||||||
likeChecked: false,
|
likeChecked: false,
|
||||||
hateChecked: false,
|
hateChecked: false,
|
||||||
likeCount: 98,
|
likeCount: 9999,
|
||||||
hateCount: 2
|
hateCount: 2
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-y-4 p-4">
|
<div className="grid content-start p-4">
|
||||||
{messages.map((message) => (
|
{messages.map((message) => (
|
||||||
<Message key={message.id} data={message} />
|
<Message key={message.id} data={message} />
|
||||||
))}
|
))}
|
||||||
|
|
Loading…
Reference in a new issue