debian-mirror-gitlab/app/assets/javascripts/behaviors/shortcuts/shortcuts_issuable.js

102 lines
3.1 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
import Mousetrap from 'mousetrap';
2018-12-05 23:21:45 +05:30
import Sidebar from '../../right_sidebar';
2018-03-17 18:26:18 +05:30
import Shortcuts from './shortcuts';
2018-12-05 23:21:45 +05:30
import { CopyAsGFM } from '../markdown/copy_as_gfm';
2019-02-15 15:39:39 +05:30
import { getSelectedFragment } from '~/lib/utils/common_utils';
2018-03-17 18:26:18 +05:30
export default class ShortcutsIssuable extends Shortcuts {
2019-12-04 20:38:33 +05:30
constructor() {
2018-03-17 18:26:18 +05:30
super();
Mousetrap.bind('a', () => ShortcutsIssuable.openSidebarDropdown('assignee'));
Mousetrap.bind('m', () => ShortcutsIssuable.openSidebarDropdown('milestone'));
Mousetrap.bind('l', () => ShortcutsIssuable.openSidebarDropdown('labels'));
2018-11-08 19:23:39 +05:30
Mousetrap.bind('r', ShortcutsIssuable.replyWithSelectedText);
2018-03-17 18:26:18 +05:30
Mousetrap.bind('e', ShortcutsIssuable.editIssue);
}
2018-11-08 19:23:39 +05:30
static replyWithSelectedText() {
const $replyField = $('.js-main-target-form .js-vue-comment-form');
2018-03-17 18:26:18 +05:30
2019-02-15 15:39:39 +05:30
if (!$replyField.length || $replyField.is(':hidden') /* Other tab selected in MR */) {
2018-11-08 19:23:39 +05:30
return false;
}
2019-02-15 15:39:39 +05:30
const documentFragment = getSelectedFragment(document.querySelector('#content-body'));
2018-03-17 18:26:18 +05:30
if (!documentFragment) {
2018-11-08 19:23:39 +05:30
$replyField.focus();
2018-03-17 18:26:18 +05:30
return false;
2016-09-13 17:45:13 +05:30
}
2019-02-15 15:39:39 +05:30
// Sanity check: Make sure the selected text comes from a discussion : it can either contain a message...
2019-09-04 21:01:54 +05:30
let foundMessage = Boolean(documentFragment.querySelector('.md'));
2019-02-15 15:39:39 +05:30
// ... Or come from a message
if (!foundMessage) {
if (documentFragment.originalNodes) {
documentFragment.originalNodes.forEach(e => {
let node = e;
do {
// Text nodes don't define the `matches` method
2019-07-07 11:18:12 +05:30
if (node.matches && node.matches('.md')) {
2019-02-15 15:39:39 +05:30
foundMessage = true;
}
node = node.parentNode;
} while (node && !foundMessage);
});
}
// If there is no message, just select the reply field
if (!foundMessage) {
$replyField.focus();
return false;
}
}
2018-03-17 18:26:18 +05:30
const el = CopyAsGFM.transformGFMSelection(documentFragment.cloneNode(true));
2019-03-02 22:35:43 +05:30
const blockquoteEl = document.createElement('blockquote');
blockquoteEl.appendChild(el);
CopyAsGFM.nodeToGFM(blockquoteEl)
.then(text => {
if (text.trim() === '') {
return false;
}
// If replyField already has some content, add a newline before our quote
const separator = ($replyField.val().trim() !== '' && '\n\n') || '';
$replyField
.val((a, current) => `${current}${separator}${text}\n\n`)
.trigger('input')
.trigger('change');
// Trigger autosize
const event = document.createEvent('Event');
event.initEvent('autosize:update', true, false);
$replyField.get(0).dispatchEvent(event);
// Focus the input field
$replyField.focus();
2018-03-17 18:26:18 +05:30
2019-03-02 22:35:43 +05:30
return false;
})
.catch(() => {});
2018-03-17 18:26:18 +05:30
return false;
}
static editIssue() {
// Need to click the element as on issues, editing is inline
// on merge request, editing is on a different page
document.querySelector('.js-issuable-edit').click();
return false;
}
2016-09-13 17:45:13 +05:30
2018-03-17 18:26:18 +05:30
static openSidebarDropdown(name) {
Sidebar.instance.openDropdown(name);
return false;
}
}