mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-07 22:15:49 +01:00
97 lines
2.5 KiB
TypeScript
97 lines
2.5 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { motion } from 'framer-motion';
|
|
import { Text, AspectRatio, Card, Image, useMantineTheme, Center, Grid } from '@mantine/core';
|
|
import { useConfig } from '../../tools/state';
|
|
import { serviceItem } from '../../tools/types';
|
|
import AppShelfMenu from './AppShelfMenu';
|
|
|
|
const AppShelf = () => {
|
|
const { config } = useConfig();
|
|
|
|
return (
|
|
<Grid gutter="xl" align="center">
|
|
{config.services.map((service) => (
|
|
<Grid.Col span={6} xs={4} sm={3} md={2}>
|
|
<AppShelfItem key={service.name} service={service} />
|
|
</Grid.Col>
|
|
))}
|
|
</Grid>
|
|
);
|
|
};
|
|
|
|
export function AppShelfItem(props: any) {
|
|
const { service }: { service: serviceItem } = props;
|
|
const [hovering, setHovering] = useState(false);
|
|
const theme = useMantineTheme();
|
|
return (
|
|
<motion.div
|
|
key={service.name}
|
|
onHoverStart={() => {
|
|
setHovering(true);
|
|
}}
|
|
onHoverEnd={() => {
|
|
setHovering(false);
|
|
}}
|
|
>
|
|
<Card
|
|
style={{
|
|
boxShadow: hovering ? '0px 0px 3px rgba(0, 0, 0, 0.5)' : '0px 0px 1px rgba(0, 0, 0, 0.5)',
|
|
backgroundColor:
|
|
theme.colorScheme === 'dark' ? theme.colors.dark[6] : theme.colors.gray[1],
|
|
}}
|
|
radius="md"
|
|
>
|
|
<Card.Section>
|
|
<Text mt="sm" align="center" lineClamp={1} weight={500}>
|
|
{service.name}
|
|
</Text>
|
|
<motion.div
|
|
style={{
|
|
position: 'absolute',
|
|
top: 5,
|
|
right: 5,
|
|
alignSelf: 'flex-end',
|
|
}}
|
|
animate={{
|
|
opacity: hovering ? 1 : 0,
|
|
}}
|
|
>
|
|
<AppShelfMenu service={service} />
|
|
</motion.div>
|
|
</Card.Section>
|
|
<Center>
|
|
<Card.Section>
|
|
<AspectRatio
|
|
ratio={3 / 5}
|
|
m="xl"
|
|
style={{
|
|
width: 150,
|
|
height: 90,
|
|
}}
|
|
>
|
|
<motion.i
|
|
whileHover={{
|
|
cursor: 'pointer',
|
|
scale: 1.1,
|
|
}}
|
|
>
|
|
<Image
|
|
width={80}
|
|
height={80}
|
|
src={service.icon}
|
|
fit="contain"
|
|
onClick={() => {
|
|
window.open(service.url);
|
|
}}
|
|
/>
|
|
</motion.i>
|
|
</AspectRatio>
|
|
</Card.Section>
|
|
</Center>
|
|
</Card>
|
|
</motion.div>
|
|
);
|
|
}
|
|
|
|
export default AppShelf;
|