mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 14:09:40 +02:00
Projects included: - maerchenzauber (NestJS backend + Expo mobile + SvelteKit web + Astro landing) - manacore (Expo mobile + SvelteKit web + Astro landing) - manadeck (NestJS backend + Expo mobile + SvelteKit web) - memoro (Expo mobile + SvelteKit web + Astro landing) This commit preserves the current state before monorepo restructuring. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
102 lines
2.1 KiB
TypeScript
102 lines
2.1 KiB
TypeScript
import React, { useMemo, forwardRef } from 'react';
|
|
import {
|
|
Text as RNText,
|
|
TextProps as RNTextProps,
|
|
StyleSheet,
|
|
} from 'react-native';
|
|
import { useTheme } from '~/features/theme/ThemeProvider';
|
|
|
|
interface TextProps extends Omit<RNTextProps, 'style'> {
|
|
variant?: 'h1' | 'h2' | 'h3' | 'body' | 'caption' | 'small' | 'tiny';
|
|
children?: React.ReactNode;
|
|
style?: RNTextProps['style'];
|
|
className?: string;
|
|
}
|
|
|
|
/**
|
|
* Text-Komponente
|
|
*
|
|
* Eine Wrapper-Komponente für den nativen Text, die automatisch die Theme-Farben verwendet
|
|
* und verschiedene Textvarianten unterstützt.
|
|
*
|
|
* Beispiel:
|
|
* ```tsx
|
|
* <Text variant="h1">Überschrift</Text>
|
|
* <Text variant="body">Normaler Text</Text>
|
|
* <Text variant="caption">Unterschrift</Text>
|
|
* <Text variant="small">Kleiner Text</Text>
|
|
* ```
|
|
*/
|
|
const Text = forwardRef<RNText, TextProps>((
|
|
{
|
|
children = null,
|
|
variant = 'body',
|
|
style = {},
|
|
className = '',
|
|
...props
|
|
},
|
|
ref
|
|
) => {
|
|
const { colors } = useTheme();
|
|
|
|
// Erstelle Styles basierend auf dem aktuellen Theme
|
|
const styles = useMemo(() => StyleSheet.create({
|
|
text: {
|
|
color: colors.text,
|
|
},
|
|
h1: {
|
|
fontSize: 24,
|
|
fontWeight: 'bold',
|
|
lineHeight: 28,
|
|
color: colors.text,
|
|
},
|
|
h2: {
|
|
fontSize: 18,
|
|
fontWeight: '600',
|
|
lineHeight: 22,
|
|
color: colors.text,
|
|
},
|
|
h3: {
|
|
fontSize: 16,
|
|
fontWeight: '600',
|
|
lineHeight: 20,
|
|
color: colors.text,
|
|
},
|
|
body: {
|
|
fontSize: 16,
|
|
lineHeight: 20,
|
|
color: colors.text,
|
|
},
|
|
caption: {
|
|
fontSize: 14,
|
|
color: colors.textSecondary,
|
|
lineHeight: 18,
|
|
},
|
|
small: {
|
|
fontSize: 12,
|
|
lineHeight: 16,
|
|
color: colors.text,
|
|
},
|
|
tiny: {
|
|
fontSize: 14,
|
|
color: colors.textTertiary,
|
|
lineHeight: 18,
|
|
},
|
|
}), [colors]); // Neu berechnen, wenn sich colors ändert
|
|
|
|
// Kombiniere die Styles basierend auf der Variante
|
|
const combinedStyles = [styles[variant], style];
|
|
|
|
return (
|
|
<RNText
|
|
ref={ref}
|
|
style={combinedStyles}
|
|
className={className}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</RNText>
|
|
);
|
|
});
|
|
|
|
export default Text;
|