mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
Add page header component
This commit is contained in:
@@ -21,3 +21,4 @@ export * from './dropzone';
|
||||
export * from './spinner';
|
||||
export * from './virtual-table';
|
||||
export * from './skeleton';
|
||||
export * from './page-header';
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import styled from 'styled-components';
|
||||
import { useShouldPadTitlebar } from '/@/hooks';
|
||||
|
||||
const Container = styled(motion.div)``;
|
||||
|
||||
const Header = styled(motion.div)<{ $padRight?: boolean }>`
|
||||
margin-right: 170px;
|
||||
padding: 1rem;
|
||||
-webkit-app-region: drag;
|
||||
|
||||
button {
|
||||
-webkit-app-region: no-drag;
|
||||
}
|
||||
`;
|
||||
|
||||
interface PageHeaderProps {
|
||||
backgroundColor?: string;
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export const PageHeader = ({ backgroundColor, children }: PageHeaderProps) => {
|
||||
const padRight = useShouldPadTitlebar();
|
||||
|
||||
return (
|
||||
<Container
|
||||
animate={{
|
||||
backgroundColor,
|
||||
transition: { duration: 1.5 },
|
||||
}}
|
||||
initial={{ backgroundColor: 'transparent', color: 'white' }}
|
||||
>
|
||||
<Header $padRight={padRight}>{children}</Header>
|
||||
</Container>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user