debian-mirror-gitlab/app/assets/javascripts/gfm_auto_complete.js

727 lines
22 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2020-03-13 15:44:24 +05:30
import '@gitlab/at.js';
2020-05-24 23:13:21 +05:30
import { escape, template } from 'lodash';
2020-03-13 15:44:24 +05:30
import SidebarMediator from '~/sidebar/sidebar_mediator';
2017-09-10 17:25:29 +05:30
import glRegexp from './lib/utils/regexp';
import AjaxCache from './lib/utils/ajax_cache';
2020-01-01 13:55:28 +05:30
import { spriteIcon } from './lib/utils/common_utils';
2020-07-28 23:09:34 +05:30
import * as Emoji from '~/emoji';
2017-08-17 22:00:37 +05:30
function sanitize(str) {
return str.replace(/<(?:.|\n)*?>/gm, '');
}
2020-01-01 13:55:28 +05:30
export function membersBeforeSave(members) {
2020-05-24 23:13:21 +05:30
return members.map(member => {
2020-01-01 13:55:28 +05:30
const GROUP_TYPE = 'Group';
let title = '';
if (member.username == null) {
return member;
}
title = member.name;
if (member.count && !member.mentionsDisabled) {
title += ` (${member.count})`;
}
const autoCompleteAvatar = member.avatar_url || member.username.charAt(0).toUpperCase();
const rectAvatarClass = member.type === GROUP_TYPE ? 'rect-avatar' : '';
const imgAvatar = `<img src="${member.avatar_url}" alt="${member.username}" class="avatar ${rectAvatarClass} avatar-inline center s26"/>`;
const txtAvatar = `<div class="avatar ${rectAvatarClass} center avatar-inline s26">${autoCompleteAvatar}</div>`;
const avatarIcon = member.mentionsDisabled
2020-07-28 23:09:34 +05:30
? spriteIcon('notifications-off', 's16 vertical-align-middle gl-ml-2')
2020-01-01 13:55:28 +05:30
: '';
return {
username: member.username,
avatarTag: autoCompleteAvatar.length === 1 ? txtAvatar : imgAvatar,
title: sanitize(title),
search: sanitize(`${member.username} ${member.name}`),
icon: avatarIcon,
};
});
}
2018-11-08 19:23:39 +05:30
export const defaultAutocompleteConfig = {
emojis: true,
members: true,
issues: true,
mergeRequests: true,
epics: true,
milestones: true,
labels: true,
2018-12-05 23:21:45 +05:30
snippets: true,
2018-11-08 19:23:39 +05:30
};
2017-09-10 17:25:29 +05:30
class GfmAutoComplete {
2020-03-13 15:44:24 +05:30
constructor(dataSources = {}) {
this.dataSources = dataSources;
2017-09-10 17:25:29 +05:30
this.cachedData = {};
this.isLoadingData = {};
}
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
setup(input, enableMap = defaultAutocompleteConfig) {
2017-08-17 22:00:37 +05:30
// Add GFM auto-completion to all input fields, that accept GFM input.
this.input = input || $('.js-gfm-input');
this.enableMap = enableMap;
this.setupLifecycle();
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
setupLifecycle() {
this.input.each((i, input) => {
const $input = $(input);
$input.off('focus.setupAtWho').on('focus.setupAtWho', this.setupAtWho.bind(this, $input));
2017-09-10 17:25:29 +05:30
$input.on('change.atwho', () => input.dispatchEvent(new Event('input')));
2017-08-17 22:00:37 +05:30
// This triggers at.js again
2017-09-10 17:25:29 +05:30
// Needed for quick actions with suffixes (ex: /label ~)
2017-08-17 22:00:37 +05:30
$input.on('inserted-commands.atwho', $input.trigger.bind($input, 'keyup'));
2017-09-10 17:25:29 +05:30
$input.on('clear-commands-cache.atwho', () => this.clearCache());
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
setupAtWho($input) {
2017-08-17 22:00:37 +05:30
if (this.enableMap.emojis) this.setupEmoji($input);
if (this.enableMap.members) this.setupMembers($input);
if (this.enableMap.issues) this.setupIssues($input);
if (this.enableMap.milestones) this.setupMilestones($input);
if (this.enableMap.mergeRequests) this.setupMergeRequests($input);
if (this.enableMap.labels) this.setupLabels($input);
2018-12-05 23:21:45 +05:30
if (this.enableMap.snippets) this.setupSnippets($input);
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
$input.filter('[data-supports-quick-actions="true"]').atwho({
2017-08-17 22:00:37 +05:30
at: '/',
alias: 'commands',
searchKey: 'search',
skipSpecialCharacterTest: true,
2018-05-09 12:01:36 +05:30
skipMarkdownCharacterTest: true,
2017-09-10 17:25:29 +05:30
data: GfmAutoComplete.defaultLoadingData,
displayTpl(value) {
2019-02-15 15:39:39 +05:30
const cssClasses = [];
2017-09-10 17:25:29 +05:30
if (GfmAutoComplete.isLoading(value)) return GfmAutoComplete.Loading.template;
// eslint-disable-next-line no-template-curly-in-string
2019-02-15 15:39:39 +05:30
let tpl = '<li class="<%- className %>"><span class="name">/${name}</span>';
2017-08-17 22:00:37 +05:30
if (value.aliases.length > 0) {
2018-03-17 18:26:18 +05:30
tpl += ' <small class="aliases">(or /<%- aliases.join(", /") %>)</small>';
2017-08-17 22:00:37 +05:30
}
if (value.params.length > 0) {
2018-03-17 18:26:18 +05:30
tpl += ' <small class="params"><%- params.join(" ") %></small>';
2017-08-17 22:00:37 +05:30
}
2020-03-13 15:44:24 +05:30
if (value.warning && value.icon && value.icon === 'confidential') {
2020-07-28 23:09:34 +05:30
tpl += `<small class="description gl-display-flex gl-align-items-center">${spriteIcon(
'eye-slash',
's16 gl-mr-2',
)}<em><%- warning %></em></small>`;
2020-03-13 15:44:24 +05:30
} else if (value.warning) {
tpl += '<small class="description"><em><%- warning %></em></small>';
} else if (value.description !== '') {
tpl += '<small class="description"><em><%- description %></em></small>';
2017-08-17 22:00:37 +05:30
}
tpl += '</li>';
2019-02-15 15:39:39 +05:30
if (value.warning) {
cssClasses.push('has-warning');
}
2020-05-24 23:13:21 +05:30
return template(tpl)({
2019-02-15 15:39:39 +05:30
...value,
className: cssClasses.join(' '),
});
2017-09-10 17:25:29 +05:30
},
insertTpl(value) {
// eslint-disable-next-line no-template-curly-in-string
let tpl = '/${name} ';
let referencePrefix = null;
2017-08-17 22:00:37 +05:30
if (value.params.length > 0) {
2018-11-08 19:23:39 +05:30
[[referencePrefix]] = value.params;
2017-09-10 17:25:29 +05:30
if (/^[@%~]/.test(referencePrefix)) {
tpl += '<%- referencePrefix %>';
2017-08-17 22:00:37 +05:30
}
}
2020-05-24 23:13:21 +05:30
return template(tpl, { interpolate: /<%=([\s\S]+?)%>/g })({ referencePrefix });
2017-08-17 22:00:37 +05:30
},
suffix: '',
callbacks: {
2017-09-10 17:25:29 +05:30
...this.getDefaultCallbacks(),
beforeSave(commands) {
if (GfmAutoComplete.isLoading(commands)) return commands;
2018-12-13 13:39:08 +05:30
return $.map(commands, c => {
2017-09-10 17:25:29 +05:30
let search = c.name;
2017-08-17 22:00:37 +05:30
if (c.aliases.length > 0) {
2017-09-10 17:25:29 +05:30
search = `${search} ${c.aliases.join(' ')}`;
2017-08-17 22:00:37 +05:30
}
return {
name: c.name,
aliases: c.aliases,
params: c.params,
description: c.description,
2019-02-15 15:39:39 +05:30
warning: c.warning,
2020-03-13 15:44:24 +05:30
icon: c.icon,
2017-09-10 17:25:29 +05:30
search,
2017-08-17 22:00:37 +05:30
};
});
},
2017-09-10 17:25:29 +05:30
matcher(flag, subtext) {
const regexp = /(?:^|\n)\/([A-Za-z_]*)$/gi;
const match = regexp.exec(subtext);
2017-08-17 22:00:37 +05:30
if (match) {
return match[1];
}
2017-09-10 17:25:29 +05:30
return null;
},
},
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
setupEmoji($input) {
// Emoji
$input.atwho({
at: ':',
2017-09-10 17:25:29 +05:30
displayTpl(value) {
let tmpl = GfmAutoComplete.Loading.template;
if (value && value.name) {
tmpl = GfmAutoComplete.Emoji.templateFunction(value.name);
}
return tmpl;
},
// eslint-disable-next-line no-template-curly-in-string
2017-08-17 22:00:37 +05:30
insertTpl: ':${name}:',
skipSpecialCharacterTest: true,
2017-09-10 17:25:29 +05:30
data: GfmAutoComplete.defaultLoadingData,
2017-08-17 22:00:37 +05:30
callbacks: {
2017-09-10 17:25:29 +05:30
...this.getDefaultCallbacks(),
matcher(flag, subtext) {
2017-08-17 22:00:37 +05:30
const regexp = new RegExp(`(?:[^${glRegexp.unicodeLetters}0-9:]|\n|^):([^:]*)$`, 'gi');
2018-05-09 12:01:36 +05:30
const match = regexp.exec(subtext);
2017-08-17 22:00:37 +05:30
return match && match.length ? match[1] : null;
2017-09-10 17:25:29 +05:30
},
},
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
setupMembers($input) {
2020-03-13 15:44:24 +05:30
const fetchData = this.fetchData.bind(this);
const MEMBER_COMMAND = {
ASSIGN: '/assign',
UNASSIGN: '/unassign',
REASSIGN: '/reassign',
CC: '/cc',
};
let assignees = [];
let command = '';
2017-08-17 22:00:37 +05:30
// Team Members
$input.atwho({
at: '@',
2018-11-20 20:47:30 +05:30
alias: 'users',
2017-09-10 17:25:29 +05:30
displayTpl(value) {
let tmpl = GfmAutoComplete.Loading.template;
2020-01-01 13:55:28 +05:30
const { avatarTag, username, title, icon } = value;
2018-11-20 20:47:30 +05:30
if (username != null) {
tmpl = GfmAutoComplete.Members.templateFunction({
avatarTag,
username,
title,
2020-01-01 13:55:28 +05:30
icon,
2018-11-20 20:47:30 +05:30
});
2017-09-10 17:25:29 +05:30
}
return tmpl;
},
// eslint-disable-next-line no-template-curly-in-string
2017-08-17 22:00:37 +05:30
insertTpl: '${atwho-at}${username}',
searchKey: 'search',
alwaysHighlightFirst: true,
skipSpecialCharacterTest: true,
2017-09-10 17:25:29 +05:30
data: GfmAutoComplete.defaultLoadingData,
2017-08-17 22:00:37 +05:30
callbacks: {
2017-09-10 17:25:29 +05:30
...this.getDefaultCallbacks(),
2020-01-01 13:55:28 +05:30
beforeSave: membersBeforeSave,
2020-03-13 15:44:24 +05:30
matcher(flag, subtext) {
const subtextNodes = subtext
.split(/\n+/g)
.pop()
.split(GfmAutoComplete.regexSubtext);
// Check if @ is followed by '/assign', '/reassign', '/unassign' or '/cc' commands.
command = subtextNodes.find(node => {
if (Object.values(MEMBER_COMMAND).includes(node)) {
return node;
}
return null;
});
// Cache assignees list for easier filtering later
2020-04-22 19:07:51 +05:30
assignees =
SidebarMediator.singleton?.store?.assignees?.map(
assignee => `${assignee.username} ${assignee.name}`,
) || [];
2020-03-13 15:44:24 +05:30
const match = GfmAutoComplete.defaultMatcher(flag, subtext, this.app.controllers);
return match && match.length ? match[1] : null;
},
filter(query, data, searchKey) {
if (GfmAutoComplete.isLoading(data)) {
fetchData(this.$inputor, this.at);
return data;
}
if (data === GfmAutoComplete.defaultLoadingData) {
return $.fn.atwho.default.callbacks.filter(query, data, searchKey);
}
if (command === MEMBER_COMMAND.ASSIGN) {
// Only include members which are not assigned to Issuable currently
return data.filter(member => !assignees.includes(member.search));
} else if (command === MEMBER_COMMAND.UNASSIGN) {
// Only include members which are assigned to Issuable currently
return data.filter(member => assignees.includes(member.search));
}
return data;
},
2017-09-10 17:25:29 +05:30
},
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
setupIssues($input) {
$input.atwho({
at: '#',
alias: 'issues',
searchKey: 'search',
2017-09-10 17:25:29 +05:30
displayTpl(value) {
let tmpl = GfmAutoComplete.Loading.template;
if (value.title != null) {
2019-02-15 15:39:39 +05:30
tmpl = GfmAutoComplete.Issues.templateFunction(value);
2017-09-10 17:25:29 +05:30
}
return tmpl;
},
data: GfmAutoComplete.defaultLoadingData,
2019-02-15 15:39:39 +05:30
insertTpl: GfmAutoComplete.Issues.insertTemplateFunction,
skipSpecialCharacterTest: true,
2017-08-17 22:00:37 +05:30
callbacks: {
2017-09-10 17:25:29 +05:30
...this.getDefaultCallbacks(),
beforeSave(issues) {
2018-12-13 13:39:08 +05:30
return $.map(issues, i => {
2017-08-17 22:00:37 +05:30
if (i.title == null) {
return i;
}
return {
id: i.iid,
title: sanitize(i.title),
2019-02-15 15:39:39 +05:30
reference: i.reference,
2017-09-10 17:25:29 +05:30
search: `${i.iid} ${i.title}`,
2017-08-17 22:00:37 +05:30
};
});
2017-09-10 17:25:29 +05:30
},
},
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
setupMilestones($input) {
$input.atwho({
at: '%',
alias: 'milestones',
searchKey: 'search',
2017-09-10 17:25:29 +05:30
// eslint-disable-next-line no-template-curly-in-string
2017-08-17 22:00:37 +05:30
insertTpl: '${atwho-at}${title}',
2017-09-10 17:25:29 +05:30
displayTpl(value) {
let tmpl = GfmAutoComplete.Loading.template;
if (value.title != null) {
2019-01-03 12:48:30 +05:30
tmpl = GfmAutoComplete.Milestones.templateFunction(value.title);
2017-09-10 17:25:29 +05:30
}
return tmpl;
},
data: GfmAutoComplete.defaultLoadingData,
2017-08-17 22:00:37 +05:30
callbacks: {
2017-09-10 17:25:29 +05:30
...this.getDefaultCallbacks(),
beforeSave(milestones) {
2018-12-13 13:39:08 +05:30
return $.map(milestones, m => {
2017-08-17 22:00:37 +05:30
if (m.title == null) {
return m;
}
return {
id: m.iid,
title: sanitize(m.title),
2017-09-10 17:25:29 +05:30
search: m.title,
2017-08-17 22:00:37 +05:30
};
});
2017-09-10 17:25:29 +05:30
},
},
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
setupMergeRequests($input) {
$input.atwho({
at: '!',
alias: 'mergerequests',
searchKey: 'search',
2017-09-10 17:25:29 +05:30
displayTpl(value) {
let tmpl = GfmAutoComplete.Loading.template;
if (value.title != null) {
2019-02-15 15:39:39 +05:30
tmpl = GfmAutoComplete.Issues.templateFunction(value);
2017-09-10 17:25:29 +05:30
}
return tmpl;
},
data: GfmAutoComplete.defaultLoadingData,
2019-02-15 15:39:39 +05:30
insertTpl: GfmAutoComplete.Issues.insertTemplateFunction,
skipSpecialCharacterTest: true,
2017-08-17 22:00:37 +05:30
callbacks: {
2017-09-10 17:25:29 +05:30
...this.getDefaultCallbacks(),
beforeSave(merges) {
2018-12-13 13:39:08 +05:30
return $.map(merges, m => {
2017-08-17 22:00:37 +05:30
if (m.title == null) {
return m;
}
return {
id: m.iid,
title: sanitize(m.title),
2019-02-15 15:39:39 +05:30
reference: m.reference,
2017-09-10 17:25:29 +05:30
search: `${m.iid} ${m.title}`,
2017-08-17 22:00:37 +05:30
};
});
2017-09-10 17:25:29 +05:30
},
},
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2017-08-17 22:00:37 +05:30
setupLabels($input) {
2019-09-30 21:07:59 +05:30
const instance = this;
2018-03-17 18:26:18 +05:30
const fetchData = this.fetchData.bind(this);
const LABEL_COMMAND = { LABEL: '/label', UNLABEL: '/unlabel', RELABEL: '/relabel' };
let command = '';
2017-08-17 22:00:37 +05:30
$input.atwho({
at: '~',
alias: 'labels',
searchKey: 'search',
2017-09-10 17:25:29 +05:30
data: GfmAutoComplete.defaultLoadingData,
displayTpl(value) {
2019-01-03 12:48:30 +05:30
let tmpl = GfmAutoComplete.Labels.templateFunction(value.color, value.title);
2017-09-10 17:25:29 +05:30
if (GfmAutoComplete.isLoading(value)) {
tmpl = GfmAutoComplete.Loading.template;
}
return tmpl;
},
// eslint-disable-next-line no-template-curly-in-string
2017-08-17 22:00:37 +05:30
insertTpl: '${atwho-at}${title}',
2019-12-21 20:55:43 +05:30
limit: 20,
2017-08-17 22:00:37 +05:30
callbacks: {
2017-09-10 17:25:29 +05:30
...this.getDefaultCallbacks(),
beforeSave(merges) {
if (GfmAutoComplete.isLoading(merges)) return merges;
return $.map(merges, m => ({
title: sanitize(m.title),
color: m.color,
search: m.title,
2018-03-17 18:26:18 +05:30
set: m.set,
2017-09-10 17:25:29 +05:30
}));
},
2018-03-17 18:26:18 +05:30
matcher(flag, subtext) {
2018-12-13 13:39:08 +05:30
const subtextNodes = subtext
.split(/\n+/g)
.pop()
.split(GfmAutoComplete.regexSubtext);
2018-03-17 18:26:18 +05:30
// Check if ~ is followed by '/label', '/relabel' or '/unlabel' commands.
2018-12-13 13:39:08 +05:30
command = subtextNodes.find(node => {
if (
node === LABEL_COMMAND.LABEL ||
node === LABEL_COMMAND.RELABEL ||
node === LABEL_COMMAND.UNLABEL
) {
return node;
}
2018-03-17 18:26:18 +05:30
return null;
});
2019-09-30 21:07:59 +05:30
// If any label matches the inserted text after the last `~`, suggest those labels,
// even if any spaces or funky characters were typed.
// This allows matching labels like "Accepting merge requests".
const labels = instance.cachedData[flag];
if (labels) {
if (!subtext.includes(flag)) {
// Do not match if there is no `~` before the cursor
return null;
}
const lastCandidate = subtext.split(flag).pop();
if (labels.find(label => label.title.startsWith(lastCandidate))) {
return lastCandidate;
}
} else {
// Load all labels into the autocompleter.
// This needs to happen if e.g. editing a label in an existing comment, because normally
// label data would only be loaded only once you type `~`.
fetchData(this.$inputor, this.at);
}
const match = GfmAutoComplete.defaultMatcher(flag, subtext, this.app.controllers);
2018-03-17 18:26:18 +05:30
return match && match.length ? match[1] : null;
},
filter(query, data, searchKey) {
if (GfmAutoComplete.isLoading(data)) {
fetchData(this.$inputor, this.at);
return data;
}
if (data === GfmAutoComplete.defaultLoadingData) {
return $.fn.atwho.default.callbacks.filter(query, data, searchKey);
}
// The `LABEL_COMMAND.RELABEL` is intentionally skipped
// because we want to return all the labels (unfiltered) for that command.
if (command === LABEL_COMMAND.LABEL) {
// Return labels with set: undefined.
return data.filter(label => !label.set);
} else if (command === LABEL_COMMAND.UNLABEL) {
// Return labels with set: true.
return data.filter(label => label.set);
}
return data;
},
2017-09-10 17:25:29 +05:30
},
2017-08-17 22:00:37 +05:30
});
2017-09-10 17:25:29 +05:30
}
2018-12-05 23:21:45 +05:30
setupSnippets($input) {
$input.atwho({
at: '$',
alias: 'snippets',
searchKey: 'search',
displayTpl(value) {
let tmpl = GfmAutoComplete.Loading.template;
if (value.title != null) {
2019-02-15 15:39:39 +05:30
tmpl = GfmAutoComplete.Issues.templateFunction(value);
2018-12-05 23:21:45 +05:30
}
return tmpl;
},
data: GfmAutoComplete.defaultLoadingData,
// eslint-disable-next-line no-template-curly-in-string
insertTpl: '${atwho-at}${id}',
callbacks: {
...this.getDefaultCallbacks(),
beforeSave(snippets) {
2018-12-13 13:39:08 +05:30
return $.map(snippets, m => {
2018-12-05 23:21:45 +05:30
if (m.title == null) {
return m;
}
return {
id: m.id,
title: sanitize(m.title),
search: `${m.id} ${m.title}`,
};
});
},
},
});
}
2017-09-10 17:25:29 +05:30
getDefaultCallbacks() {
const fetchData = this.fetchData.bind(this);
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
return {
sorter(query, items, searchKey) {
this.setting.highlightFirst = this.setting.alwaysHighlightFirst || query.length > 0;
if (GfmAutoComplete.isLoading(items)) {
this.setting.highlightFirst = false;
return items;
}
return $.fn.atwho.default.callbacks.sorter(query, items, searchKey);
},
filter(query, data, searchKey) {
if (GfmAutoComplete.isLoading(data)) {
fetchData(this.$inputor, this.at);
return data;
}
return $.fn.atwho.default.callbacks.filter(query, data, searchKey);
},
beforeInsert(value) {
2018-05-09 12:01:36 +05:30
let withoutAt = value.substring(1);
const at = value.charAt();
2017-09-10 17:25:29 +05:30
if (value && !this.setting.skipSpecialCharacterTest) {
2018-05-09 12:01:36 +05:30
const regex = at === '~' ? /\W|^\d+$/ : /\W/;
2018-03-17 18:26:18 +05:30
if (withoutAt && regex.test(withoutAt)) {
2018-05-09 12:01:36 +05:30
withoutAt = `"${withoutAt}"`;
2017-09-10 17:25:29 +05:30
}
}
2018-05-09 12:01:36 +05:30
// We can ignore this for quick actions because they are processed
// before Markdown.
if (!this.setting.skipMarkdownCharacterTest) {
2019-07-31 22:56:46 +05:30
withoutAt = withoutAt
.replace(/(~~|`|\*)/g, '\\$1')
.replace(/(\b)(_+)/g, '$1\\$2') // only escape underscores at the start
.replace(/(_+)(\b)/g, '\\$1$2'); // or end of words
2018-05-09 12:01:36 +05:30
}
return `${at}${withoutAt}`;
2017-09-10 17:25:29 +05:30
},
matcher(flag, subtext) {
2018-03-17 18:26:18 +05:30
const match = GfmAutoComplete.defaultMatcher(flag, subtext, this.app.controllers);
2017-09-10 17:25:29 +05:30
if (match) {
return match[1];
}
return null;
},
2019-07-31 22:56:46 +05:30
highlighter(li, query) {
// override default behaviour to escape dot character
// see https://github.com/ichord/At.js/pull/576
if (!query) {
return li;
}
const escapedQuery = query.replace(/[.+]/, '\\$&');
const regexp = new RegExp(`>\\s*([^<]*?)(${escapedQuery})([^<]*)\\s*<`, 'ig');
return li.replace(regexp, (str, $1, $2, $3) => `> ${$1}<strong>${$2}</strong>${$3} <`);
},
2017-09-10 17:25:29 +05:30
};
}
fetchData($input, at) {
2017-08-17 22:00:37 +05:30
if (this.isLoadingData[at]) return;
2018-10-15 14:42:47 +05:30
2017-08-17 22:00:37 +05:30
this.isLoadingData[at] = true;
2018-10-15 14:42:47 +05:30
const dataSource = this.dataSources[GfmAutoComplete.atTypeMap[at]];
2017-08-17 22:00:37 +05:30
if (this.cachedData[at]) {
this.loadData($input, at, this.cachedData[at]);
2017-09-10 17:25:29 +05:30
} else if (GfmAutoComplete.atTypeMap[at] === 'emojis') {
2020-07-28 23:09:34 +05:30
Emoji.initEmojiMap()
.then(() => {
this.loadData($input, at, Emoji.getValidEmojiNames());
GfmAutoComplete.glEmojiTag = Emoji.glEmojiTag;
2017-09-10 17:25:29 +05:30
})
2020-07-28 23:09:34 +05:30
.catch(() => {});
2018-10-15 14:42:47 +05:30
} else if (dataSource) {
AjaxCache.retrieve(dataSource, true)
2018-12-13 13:39:08 +05:30
.then(data => {
2017-09-10 17:25:29 +05:30
this.loadData($input, at, data);
})
2018-12-13 13:39:08 +05:30
.catch(() => {
this.isLoadingData[at] = false;
});
2018-10-15 14:42:47 +05:30
} else {
this.isLoadingData[at] = false;
2017-08-17 22:00:37 +05:30
}
2017-09-10 17:25:29 +05:30
}
loadData($input, at, data) {
2017-08-17 22:00:37 +05:30
this.isLoadingData[at] = false;
this.cachedData[at] = data;
$input.atwho('load', at, data);
// This trigger at.js again
// otherwise we would be stuck with loading until the user types
return $input.trigger('keyup');
2017-09-10 17:25:29 +05:30
}
clearCache() {
this.cachedData = {};
}
destroy() {
this.input.each((i, input) => {
const $input = $(input);
$input.atwho('destroy');
});
}
static isLoading(data) {
let dataToInspect = data;
2017-08-17 22:00:37 +05:30
if (data && data.length > 0) {
2018-11-08 19:23:39 +05:30
[dataToInspect] = data;
2017-08-17 22:00:37 +05:30
}
2017-09-10 17:25:29 +05:30
const loadingState = GfmAutoComplete.defaultLoadingData[0];
2018-12-13 13:39:08 +05:30
return dataToInspect && (dataToInspect === loadingState || dataToInspect.name === loadingState);
2017-08-17 22:00:37 +05:30
}
2018-03-17 18:26:18 +05:30
static defaultMatcher(flag, subtext, controllers) {
// The below is taken from At.js source
// Tweaked to commands to start without a space only if char before is a non-word character
// https://github.com/ichord/At.js
2018-12-13 13:39:08 +05:30
const atSymbolsWithBar = Object.keys(controllers)
.join('|')
.replace(/[$]/, '\\$&');
2018-03-17 18:26:18 +05:30
const atSymbolsWithoutBar = Object.keys(controllers).join('');
const targetSubtext = subtext.split(GfmAutoComplete.regexSubtext).pop();
const resultantFlag = flag.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&');
const accentAChar = decodeURI('%C3%80');
const accentYChar = decodeURI('%C3%BF');
2019-09-30 21:07:59 +05:30
// Holy regex, batman!
2018-12-13 13:39:08 +05:30
const regexp = new RegExp(
2019-09-30 21:07:59 +05:30
`^(?:\\B|[^a-zA-Z0-9_\`${atSymbolsWithoutBar}]|\\s)${resultantFlag}(?!${atSymbolsWithBar})((?:[A-Za-z${accentAChar}-${accentYChar}0-9_'.+-:]|[^\\x00-\\x7a])*)$`,
2018-12-13 13:39:08 +05:30
'gi',
);
2018-03-17 18:26:18 +05:30
return regexp.exec(targetSubtext);
}
2017-09-10 17:25:29 +05:30
}
2018-03-17 18:26:18 +05:30
GfmAutoComplete.regexSubtext = new RegExp(/\s+/g);
2017-09-10 17:25:29 +05:30
GfmAutoComplete.defaultLoadingData = ['loading'];
GfmAutoComplete.atTypeMap = {
':': 'emojis',
'@': 'members',
'#': 'issues',
'!': 'mergeRequests',
2018-11-08 19:23:39 +05:30
'&': 'epics',
2017-09-10 17:25:29 +05:30
'~': 'labels',
'%': 'milestones',
'/': 'commands',
2018-12-05 23:21:45 +05:30
$: 'snippets',
2017-09-10 17:25:29 +05:30
};
// Emoji
GfmAutoComplete.glEmojiTag = null;
GfmAutoComplete.Emoji = {
templateFunction(name) {
// glEmojiTag helper is loaded on-demand in fetchData()
if (GfmAutoComplete.glEmojiTag) {
return `<li>${name} ${GfmAutoComplete.glEmojiTag(name)}</li>`;
}
return `<li>${name}</li>`;
},
};
// Team Members
GfmAutoComplete.Members = {
2020-01-01 13:55:28 +05:30
templateFunction({ avatarTag, username, title, icon }) {
2020-05-24 23:13:21 +05:30
return `<li>${avatarTag} ${username} <small>${escape(title)}</small> ${icon}</li>`;
2018-11-20 20:47:30 +05:30
},
2017-09-10 17:25:29 +05:30
};
GfmAutoComplete.Labels = {
2019-01-03 12:48:30 +05:30
templateFunction(color, title) {
2020-05-24 23:13:21 +05:30
return `<li><span class="dropdown-label-box" style="background: ${escape(
2019-01-03 12:48:30 +05:30
color,
2020-05-24 23:13:21 +05:30
)}"></span> ${escape(title)}</li>`;
2019-01-03 12:48:30 +05:30
},
2017-09-10 17:25:29 +05:30
};
2018-12-05 23:21:45 +05:30
// Issues, MergeRequests and Snippets
2017-09-10 17:25:29 +05:30
GfmAutoComplete.Issues = {
2019-02-15 15:39:39 +05:30
insertTemplateFunction(value) {
// eslint-disable-next-line no-template-curly-in-string
return value.reference || '${atwho-at}${id}';
},
templateFunction({ id, title, reference }) {
2020-05-24 23:13:21 +05:30
return `<li><small>${reference || id}</small> ${escape(title)}</li>`;
2018-11-18 11:00:15 +05:30
},
2017-08-17 22:00:37 +05:30
};
2017-09-10 17:25:29 +05:30
// Milestones
GfmAutoComplete.Milestones = {
2019-01-03 12:48:30 +05:30
templateFunction(title) {
2020-05-24 23:13:21 +05:30
return `<li>${escape(title)}</li>`;
2019-01-03 12:48:30 +05:30
},
2017-09-10 17:25:29 +05:30
};
GfmAutoComplete.Loading = {
2018-12-13 13:39:08 +05:30
template:
2020-03-13 15:44:24 +05:30
'<li style="pointer-events: none;"><span class="spinner align-text-bottom mr-1"></span>Loading...</li>',
2017-09-10 17:25:29 +05:30
};
export default GfmAutoComplete;