debian-mirror-gitlab/app/assets/javascripts/notes/stores/utils.js

37 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import AjaxCache from '~/lib/utils/ajax_cache';
2019-03-02 22:35:43 +05:30
import { trimFirstCharOfLineContent } from '~/diffs/store/utils';
2019-07-31 22:56:46 +05:30
import { sprintf, __ } from '~/locale';
2018-03-17 18:26:18 +05:30
2019-09-04 21:01:54 +05:30
// factory function because global flag makes RegExp stateful
const createQuickActionsRegex = () => /^\/\w+.*$/gm;
2018-03-17 18:26:18 +05:30
2018-11-20 20:47:30 +05:30
export const findNoteObjectById = (notes, id) => notes.filter(n => n.id === id)[0];
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
export const getQuickActionText = note => {
2019-07-31 22:56:46 +05:30
let text = __('Applying command');
2018-11-20 20:47:30 +05:30
const quickActions = AjaxCache.get(gl.GfmAutoComplete.dataSources.commands) || [];
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
const executedCommands = quickActions.filter(command => {
2018-03-17 18:26:18 +05:30
const commandRegex = new RegExp(`/${command.name}`);
return commandRegex.test(note);
});
if (executedCommands && executedCommands.length) {
if (executedCommands.length > 1) {
2019-07-31 22:56:46 +05:30
text = __('Applying multiple commands');
2018-03-17 18:26:18 +05:30
} else {
const commandDescription = executedCommands[0].description.toLowerCase();
2019-10-12 21:52:04 +05:30
text = sprintf(__('Applying command to %{commandDescription}'), { commandDescription });
2018-03-17 18:26:18 +05:30
}
}
return text;
};
2019-09-04 21:01:54 +05:30
export const hasQuickActions = note => createQuickActionsRegex().test(note);
2018-03-17 18:26:18 +05:30
2019-09-04 21:01:54 +05:30
export const stripQuickActions = note => note.replace(createQuickActionsRegex(), '').trim();
2019-03-02 22:35:43 +05:30
export const prepareDiffLines = diffLines =>
diffLines.map(line => ({ ...trimFirstCharOfLineContent(line) }));