| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 |
- import _ from 'lodash';
- import React from 'react';
- import ReactDOM from 'react-dom';
- import { Change, Value } from 'slate';
- import { Editor } from 'slate-react';
- import Plain from 'slate-plain-serializer';
- import ClearPlugin from './slate-plugins/clear';
- import NewlinePlugin from './slate-plugins/newline';
- import Typeahead from './Typeahead';
- import { makeFragment, makeValue } from './Value';
- export const TYPEAHEAD_DEBOUNCE = 300;
- function flattenSuggestions(s: any[]): any[] {
- return s ? s.reduce((acc, g) => acc.concat(g.items), []) : [];
- }
- export interface Suggestion {
- /**
- * The label of this completion item. By default
- * this is also the text that is inserted when selecting
- * this completion.
- */
- label: string;
- /**
- * The kind of this completion item. Based on the kind
- * an icon is chosen by the editor.
- */
- kind?: string;
- /**
- * A human-readable string with additional information
- * about this item, like type or symbol information.
- */
- detail?: string;
- /**
- * A human-readable string, can be Markdown, that represents a doc-comment.
- */
- documentation?: string;
- /**
- * A string that should be used when comparing this item
- * with other items. When `falsy` the `label` is used.
- */
- sortText?: string;
- /**
- * A string that should be used when filtering a set of
- * completion items. When `falsy` the `label` is used.
- */
- filterText?: string;
- /**
- * A string or snippet that should be inserted in a document when selecting
- * this completion. When `falsy` the `label` is used.
- */
- insertText?: string;
- /**
- * Delete number of characters before the caret position,
- * by default the letters from the beginning of the word.
- */
- deleteBackwards?: number;
- /**
- * Number of steps to move after the insertion, can be negative.
- */
- move?: number;
- }
- export interface SuggestionGroup {
- /**
- * Label that will be displayed for all entries of this group.
- */
- label: string;
- /**
- * List of suggestions of this group.
- */
- items: Suggestion[];
- /**
- * If true, match only by prefix (and not mid-word).
- */
- prefixMatch?: boolean;
- /**
- * If true, do not filter items in this group based on the search.
- */
- skipFilter?: boolean;
- /**
- * If true, do not sort items.
- */
- skipSort?: boolean;
- }
- interface TypeaheadFieldProps {
- additionalPlugins?: any[];
- cleanText?: (text: string) => string;
- initialValue: string | null;
- onBlur?: () => void;
- onFocus?: () => void;
- onTypeahead?: (typeahead: TypeaheadInput) => TypeaheadOutput;
- onValueChanged?: (value: Value) => void;
- onWillApplySuggestion?: (suggestion: string, state: TypeaheadFieldState) => string;
- placeholder?: string;
- portalPrefix?: string;
- syntax?: string;
- }
- export interface TypeaheadFieldState {
- suggestions: SuggestionGroup[];
- typeaheadContext: string | null;
- typeaheadIndex: number;
- typeaheadPrefix: string;
- typeaheadText: string;
- value: Value;
- }
- export interface TypeaheadInput {
- editorNode: Element;
- prefix: string;
- selection?: Selection;
- text: string;
- value: Value;
- wrapperNode: Element;
- }
- export interface TypeaheadOutput {
- context?: string;
- refresher?: Promise<{}>;
- suggestions: SuggestionGroup[];
- }
- class QueryField extends React.Component<TypeaheadFieldProps, TypeaheadFieldState> {
- menuEl: HTMLElement | null;
- plugins: any[];
- resetTimer: any;
- constructor(props, context) {
- super(props, context);
- // Base plugins
- this.plugins = [ClearPlugin(), NewlinePlugin(), ...props.additionalPlugins];
- this.state = {
- suggestions: [],
- typeaheadContext: null,
- typeaheadIndex: 0,
- typeaheadPrefix: '',
- typeaheadText: '',
- value: makeValue(props.initialValue || '', props.syntax),
- };
- }
- componentDidMount() {
- this.updateMenu();
- }
- componentWillUnmount() {
- clearTimeout(this.resetTimer);
- }
- componentDidUpdate() {
- this.updateMenu();
- }
- componentWillReceiveProps(nextProps) {
- // initialValue is null in case the user typed
- if (nextProps.initialValue !== null && nextProps.initialValue !== this.props.initialValue) {
- this.setState({ value: makeValue(nextProps.initialValue, nextProps.syntax) });
- }
- }
- onChange = ({ value }) => {
- const changed = value.document !== this.state.value.document;
- this.setState({ value }, () => {
- if (changed) {
- this.handleChangeValue();
- }
- });
- if (changed) {
- window.requestAnimationFrame(this.handleTypeahead);
- }
- };
- handleChangeValue = () => {
- // Send text change to parent
- const { onValueChanged } = this.props;
- if (onValueChanged) {
- onValueChanged(Plain.serialize(this.state.value));
- }
- };
- handleTypeahead = _.debounce(async () => {
- const selection = window.getSelection();
- const { cleanText, onTypeahead } = this.props;
- const { value } = this.state;
- if (onTypeahead && selection.anchorNode) {
- const wrapperNode = selection.anchorNode.parentElement;
- const editorNode = wrapperNode.closest('.slate-query-field');
- if (!editorNode || this.state.value.isBlurred) {
- // Not inside this editor
- return;
- }
- const range = selection.getRangeAt(0);
- const offset = range.startOffset;
- const text = selection.anchorNode.textContent;
- let prefix = text.substr(0, offset);
- if (cleanText) {
- prefix = cleanText(prefix);
- }
- const { suggestions, context, refresher } = onTypeahead({
- editorNode,
- prefix,
- selection,
- text,
- value,
- wrapperNode,
- });
- const filteredSuggestions = suggestions
- .map(group => {
- if (group.items) {
- if (prefix) {
- // Filter groups based on prefix
- if (!group.skipFilter) {
- group.items = group.items.filter(c => (c.filterText || c.label).length >= prefix.length);
- if (group.prefixMatch) {
- group.items = group.items.filter(c => (c.filterText || c.label).indexOf(prefix) === 0);
- } else {
- group.items = group.items.filter(c => (c.filterText || c.label).indexOf(prefix) > -1);
- }
- }
- // Filter out the already typed value (prefix) unless it inserts custom text
- group.items = group.items.filter(c => c.insertText || (c.filterText || c.label) !== prefix);
- }
- if (!group.skipSort) {
- group.items = _.sortBy(group.items, item => item.sortText || item.label);
- }
- }
- return group;
- })
- .filter(group => group.items && group.items.length > 0); // Filter out empty groups
- this.setState(
- {
- suggestions: filteredSuggestions,
- typeaheadPrefix: prefix,
- typeaheadContext: context,
- typeaheadText: text,
- },
- () => {
- if (refresher) {
- refresher.then(this.handleTypeahead).catch(e => console.error(e));
- }
- }
- );
- }
- }, TYPEAHEAD_DEBOUNCE);
- applyTypeahead(change: Change, suggestion: Suggestion): Change {
- const { cleanText, onWillApplySuggestion, syntax } = this.props;
- const { typeaheadPrefix, typeaheadText } = this.state;
- let suggestionText = suggestion.insertText || suggestion.label;
- const move = suggestion.move || 0;
- if (onWillApplySuggestion) {
- suggestionText = onWillApplySuggestion(suggestionText, { ...this.state });
- }
- this.resetTypeahead();
- // Remove the current, incomplete text and replace it with the selected suggestion
- const backward = suggestion.deleteBackwards || typeaheadPrefix.length;
- const text = cleanText ? cleanText(typeaheadText) : typeaheadText;
- const suffixLength = text.length - typeaheadPrefix.length;
- const offset = typeaheadText.indexOf(typeaheadPrefix);
- const midWord = typeaheadPrefix && ((suffixLength > 0 && offset > -1) || suggestionText === typeaheadText);
- const forward = midWord ? suffixLength + offset : 0;
- // If new-lines, apply suggestion as block
- if (suggestionText.match(/\n/)) {
- const fragment = makeFragment(suggestionText, syntax);
- return change
- .deleteBackward(backward)
- .deleteForward(forward)
- .insertFragment(fragment)
- .focus();
- }
- return change
- .deleteBackward(backward)
- .deleteForward(forward)
- .insertText(suggestionText)
- .move(move)
- .focus();
- }
- onKeyDown = (event, change) => {
- const { typeaheadIndex, suggestions } = this.state;
- switch (event.key) {
- case 'Escape': {
- if (this.menuEl) {
- event.preventDefault();
- event.stopPropagation();
- this.resetTypeahead();
- return true;
- }
- break;
- }
- case ' ': {
- if (event.ctrlKey) {
- event.preventDefault();
- this.handleTypeahead();
- return true;
- }
- break;
- }
- case 'Enter':
- case 'Tab': {
- if (this.menuEl) {
- // Dont blur input
- event.preventDefault();
- if (!suggestions || suggestions.length === 0) {
- return undefined;
- }
- // Get the currently selected suggestion
- const flattenedSuggestions = flattenSuggestions(suggestions);
- const selected = Math.abs(typeaheadIndex);
- const selectedIndex = selected % flattenedSuggestions.length || 0;
- const suggestion = flattenedSuggestions[selectedIndex];
- this.applyTypeahead(change, suggestion);
- return true;
- }
- break;
- }
- case 'ArrowDown': {
- if (this.menuEl) {
- // Select next suggestion
- event.preventDefault();
- this.setState({ typeaheadIndex: typeaheadIndex + 1 });
- }
- break;
- }
- case 'ArrowUp': {
- if (this.menuEl) {
- // Select previous suggestion
- event.preventDefault();
- this.setState({ typeaheadIndex: Math.max(0, typeaheadIndex - 1) });
- }
- break;
- }
- default: {
- // console.log('default key', event.key, event.which, event.charCode, event.locale, data.key);
- break;
- }
- }
- return undefined;
- };
- resetTypeahead = () => {
- this.setState({
- suggestions: [],
- typeaheadIndex: 0,
- typeaheadPrefix: '',
- typeaheadContext: null,
- });
- };
- handleBlur = () => {
- const { onBlur } = this.props;
- // If we dont wait here, menu clicks wont work because the menu
- // will be gone.
- this.resetTimer = setTimeout(this.resetTypeahead, 100);
- if (onBlur) {
- onBlur();
- }
- };
- handleFocus = () => {
- const { onFocus } = this.props;
- if (onFocus) {
- onFocus();
- }
- };
- onClickMenu = (item: Suggestion) => {
- // Manually triggering change
- const change = this.applyTypeahead(this.state.value.change(), item);
- this.onChange(change);
- };
- updateMenu = () => {
- const { suggestions } = this.state;
- const menu = this.menuEl;
- const selection = window.getSelection();
- const node = selection.anchorNode;
- // No menu, nothing to do
- if (!menu) {
- return;
- }
- // No suggestions or blur, remove menu
- const hasSuggesstions = suggestions && suggestions.length > 0;
- if (!hasSuggesstions) {
- menu.removeAttribute('style');
- return;
- }
- // Align menu overlay to editor node
- if (node) {
- // Read from DOM
- const rect = node.parentElement.getBoundingClientRect();
- const scrollX = window.scrollX;
- const scrollY = window.scrollY;
- // Write DOM
- requestAnimationFrame(() => {
- menu.style.opacity = '1';
- menu.style.top = `${rect.top + scrollY + rect.height + 4}px`;
- menu.style.left = `${rect.left + scrollX - 2}px`;
- });
- }
- };
- menuRef = el => {
- this.menuEl = el;
- };
- renderMenu = () => {
- const { portalPrefix } = this.props;
- const { suggestions } = this.state;
- const hasSuggesstions = suggestions && suggestions.length > 0;
- if (!hasSuggesstions) {
- return null;
- }
- // Guard selectedIndex to be within the length of the suggestions
- let selectedIndex = Math.max(this.state.typeaheadIndex, 0);
- const flattenedSuggestions = flattenSuggestions(suggestions);
- selectedIndex = selectedIndex % flattenedSuggestions.length || 0;
- const selectedItem: Suggestion | null =
- flattenedSuggestions.length > 0 ? flattenedSuggestions[selectedIndex] : null;
- // Create typeahead in DOM root so we can later position it absolutely
- return (
- <Portal prefix={portalPrefix}>
- <Typeahead
- menuRef={this.menuRef}
- selectedItem={selectedItem}
- onClickItem={this.onClickMenu}
- groupedItems={suggestions}
- />
- </Portal>
- );
- };
- render() {
- return (
- <div className="slate-query-field">
- {this.renderMenu()}
- <Editor
- autoCorrect={false}
- onBlur={this.handleBlur}
- onKeyDown={this.onKeyDown}
- onChange={this.onChange}
- onFocus={this.handleFocus}
- placeholder={this.props.placeholder}
- plugins={this.plugins}
- spellCheck={false}
- value={this.state.value}
- />
- </div>
- );
- }
- }
- class Portal extends React.Component<{ index?: number; prefix: string }, {}> {
- node: HTMLElement;
- constructor(props) {
- super(props);
- const { index = 0, prefix = 'query' } = props;
- this.node = document.createElement('div');
- this.node.classList.add(`slate-typeahead`, `slate-typeahead-${prefix}-${index}`);
- document.body.appendChild(this.node);
- }
- componentWillUnmount() {
- document.body.removeChild(this.node);
- }
- render() {
- return ReactDOM.createPortal(this.props.children, this.node);
- }
- }
- export default QueryField;
|