mirror of
https://github.com/rio-labs/rio.git
synced 2025-12-31 18:29:44 -06:00
77 lines
2.3 KiB
TypeScript
77 lines
2.3 KiB
TypeScript
import { markEventAsHandled } from '../eventHandling';
|
|
import { InputBox } from '../inputBox';
|
|
import { ComponentBase, ComponentState } from './componentBase';
|
|
|
|
export type MultiLineTextInputState = ComponentState & {
|
|
_type_: 'MultiLineTextInput-builtin';
|
|
text?: string;
|
|
label?: string;
|
|
is_sensitive?: boolean;
|
|
is_valid?: boolean;
|
|
};
|
|
|
|
export class MultiLineTextInputComponent extends ComponentBase {
|
|
state: Required<MultiLineTextInputState>;
|
|
|
|
private inputBox: InputBox;
|
|
|
|
createElement(): HTMLElement {
|
|
let textarea = document.createElement('textarea');
|
|
this.inputBox = new InputBox(this.id, { inputElement: textarea });
|
|
|
|
let element = this.inputBox.outerElement;
|
|
element.classList.add('rio-multi-line-text-input');
|
|
|
|
this.inputBox.inputElement.addEventListener('blur', () => {
|
|
this.setStateAndNotifyBackend({
|
|
text: this.inputBox.value,
|
|
});
|
|
});
|
|
|
|
// Detect shift+enter key and send it to the backend
|
|
//
|
|
// In addition to notifying the backend, also include the input's
|
|
// current value. This ensures any event handlers actually use the up-to
|
|
// date value.
|
|
this.inputBox.inputElement.addEventListener('keydown', (event) => {
|
|
if (event.key === 'Enter' && event.shiftKey) {
|
|
this.state.text = this.inputBox.value;
|
|
this.sendMessageToBackend({
|
|
text: this.state.text,
|
|
});
|
|
|
|
markEventAsHandled(event);
|
|
}
|
|
});
|
|
|
|
return element;
|
|
}
|
|
|
|
updateElement(
|
|
deltaState: MultiLineTextInputState,
|
|
latentComponents: Set<ComponentBase>
|
|
): void {
|
|
super.updateElement(deltaState, latentComponents);
|
|
|
|
if (deltaState.text !== undefined) {
|
|
this.inputBox.value = deltaState.text;
|
|
}
|
|
|
|
if (deltaState.label !== undefined) {
|
|
this.inputBox.label = deltaState.label;
|
|
}
|
|
|
|
if (deltaState.is_sensitive !== undefined) {
|
|
this.inputBox.isSensitive = deltaState.is_sensitive;
|
|
}
|
|
|
|
if (deltaState.is_valid !== undefined) {
|
|
this.inputBox.isValid = deltaState.is_valid;
|
|
}
|
|
}
|
|
|
|
grabKeyboardFocus(): void {
|
|
this.inputBox.focus();
|
|
}
|
|
}
|