Files
feishin/src/renderer/components/input/index.tsx
T
2022-10-30 20:18:38 -07:00

136 lines
2.9 KiB
TypeScript

import React, { forwardRef } from 'react';
import styled from '@emotion/styled';
import {
TextInput as MantineTextInput,
TextInputProps as MantineTextInputProps,
PasswordInput as MantinePasswordInput,
PasswordInputProps as MantinePasswordInputProps,
FileInput as MantineFileInput,
FileInputProps as MantineFileInputProps,
} from '@mantine/core';
interface TextInputProps extends MantineTextInputProps {
children?: React.ReactNode;
}
interface PasswordInputProps extends MantinePasswordInputProps {
children?: React.ReactNode;
}
interface FileInputProps extends MantineFileInputProps {
children?: React.ReactNode;
}
const StyledTextInput = styled(MantineTextInput)<TextInputProps>`
&:focus,
&:focus-within {
border-color: var(--primary-color);
}
& .mantine-TextInput-wrapper {
border-color: var(--primary-color);
}
& .mantine-TextInput-input {
&:focus,
&:focus-within {
border-color: var(--primary-color);
}
color: var(--input-fg);
background: var(--input-bg);
&::placeholder {
color: var(--input-placeholder-fg);
}
}
& .mantine-Input-icon {
color: var(--input-placeholder-fg);
}
& .mantine-TextInput-required {
color: var(--secondary-color);
}
& .mantine-TextInput-label {
font-family: var(--label-font-faimly);
}
`;
const StyledPasswordInput = styled(MantinePasswordInput)<PasswordInputProps>`
& .mantine-PasswordInput-input {
&:focus,
&:focus-within {
border-color: var(--primary-color);
}
}
& .mantine-PasswordInput-required {
color: var(--secondary-color);
}
& .mantine-PasswordInput-label {
font-family: var(--label-font-faimly);
}
`;
const StyledFileInput = styled(MantineFileInput)<FileInputProps>`
& .mantine-FileInput-input {
&:focus,
&:focus-within {
border-color: var(--primary-color);
}
}
& .mantine-FileInput-required {
color: var(--secondary-color);
}
& .mantine-FileInput-label {
font-family: var(--label-font-faimly);
}
`;
export const TextInput = forwardRef<HTMLInputElement, TextInputProps>(
({ children, ...props }: TextInputProps, ref) => {
return (
<StyledTextInput ref={ref} spellCheck={false} {...props}>
{children}
</StyledTextInput>
);
}
);
export const PasswordInput = forwardRef<HTMLInputElement, PasswordInputProps>(
({ children, ...props }: PasswordInputProps, ref) => {
return (
<StyledPasswordInput ref={ref} spellCheck={false} {...props}>
{children}
</StyledPasswordInput>
);
}
);
export const FileInput = forwardRef<HTMLButtonElement, FileInputProps>(
({ children, ...props }: FileInputProps, ref) => {
return (
<StyledFileInput ref={ref} spellCheck={false} {...props}>
{children}
</StyledFileInput>
);
}
);
TextInput.defaultProps = {
children: null,
};
PasswordInput.defaultProps = {
children: null,
};
FileInput.defaultProps = {
children: null,
};