Merge branch 'markdown-button-newline-bug-fix' into 'master'
Fixed new line being included in bold/italic in GFM form Closes #25456 See merge request !8086
This commit is contained in:
commit
297e6e29f2
2 changed files with 70 additions and 3 deletions
|
@ -44,9 +44,25 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
gl.text.insertText = function(textArea, text, tag, blockTag, selected, wrap) {
|
gl.text.insertText = function(textArea, text, tag, blockTag, selected, wrap) {
|
||||||
var insertText, inserted, selectedSplit, startChar;
|
var insertText, inserted, selectedSplit, startChar, removedLastNewLine, removedFirstNewLine;
|
||||||
|
removedLastNewLine = false;
|
||||||
|
removedFirstNewLine = false;
|
||||||
|
|
||||||
|
// Remove the first newline
|
||||||
|
if (selected.indexOf('\n') === 0) {
|
||||||
|
removedFirstNewLine = true;
|
||||||
|
selected = selected.replace(/\n+/, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove the last newline
|
||||||
|
if (textArea.selectionEnd - textArea.selectionStart > selected.replace(/\n$/, '').length) {
|
||||||
|
removedLastNewLine = true;
|
||||||
|
selected = selected.replace(/\n$/, '');
|
||||||
|
}
|
||||||
|
|
||||||
selectedSplit = selected.split('\n');
|
selectedSplit = selected.split('\n');
|
||||||
startChar = !wrap && textArea.selectionStart > 0 ? '\n' : '';
|
startChar = !wrap && textArea.selectionStart > 0 ? '\n' : '';
|
||||||
|
|
||||||
if (selectedSplit.length > 1 && (!wrap || (blockTag != null))) {
|
if (selectedSplit.length > 1 && (!wrap || (blockTag != null))) {
|
||||||
if (blockTag != null) {
|
if (blockTag != null) {
|
||||||
insertText = this.blockTagText(text, textArea, blockTag, selected);
|
insertText = this.blockTagText(text, textArea, blockTag, selected);
|
||||||
|
@ -62,6 +78,15 @@
|
||||||
} else {
|
} else {
|
||||||
insertText = "" + startChar + tag + selected + (wrap ? tag : ' ');
|
insertText = "" + startChar + tag + selected + (wrap ? tag : ' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (removedFirstNewLine) {
|
||||||
|
insertText = '\n' + insertText;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (removedLastNewLine) {
|
||||||
|
insertText += '\n';
|
||||||
|
}
|
||||||
|
|
||||||
if (document.queryCommandSupported('insertText')) {
|
if (document.queryCommandSupported('insertText')) {
|
||||||
inserted = document.execCommand('insertText', false, insertText);
|
inserted = document.execCommand('insertText', false, insertText);
|
||||||
}
|
}
|
||||||
|
@ -74,9 +99,9 @@
|
||||||
document.execCommand("ms-endUndoUnit");
|
document.execCommand("ms-endUndoUnit");
|
||||||
} catch (error) {}
|
} catch (error) {}
|
||||||
}
|
}
|
||||||
return this.moveCursor(textArea, tag, wrap);
|
return this.moveCursor(textArea, tag, wrap, removedLastNewLine);
|
||||||
};
|
};
|
||||||
gl.text.moveCursor = function(textArea, tag, wrapped) {
|
gl.text.moveCursor = function(textArea, tag, wrapped, removedLastNewLine) {
|
||||||
var pos;
|
var pos;
|
||||||
if (!textArea.setSelectionRange) {
|
if (!textArea.setSelectionRange) {
|
||||||
return;
|
return;
|
||||||
|
@ -87,6 +112,11 @@
|
||||||
} else {
|
} else {
|
||||||
pos = textArea.selectionStart;
|
pos = textArea.selectionStart;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (removedLastNewLine) {
|
||||||
|
pos -= 1;
|
||||||
|
}
|
||||||
|
|
||||||
return textArea.setSelectionRange(pos, pos);
|
return textArea.setSelectionRange(pos, pos);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
37
spec/features/issues/markdown_toolbar_spec.rb
Normal file
37
spec/features/issues/markdown_toolbar_spec.rb
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
feature 'Issue markdown toolbar', feature: true, js: true do
|
||||||
|
let(:project) { create(:project, :public) }
|
||||||
|
let(:issue) { create(:issue, project: project) }
|
||||||
|
let(:user) { create(:user) }
|
||||||
|
|
||||||
|
before do
|
||||||
|
login_as(user)
|
||||||
|
|
||||||
|
visit namespace_project_issue_path(project.namespace, project, issue)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "doesn't include first new line when adding bold" do
|
||||||
|
find('#note_note').native.send_keys('test')
|
||||||
|
find('#note_note').native.send_key(:enter)
|
||||||
|
find('#note_note').native.send_keys('bold')
|
||||||
|
|
||||||
|
page.evaluate_script('document.getElementById("note_note").setSelectionRange(4, 9)')
|
||||||
|
|
||||||
|
first('.toolbar-btn').click
|
||||||
|
|
||||||
|
expect(find('#note_note')[:value]).to eq("test\n**bold**\n")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "doesn't include first new line when adding underline" do
|
||||||
|
find('#note_note').native.send_keys('test')
|
||||||
|
find('#note_note').native.send_key(:enter)
|
||||||
|
find('#note_note').native.send_keys('underline')
|
||||||
|
|
||||||
|
page.evaluate_script('document.getElementById("note_note").setSelectionRange(4, 50)')
|
||||||
|
|
||||||
|
find('.toolbar-btn:nth-child(2)').click
|
||||||
|
|
||||||
|
expect(find('#note_note')[:value]).to eq("test\n*underline*\n")
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue