From f861e6a269ba9f62700776d3cd13b644a9e836d4 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 20 Sep 2023 16:38:54 +0200 Subject: refactor: use named export for everything except pages Next expect a default export for pages so only those components should use default exports. Everything else should use named exports to reduce the number of import statements. --- src/components/atoms/forms/select.tsx | 32 ++++++-------------------------- 1 file changed, 6 insertions(+), 26 deletions(-) (limited to 'src/components/atoms/forms/select.tsx') diff --git a/src/components/atoms/forms/select.tsx b/src/components/atoms/forms/select.tsx index dbe9b37..14f85dc 100644 --- a/src/components/atoms/forms/select.tsx +++ b/src/components/atoms/forms/select.tsx @@ -1,4 +1,4 @@ -import { ChangeEvent, FC, SetStateAction } from 'react'; +import { ChangeEvent, FC, SelectHTMLAttributes, SetStateAction } from 'react'; import styles from './forms.module.scss'; export type SelectOptions = { @@ -16,19 +16,7 @@ export type SelectOptions = { value: string; }; -export type SelectProps = { - /** - * One or more ids that refers to the select field name. - */ - 'aria-labelledby'?: string; - /** - * Add classnames to the select field. - */ - className?: string; - /** - * Field state. Either enabled (false) or disabled (true). - */ - disabled?: boolean; +export type SelectProps = SelectHTMLAttributes & { /** * Field id attribute. */ @@ -41,10 +29,6 @@ export type SelectProps = { * True if the field is required. Default: false. */ options: SelectOptions[]; - /** - * True if the field is required. Default: false. - */ - required?: boolean; /** * Callback function to set field value. */ @@ -60,12 +44,14 @@ export type SelectProps = { * * Render a HTML select element. */ -const Select: FC = ({ +export const Select: FC = ({ className = '', options, setValue, ...props }) => { + const selectClass = `${styles.field} ${styles['field--select']} ${className}`; + /** * Update select value when an option is selected. * @param e - The option change event. @@ -86,14 +72,8 @@ const Select: FC = ({ )); return ( - {getOptions()} ); }; - -export default Select; -- cgit v1.2.3