mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-28 01:05:10 -05:00
68 lines
1.4 KiB
TypeScript
68 lines
1.4 KiB
TypeScript
import { forwardRef, type ReactNode, useState } from "react";
|
|
import {
|
|
TextInput,
|
|
type TextInputProps,
|
|
View,
|
|
type ViewStyle,
|
|
} from "react-native";
|
|
import { px, type Theme, useYoshiki } from "yoshiki/native";
|
|
import type { YoshikiEnhanced } from "./image/base-image";
|
|
import { focusReset, ts } from "./utils";
|
|
|
|
export const Input = forwardRef<
|
|
TextInput,
|
|
{
|
|
variant?: "small" | "big";
|
|
right?: ReactNode;
|
|
containerStyle?: YoshikiEnhanced<ViewStyle>;
|
|
} & TextInputProps
|
|
>(function Input(
|
|
{ placeholderTextColor, variant = "small", right, containerStyle, ...props },
|
|
ref,
|
|
) {
|
|
const [focused, setFocused] = useState(false);
|
|
const { css, theme } = useYoshiki();
|
|
|
|
return (
|
|
<View
|
|
{...css([
|
|
{
|
|
borderColor: (theme) => theme.accent,
|
|
borderRadius: ts(1),
|
|
borderWidth: px(1),
|
|
borderStyle: "solid",
|
|
padding: ts(0.5),
|
|
flexDirection: "row",
|
|
alignContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
variant === "big" && {
|
|
borderRadius: ts(4),
|
|
p: ts(1),
|
|
},
|
|
focused && {
|
|
borderWidth: px(2),
|
|
},
|
|
containerStyle,
|
|
])}
|
|
>
|
|
<TextInput
|
|
ref={ref}
|
|
placeholderTextColor={placeholderTextColor ?? theme.paragraph}
|
|
onFocus={() => setFocused(true)}
|
|
onBlur={() => setFocused(false)}
|
|
{...css(
|
|
{
|
|
flexGrow: 1,
|
|
color: (theme: Theme) => theme.paragraph,
|
|
borderWidth: 0,
|
|
...focusReset,
|
|
},
|
|
props,
|
|
)}
|
|
/>
|
|
{right}
|
|
</View>
|
|
);
|
|
});
|