You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.8 KiB
TypeScript
74 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
interface Props {
|
|
placeholder?: string;
|
|
value?: string;
|
|
text?: string;
|
|
editable?: boolean;
|
|
onChange?: any;
|
|
onPressEnter?: any;
|
|
maxLength?: number;
|
|
isGroup?: boolean;
|
|
}
|
|
|
|
export class SessionIdEditable extends React.PureComponent<Props> {
|
|
private readonly inputRef: any;
|
|
|
|
public constructor(props: Props) {
|
|
super(props);
|
|
this.inputRef = React.createRef();
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.handleKeyDown = this.handleKeyDown.bind(this);
|
|
}
|
|
|
|
public focus() {
|
|
if (this.inputRef.current) {
|
|
this.inputRef.current.focus();
|
|
}
|
|
}
|
|
|
|
public render() {
|
|
const { placeholder, editable, text, value, maxLength, isGroup } = this.props;
|
|
|
|
return (
|
|
<div
|
|
className={classNames('session-id-editable', !editable && 'session-id-editable-disabled')}
|
|
>
|
|
<textarea
|
|
className={classNames(
|
|
isGroup ? 'group-id-editable-textarea' : 'session-id-editable-textarea'
|
|
)}
|
|
ref={this.inputRef}
|
|
placeholder={placeholder}
|
|
disabled={!editable}
|
|
spellCheck={false}
|
|
onKeyDown={this.handleKeyDown}
|
|
onChange={this.handleChange}
|
|
onBlur={this.handleChange}
|
|
value={value || text}
|
|
maxLength={maxLength}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
private handleChange(e: any) {
|
|
const { editable, onChange } = this.props;
|
|
|
|
if (editable) {
|
|
const value = e.target.value?.replace(/(\r\n|\n|\r)/gm, '');
|
|
onChange(value);
|
|
}
|
|
}
|
|
|
|
private handleKeyDown(e: any) {
|
|
const { editable, onPressEnter } = this.props;
|
|
if (editable && e.key === 'Enter') {
|
|
e.preventDefault();
|
|
// tslint:disable-next-line: no-unused-expression
|
|
onPressEnter && onPressEnter();
|
|
}
|
|
}
|
|
}
|