Removed space bar from autocompletes
Этот коммит содержится в:
@@ -38,7 +38,6 @@ class SuggestionStore extends EventEmitter {
|
||||
// items: a list of objects backing the terms which may be used in rendering
|
||||
// components: a list of react components that can be used to render their corresponding item
|
||||
// selection: the term currently selected by the keyboard
|
||||
// completeOnSpace: whether or not space will trigger the term to be autocompleted
|
||||
this.suggestions = new Map();
|
||||
}
|
||||
|
||||
@@ -79,8 +78,7 @@ class SuggestionStore extends EventEmitter {
|
||||
terms: [],
|
||||
items: [],
|
||||
components: [],
|
||||
selection: '',
|
||||
completeOnSpace: true
|
||||
selection: ''
|
||||
});
|
||||
}
|
||||
|
||||
@@ -95,7 +93,6 @@ class SuggestionStore extends EventEmitter {
|
||||
suggestion.terms = [];
|
||||
suggestion.items = [];
|
||||
suggestion.components = [];
|
||||
suggestion.completeOnSpace = true;
|
||||
}
|
||||
|
||||
clearSelection(id) {
|
||||
@@ -120,12 +117,6 @@ class SuggestionStore extends EventEmitter {
|
||||
suggestion.matchedPretext = matchedPretext;
|
||||
}
|
||||
|
||||
setCompleteOnSpace(id, completeOnSpace) {
|
||||
const suggestion = this.suggestions.get(id);
|
||||
|
||||
suggestion.completeOnSpace = completeOnSpace;
|
||||
}
|
||||
|
||||
addSuggestion(id, term, item, component) {
|
||||
const suggestion = this.suggestions.get(id);
|
||||
|
||||
@@ -189,10 +180,6 @@ class SuggestionStore extends EventEmitter {
|
||||
return this.suggestions.get(id).selection;
|
||||
}
|
||||
|
||||
shouldCompleteOnSpace(id) {
|
||||
return this.suggestions.get(id).completeOnSpace;
|
||||
}
|
||||
|
||||
selectNext(id) {
|
||||
this.setSelectionByDelta(id, 1);
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user