import { h, Component } from 'preact'; import { trackEvent } from '../analytics'; export class LibraryAutoSuggest extends Component { componentDidMount() { this.t = this.wrap.querySelector('input,textarea'); this.filter = this.props.filter; this.selectedCallback = this.props.onSelect; // after list is insrted into the DOM, we put it in the body // fixed at same position setTimeout(() => { requestIdleCallback(() => { document.body.appendChild(this.list); this.list.style.position = 'fixed'; }); }, 100); this.t.addEventListener('input', e => this.onInput(e)); this.t.addEventListener('keydown', e => this.onKeyDown(e)); this.t.addEventListener('blur', e => this.closeSuggestions(e)); } componentWillUnmount() { this.t.removeEventListener('input', e => this.onInput(e)); this.t.removeEventListener('keydown', e => this.onKeyDown(e)); this.t.removeEventListener('blur', e => this.closeSuggestions(e)); } get currentLineNumber() { return this.t.value.substr(0, this.t.selectionStart).split('\n').length; } get currentLine() { var line = this.currentLineNumber; return this.t.value.split('\n')[line - 1]; } listMouseDownHandler() {} closeSuggestions() { this.list.classList.remove('is-open'); this.isShowingSuggestions = false; } getList(input) { var url = 'https://api.cdnjs.com/libraries?search='; return fetch(url + input).then(response => { return response.json().then(json => json.results); }); } replaceCurrentLine(val) { var lines = this.t.value.split('\n'); lines.splice(this.currentLineNumber - 1, 1, val); this.t.value = lines.join('\n'); } onInput() { var currentLine = this.currentLine; if (currentLine) { if (currentLine.indexOf('/') !== -1 || currentLine.match(/https*:\/\//)) { return; } clearTimeout(this.timeout); this.timeout = setTimeout(() => { this.loader.style.display = 'block'; this.getList(currentLine).then(arr => { this.loader.style.display = 'none'; if (!arr.length) { this.closeSuggestions(); return; } this.list.innerHTML = ''; if (this.filter) { /* eslint-disable no-param-reassign */ arr = arr.filter(this.filter); } for (var i = 0; i < Math.min(arr.length, 10); i++) { this.list.innerHTML += `