Fixed ChannelMentionProvider matching completed mentions (#5188)

Этот коммит содержится в:
Harrison Healey
2017-01-25 21:16:18 -05:00
коммит произвёл enahum
родитель f7476b2fb6
Коммит 931e712af1
2 изменённых файлов: 71 добавлений и 55 удалений

Просмотреть файл

@@ -51,73 +51,83 @@ class ChannelMentionSuggestion extends Suggestion {
}
export default class ChannelMentionProvider extends Provider {
constructor() {
super();
this.lastCompletedWord = '';
}
handlePretextChanged(suggestionId, pretext) {
const captured = (/(^|\s)(~([^~]*))$/i).exec(pretext.toLowerCase());
if (captured) {
const prefix = captured[3];
const captured = (/(^|\s)(~([^~\r\n]*))$/i).exec(pretext.toLowerCase());
if ((/\s/).test(prefix)) {
// If there's a space, there's a chance that we've already completed this mention
const firstWordOfPrefix = prefix.split(' ')[0];
if (!captured) {
// Not a channel mention
return;
}
for (const channel of ChannelStore.getChannels()) {
if (firstWordOfPrefix === channel.name) {
// We've already mentioned this channel so there's nothing else to look for
return;
}
if (this.lastCompletedWord && captured[0].startsWith(this.lastCompletedWord)) {
// It appears we're still matching a channel handle that we already completed
return;
}
// Clear the last completed word since we've started to match new text
this.lastCompletedWord = '';
const prefix = captured[3];
this.startNewRequest(prefix);
autocompleteChannels(
prefix,
(data) => {
if (this.shouldCancelDispatch(prefix)) {
return;
}
}
this.startNewRequest(prefix);
const channels = data;
autocompleteChannels(
prefix,
(data) => {
if (this.shouldCancelDispatch(prefix)) {
return;
}
const channels = data;
// Wrap channels in an outer object to avoid overwriting the 'type' property.
const wrappedChannels = [];
const wrappedMoreChannels = [];
const moreChannels = [];
channels.forEach((item) => {
if (ChannelStore.get(item.id)) {
wrappedChannels.push({
type: Constants.MENTION_CHANNELS,
channel: item
});
return;
}
wrappedMoreChannels.push({
type: Constants.MENTION_MORE_CHANNELS,
// Wrap channels in an outer object to avoid overwriting the 'type' property.
const wrappedChannels = [];
const wrappedMoreChannels = [];
const moreChannels = [];
channels.forEach((item) => {
if (ChannelStore.get(item.id)) {
wrappedChannels.push({
type: Constants.MENTION_CHANNELS,
channel: item
});
return;
}
moreChannels.push(item);
wrappedMoreChannels.push({
type: Constants.MENTION_MORE_CHANNELS,
channel: item
});
const wrapped = wrappedChannels.concat(wrappedMoreChannels);
const mentions = wrapped.map((item) => '~' + item.channel.name);
moreChannels.push(item);
});
AppDispatcher.handleServerAction({
type: ActionTypes.RECEIVED_MORE_CHANNELS,
channels: moreChannels
});
const wrapped = wrappedChannels.concat(wrappedMoreChannels);
const mentions = wrapped.map((item) => '~' + item.channel.name);
AppDispatcher.handleServerAction({
type: ActionTypes.SUGGESTION_RECEIVED_SUGGESTIONS,
id: suggestionId,
matchedPretext: captured[2],
terms: mentions,
items: wrapped,
component: ChannelMentionSuggestion
});
}
);
}
AppDispatcher.handleServerAction({
type: ActionTypes.RECEIVED_MORE_CHANNELS,
channels: moreChannels
});
AppDispatcher.handleServerAction({
type: ActionTypes.SUGGESTION_RECEIVED_SUGGESTIONS,
id: suggestionId,
matchedPretext: captured[2],
terms: mentions,
items: wrapped,
component: ChannelMentionSuggestion
});
}
);
}
handleCompleteWord(term) {
this.lastCompletedWord = term;
}
}

Просмотреть файл

@@ -153,6 +153,12 @@ export default class SuggestionBox extends React.Component {
window.requestAnimationFrame(() => {
Utils.setCaretPosition(textbox, prefix.length + term.length + 1);
});
for (const provider of this.props.providers) {
if (provider.handleCompleteWord) {
provider.handleCompleteWord(term, matchedPretext);
}
}
}
handleKeyDown(e) {