tweb/src/components/inputField.ts

277 lines
8.2 KiB
TypeScript
Raw Normal View History

2021-04-08 15:52:31 +02:00
/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
2021-01-03 17:32:34 +01:00
import { getRichValue, isInputEmpty } from "../helpers/dom";
import { debounce } from "../helpers/schedulers";
import { checkRTL } from "../helpers/string";
2021-03-25 19:07:00 +01:00
import { i18n, LangPackKey, _i18n } from "../lib/langPack";
import RichTextProcessor from "../lib/richtextprocessor";
let init = () => {
document.addEventListener('paste', (e) => {
if(!(e.target as HTMLElement).hasAttribute('contenteditable') && !(e.target as HTMLElement).parentElement.hasAttribute('contenteditable')) {
return;
}
//console.log('document paste');
//console.log('messageInput paste');
e.preventDefault();
// @ts-ignore
let text = (e.originalEvent || e).clipboardData.getData('text/plain');
let entities = RichTextProcessor.parseEntities(text);
//console.log('messageInput paste', text, entities);
2021-02-04 01:30:23 +01:00
entities = entities.filter(e => e._ === 'messageEntityEmoji' || e._ === 'messageEntityLinebreak');
//text = RichTextProcessor.wrapEmojiText(text);
text = RichTextProcessor.wrapRichText(text, {entities, noLinks: true, wrappingDraft: true});
// console.log('messageInput paste after', text);
// @ts-ignore
//let html = (e.originalEvent || e).clipboardData.getData('text/html');
// @ts-ignore
//console.log('paste text', text, );
window.document.execCommand('insertHTML', false, text);
});
init = null;
};
const checkAndSetRTL = (input: HTMLElement) => {
//const isEmpty = isInputEmpty(input);
//console.log('input', isEmpty);
//const char = [...getRichValue(input)][0];
const char = (input instanceof HTMLInputElement ? input.value : input.innerText)[0];
let direction = 'ltr';
if(char && checkRTL(char)) {
direction = 'rtl';
}
//console.log('RTL', direction, char);
input.style.direction = direction;
};
2021-03-16 16:18:51 +01:00
export enum InputState {
Neutral = 0,
Valid = 1,
Error = 2
};
export type InputFieldOptions = {
2021-03-25 19:07:00 +01:00
placeholder?: LangPackKey,
2021-03-21 10:59:59 +01:00
label?: LangPackKey,
2021-03-26 18:49:29 +01:00
labelOptions?: any[],
labelText?: string,
2021-03-16 16:18:51 +01:00
name?: string,
maxLength?: number,
showLengthOn?: number,
plainText?: true,
animate?: true
};
class InputField {
public container: HTMLElement;
public input: HTMLElement;
public inputFake: HTMLElement;
2021-02-19 16:27:56 +01:00
public label: HTMLLabelElement;
2021-03-12 19:08:39 +01:00
public originalValue: string;
//public onLengthChange: (length: number, isOverflow: boolean) => void;
2021-02-19 16:27:56 +01:00
protected wasInputFakeClientHeight: number;
protected showScrollDebounced: () => void;
2021-03-16 16:18:51 +01:00
constructor(public options: InputFieldOptions = {}) {
this.container = document.createElement('div');
this.container.classList.add('input-field');
if(options.maxLength) {
options.showLengthOn = Math.round(options.maxLength / 3);
}
const {placeholder, maxLength, showLengthOn, name, plainText} = options;
let label = options.label || options.labelText;
let input: HTMLElement;
if(!plainText) {
if(init) {
init();
}
this.container.innerHTML = `
2021-03-26 16:29:10 +01:00
<div contenteditable="true" class="input-field-input"></div>
`;
input = this.container.firstElementChild as HTMLElement;
const observer = new MutationObserver(() => {
checkAndSetRTL(input);
if(processInput) {
processInput();
}
});
2021-01-03 16:59:13 +01:00
// * because if delete all characters there will br left
input.addEventListener('input', () => {
2021-01-03 17:32:34 +01:00
if(isInputEmpty(input)) {
2021-01-03 16:59:13 +01:00
input.innerHTML = '';
}
if(this.inputFake) {
this.inputFake.innerHTML = input.innerHTML;
this.onFakeInput();
}
2021-01-03 16:59:13 +01:00
});
// ! childList for paste first symbol
observer.observe(input, {characterData: true, childList: true, subtree: true});
if(options.animate) {
input.classList.add('scrollable', 'scrollable-y');
this.wasInputFakeClientHeight = 0;
this.showScrollDebounced = debounce(() => this.input.classList.remove('no-scrollbar'), 150, false, true);
this.inputFake = document.createElement('div');
this.inputFake.setAttribute('contenteditable', 'true');
this.inputFake.className = input.className + ' input-field-input-fake';
}
} else {
this.container.innerHTML = `
2021-03-25 19:07:00 +01:00
<input type="text" ${name ? `name="${name}"` : ''} autocomplete="off" ${label ? 'required=""' : ''} class="input-field-input">
`;
input = this.container.firstElementChild as HTMLElement;
input.addEventListener('input', () => checkAndSetRTL(input));
2021-03-26 16:29:10 +01:00
}
2021-03-25 19:07:00 +01:00
2021-03-26 16:29:10 +01:00
if(placeholder) {
_i18n(input, placeholder, undefined, 'placeholder');
}
2021-02-19 16:27:56 +01:00
if(label) {
2021-03-21 10:59:59 +01:00
this.label = document.createElement('label');
this.setLabel();
2021-03-21 10:59:59 +01:00
this.container.append(this.label);
2021-02-19 16:27:56 +01:00
}
let processInput: () => void;
if(maxLength) {
const labelEl = this.container.lastElementChild as HTMLLabelElement;
let showingLength = false;
processInput = () => {
const wasError = input.classList.contains('error');
// * https://stackoverflow.com/a/54369605 #2 to count emoji as 1 symbol
const inputLength = plainText ? (input as HTMLInputElement).value.length : [...getRichValue(input)].length;
const diff = maxLength - inputLength;
const isError = diff < 0;
input.classList.toggle('error', isError);
//this.onLengthChange && this.onLengthChange(inputLength, isError);
if(isError || diff <= showLengthOn) {
this.setLabel();
labelEl.append(` (${maxLength - inputLength})`);
if(!showingLength) showingLength = true;
} else if((wasError && !isError) || showingLength) {
this.setLabel();
showingLength = false;
}
};
input.addEventListener('input', processInput);
}
this.input = input;
}
public setLabel() {
this.label.textContent = '';
if(this.options.labelText) {
this.label.innerHTML = this.options.labelText;
} else {
this.label.append(i18n(this.options.label, this.options.labelOptions));
}
}
public onFakeInput() {
const {scrollHeight, clientHeight} = this.inputFake;
if(this.wasInputFakeClientHeight && this.wasInputFakeClientHeight !== clientHeight) {
this.input.classList.add('no-scrollbar'); // ! в сафари может вообще не появиться скролл после анимации, так как ему нужен полный reflow блока с overflow.
this.showScrollDebounced();
}
this.wasInputFakeClientHeight = clientHeight;
this.input.style.height = scrollHeight ? scrollHeight + 'px' : '';
}
get value() {
return this.options.plainText ? (this.input as HTMLInputElement).value : getRichValue(this.input);
//return getRichValue(this.input);
}
set value(value: string) {
this.setValueSilently(value, false);
const event = new Event('input', {bubbles: true, cancelable: true});
this.input.dispatchEvent(event);
}
public setValueSilently(value: string, fireFakeInput = true) {
if(this.options.plainText) {
(this.input as HTMLInputElement).value = value;
} else {
this.input.innerHTML = value;
if(this.inputFake) {
this.inputFake.innerHTML = value;
if(fireFakeInput) {
this.onFakeInput();
}
}
}
}
2021-03-12 19:08:39 +01:00
public isValid() {
return !this.input.classList.contains('error') && this.value !== this.originalValue;
}
2021-03-16 16:18:51 +01:00
public setOriginalValue(value: InputField['originalValue'] = '', silent = false) {
2021-03-12 19:08:39 +01:00
this.originalValue = value;
2021-03-16 16:18:51 +01:00
if(!this.options.plainText) {
value = RichTextProcessor.wrapDraftText(value);
}
if(silent) {
this.setValueSilently(value, false);
2021-03-12 19:08:39 +01:00
} else {
2021-03-16 16:18:51 +01:00
this.value = value;
}
}
2021-03-21 15:36:14 +01:00
public setState(state: InputState, label?: LangPackKey) {
2021-03-16 16:18:51 +01:00
if(label) {
2021-03-26 18:49:29 +01:00
this.label.textContent = '';
this.label.append(i18n(label, this.options.labelOptions));
2021-03-12 19:08:39 +01:00
}
2021-03-16 16:18:51 +01:00
this.input.classList.toggle('error', !!(state & InputState.Error));
this.input.classList.toggle('valid', !!(state & InputState.Valid));
}
2021-03-23 17:13:35 +01:00
public setError(label?: LangPackKey) {
2021-03-16 16:18:51 +01:00
this.setState(InputState.Error, label);
2021-03-12 19:08:39 +01:00
}
}
export default InputField;