mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
d1f3fffe2f
* refactor: move/rename BanUserButton file * refactor: move/rename Chart file * refactor: update generic component filenames to PascalCase * refactor: update config component filenames to PascalCase * refactor: update AdminLayout component filename to PascalCase * refactor: update/move VideoJS component * chore(eslint): disable bad react/require-default-props rule * refactor: normalize ActionButton component * refactor: normalize ActionButtonRow component * refactor: normalize FollowButton component * refactor: normalize NotifyButton component * refactor: normalize ChatActionMessage component * refactor: normalize ChatContainer component * refactor: normalize ChatJoinMessage component * refactor: normalize ChatModerationActionMenu component * refactor: normalize ChatModerationDetailsModal component * refactor: normalize ChatModeratorNotification component * refactor: normalize ChatSocialMessage component * refactor: normalize ChatSystemMessage component * refactor: normalize ChatTextField component * refactor: normalize ChatUserBadge component * refactor: normalize ChatUserMessage component * refactor: normalize ContentHeader component * refactor: normalize OwncastLogo component * refactor: normalize UserDropdown component * chore(eslint): modify react/function-component-definition rule * refactor: normalize CodecSelector component * refactor: update a bunch of functional components using eslint * refactor: update a bunch of functional components using eslint, pt2 * refactor: update a bunch of functional components using eslint, pt3 * refactor: replace all component->component default imports with named imports * refactor: replace all component-stories->component default imports with named imports * refactor: remove default exports from most components * chore(eslint): add eslint config files for the components and pages dirs * fix: use-before-define error in ChatContainer * Fix ChatContainer import * Only process .tsx files in Next builds Co-authored-by: Gabe Kangas <gabek@real-ity.com>
176 lines
4.2 KiB
TypeScript
176 lines
4.2 KiB
TypeScript
import React, { FC } from 'react';
|
|
import classNames from 'classnames';
|
|
import { Input, InputNumber } from 'antd';
|
|
import { FieldUpdaterFunc } from '../../types/config-section';
|
|
// import InfoTip from '../info-tip';
|
|
import { StatusState } from '../../utils/input-statuses';
|
|
import { FormStatusIndicator } from './FormStatusIndicator';
|
|
|
|
export const TEXTFIELD_TYPE_TEXT = 'default';
|
|
export const TEXTFIELD_TYPE_PASSWORD = 'password'; // Input.Password
|
|
export const TEXTFIELD_TYPE_NUMBER = 'numeric'; // InputNumber
|
|
export const TEXTFIELD_TYPE_TEXTAREA = 'textarea'; // Input.TextArea
|
|
export const TEXTFIELD_TYPE_URL = 'url';
|
|
|
|
export type TextFieldProps = {
|
|
fieldName: string;
|
|
|
|
onSubmit?: () => void;
|
|
onPressEnter?: () => void;
|
|
|
|
className?: string;
|
|
disabled?: boolean;
|
|
label?: string;
|
|
maxLength?: number;
|
|
pattern?: string;
|
|
placeholder?: string;
|
|
required?: boolean;
|
|
status?: StatusState;
|
|
tip?: string;
|
|
type?: string;
|
|
useTrim?: boolean;
|
|
useTrimLead?: boolean;
|
|
value?: string | number;
|
|
onBlur?: FieldUpdaterFunc;
|
|
onChange?: FieldUpdaterFunc;
|
|
};
|
|
|
|
export const TextField: FC<TextFieldProps> = ({
|
|
className,
|
|
disabled,
|
|
fieldName,
|
|
label,
|
|
maxLength,
|
|
onBlur,
|
|
onChange,
|
|
onPressEnter,
|
|
pattern,
|
|
placeholder,
|
|
required,
|
|
status,
|
|
tip,
|
|
type,
|
|
useTrim,
|
|
value,
|
|
}) => {
|
|
const handleChange = (e: any) => {
|
|
// if an extra onChange handler was sent in as a prop, let's run that too.
|
|
if (onChange) {
|
|
const val = type === TEXTFIELD_TYPE_NUMBER ? e : e.target.value;
|
|
onChange({ fieldName, value: useTrim ? val.trim() : val });
|
|
}
|
|
};
|
|
|
|
// if you blur a required field with an empty value, restore its original value in state (parent's state), if an onChange from parent is available.
|
|
const handleBlur = (e: any) => {
|
|
const val = e.target.value;
|
|
if (onBlur) {
|
|
onBlur({ value: val });
|
|
}
|
|
};
|
|
|
|
const handlePressEnter = () => {
|
|
if (onPressEnter) {
|
|
onPressEnter();
|
|
}
|
|
};
|
|
|
|
// display the appropriate Ant text field
|
|
let Field = Input as
|
|
| typeof Input
|
|
| typeof InputNumber
|
|
| typeof Input.TextArea
|
|
| typeof Input.Password;
|
|
let fieldProps = {};
|
|
if (type === TEXTFIELD_TYPE_TEXTAREA) {
|
|
Field = Input.TextArea;
|
|
fieldProps = {
|
|
autoSize: true,
|
|
};
|
|
} else if (type === TEXTFIELD_TYPE_PASSWORD) {
|
|
Field = Input.Password;
|
|
fieldProps = {
|
|
visibilityToggle: true,
|
|
};
|
|
} else if (type === TEXTFIELD_TYPE_NUMBER) {
|
|
Field = InputNumber;
|
|
fieldProps = {
|
|
type: 'number',
|
|
min: 1,
|
|
max: 10 ** maxLength - 1,
|
|
};
|
|
} else if (type === TEXTFIELD_TYPE_URL) {
|
|
fieldProps = {
|
|
type: 'url',
|
|
pattern,
|
|
};
|
|
}
|
|
|
|
const fieldId = `field-${fieldName}`;
|
|
|
|
const { type: statusType } = status || {};
|
|
|
|
const containerClass = classNames({
|
|
'formfield-container': true,
|
|
'textfield-container': true,
|
|
[`type-${type}`]: true,
|
|
required,
|
|
[`status-${statusType}`]: status,
|
|
});
|
|
|
|
return (
|
|
<div className={containerClass}>
|
|
{label ? (
|
|
<div className="label-side">
|
|
<label htmlFor={fieldId} className="formfield-label">
|
|
{label}
|
|
</label>
|
|
</div>
|
|
) : null}
|
|
|
|
<div className="input-side">
|
|
<div className="input-group">
|
|
<Field
|
|
id={fieldId}
|
|
className={`field ${className} ${fieldId}`}
|
|
{...fieldProps}
|
|
{...(type !== TEXTFIELD_TYPE_NUMBER && { allowClear: true })}
|
|
placeholder={placeholder}
|
|
maxLength={maxLength}
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
onPressEnter={handlePressEnter}
|
|
disabled={disabled}
|
|
value={value as number | (readonly string[] & number)}
|
|
/>
|
|
</div>
|
|
<FormStatusIndicator status={status} />
|
|
<p className="field-tip">{tip}</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
export default TextField;
|
|
|
|
TextField.defaultProps = {
|
|
className: '',
|
|
disabled: false,
|
|
label: '',
|
|
maxLength: 255,
|
|
|
|
placeholder: '',
|
|
required: false,
|
|
status: null,
|
|
tip: '',
|
|
type: TEXTFIELD_TYPE_TEXT,
|
|
value: '',
|
|
|
|
pattern: '',
|
|
useTrim: false,
|
|
useTrimLead: false,
|
|
|
|
onSubmit: () => {},
|
|
onBlur: () => {},
|
|
onChange: () => {},
|
|
onPressEnter: () => {},
|
|
};
|