Commit 17967095 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents fcd81c77 f2c7f3d0
...@@ -51,8 +51,6 @@ export default class GLForm { ...@@ -51,8 +51,6 @@ export default class GLForm {
// form and textarea event listeners // form and textarea event listeners
this.addEventListeners(); this.addEventListeners();
addMarkdownListeners(this.form); addMarkdownListeners(this.form);
// hide discard button
this.form.find('.js-note-discard').hide();
this.form.show(); this.form.show();
if (this.isAutosizeable) this.setupAutosize(); if (this.isAutosizeable) this.setupAutosize();
} }
......
...@@ -138,8 +138,6 @@ export default class Notes { ...@@ -138,8 +138,6 @@ export default class Notes {
this.$wrapperEl.on('click', '.js-note-delete', this.removeNote); this.$wrapperEl.on('click', '.js-note-delete', this.removeNote);
// delete note attachment // delete note attachment
this.$wrapperEl.on('click', '.js-note-attachment-delete', this.removeAttachment); this.$wrapperEl.on('click', '.js-note-attachment-delete', this.removeAttachment);
// reset main target form when clicking discard
this.$wrapperEl.on('click', '.js-note-discard', this.resetMainTargetForm);
// update the file name when an attachment is selected // update the file name when an attachment is selected
this.$wrapperEl.on('change', '.js-note-attachment-input', this.updateFormAttachment); this.$wrapperEl.on('change', '.js-note-attachment-input', this.updateFormAttachment);
// reply to diff/discussion notes // reply to diff/discussion notes
...@@ -191,7 +189,6 @@ export default class Notes { ...@@ -191,7 +189,6 @@ export default class Notes {
this.$wrapperEl.off('keyup input', '.js-note-text'); this.$wrapperEl.off('keyup input', '.js-note-text');
this.$wrapperEl.off('click', '.js-note-target-reopen'); this.$wrapperEl.off('click', '.js-note-target-reopen');
this.$wrapperEl.off('click', '.js-note-target-close'); this.$wrapperEl.off('click', '.js-note-target-close');
this.$wrapperEl.off('click', '.js-note-discard');
this.$wrapperEl.off('keydown', '.js-note-text'); this.$wrapperEl.off('keydown', '.js-note-text');
this.$wrapperEl.off('click', '.js-comment-resolve-button'); this.$wrapperEl.off('click', '.js-comment-resolve-button');
this.$wrapperEl.off('click', '.system-note-commit-list-toggler'); this.$wrapperEl.off('click', '.system-note-commit-list-toggler');
...@@ -986,11 +983,9 @@ export default class Notes { ...@@ -986,11 +983,9 @@ export default class Notes {
form.find('#note_position').val(dataHolder.attr('data-position')); form.find('#note_position').val(dataHolder.attr('data-position'));
form form
.find('.js-note-discard') .find('.js-close-discussion-note-form')
.show() .show()
.removeClass('js-note-discard') .removeClass('hide');
.addClass('js-close-discussion-note-form')
.text(form.find('.js-close-discussion-note-form').data('cancelText'));
form.find('.js-note-target-close').remove(); form.find('.js-note-target-close').remove();
form.find('.js-note-new-discussion').remove(); form.find('.js-note-new-discussion').remove();
this.setupNoteForm(form); this.setupNoteForm(form);
...@@ -1194,12 +1189,11 @@ export default class Notes { ...@@ -1194,12 +1189,11 @@ export default class Notes {
} }
updateTargetButtons(e) { updateTargetButtons(e) {
var closebtn, closetext, discardbtn, form, reopenbtn, reopentext, textarea; var closebtn, closetext, form, reopenbtn, reopentext, textarea;
textarea = $(e.target); textarea = $(e.target);
form = textarea.parents('form'); form = textarea.parents('form');
reopenbtn = form.find('.js-note-target-reopen'); reopenbtn = form.find('.js-note-target-reopen');
closebtn = form.find('.js-note-target-close'); closebtn = form.find('.js-note-target-close');
discardbtn = form.find('.js-note-discard');
if (textarea.val().trim().length > 0) { if (textarea.val().trim().length > 0) {
reopentext = reopenbtn.attr('data-alternative-text'); reopentext = reopenbtn.attr('data-alternative-text');
...@@ -1216,9 +1210,6 @@ export default class Notes { ...@@ -1216,9 +1210,6 @@ export default class Notes {
if (closebtn.is(':not(.btn-comment-and-close)')) { if (closebtn.is(':not(.btn-comment-and-close)')) {
closebtn.addClass('btn-comment-and-close'); closebtn.addClass('btn-comment-and-close');
} }
if (discardbtn.is(':hidden')) {
return discardbtn.show();
}
} else { } else {
reopentext = reopenbtn.data('originalText'); reopentext = reopenbtn.data('originalText');
closetext = closebtn.data('originalText'); closetext = closebtn.data('originalText');
...@@ -1234,9 +1225,6 @@ export default class Notes { ...@@ -1234,9 +1225,6 @@ export default class Notes {
if (closebtn.is('.btn-comment-and-close')) { if (closebtn.is('.btn-comment-and-close')) {
closebtn.removeClass('btn-comment-and-close'); closebtn.removeClass('btn-comment-and-close');
} }
if (discardbtn.is(':visible')) {
return discardbtn.hide();
}
} }
} }
......
...@@ -431,15 +431,6 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown" ...@@ -431,15 +431,6 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown"
:label="issueActionButtonTitle" :label="issueActionButtonTitle"
@click="handleSave(true);" @click="handleSave(true);"
/> />
<button
v-if="note.length"
type="button"
class="btn btn-cancel js-note-discard"
@click="discard"
>
Discard draft
</button>
</div> </div>
</form> </form>
</div> </div>
......
<script> <script>
import { GlLink, GlTooltipDirective } from '@gitlab/ui'; import { GlLink, GlTooltipDirective } from '@gitlab/ui';
import _ from 'underscore';
import { __, sprintf } from '~/locale';
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue'; import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
import popover from '~/vue_shared/directives/popover'; import popover from '~/vue_shared/directives/popover';
const popoverTitle = sprintf(
_.escape(
__(
`This pipeline makes use of a predefined CI/CD configuration enabled by %{strongStart}Auto DevOps.%{strongEnd}`,
),
),
{ strongStart: '<b>', strongEnd: '</b>' },
false,
);
export default { export default {
components: { components: {
UserAvatarLink, UserAvatarLink,
...@@ -32,14 +44,14 @@ export default { ...@@ -32,14 +44,14 @@ export default {
trigger: 'focus', trigger: 'focus',
placement: 'top', placement: 'top',
title: `<div class="autodevops-title"> title: `<div class="autodevops-title">
This pipeline makes use of a predefined CI/CD configuration enabled by <b>Auto DevOps.</b> ${popoverTitle}
</div>`, </div>`,
content: `<a content: `<a
class="autodevops-link" class="autodevops-link"
href="${this.autoDevopsHelpPath}" href="${this.autoDevopsHelpPath}"
target="_blank" target="_blank"
rel="noopener noreferrer nofollow"> rel="noopener noreferrer nofollow">
Learn more about Auto DevOps ${_.escape(__('Learn more about Auto DevOps'))}
</a>`, </a>`,
}; };
}, },
...@@ -54,9 +66,9 @@ export default { ...@@ -54,9 +66,9 @@ export default {
<span>by</span> <span>by</span>
<user-avatar-link <user-avatar-link
v-if="user" v-if="user"
:link-href="pipeline.user.path" :link-href="user.path"
:img-src="pipeline.user.avatar_url" :img-src="user.avatar_url"
:tooltip-text="pipeline.user.name" :tooltip-text="user.name"
class="js-pipeline-url-user" class="js-pipeline-url-user"
/> />
<span v-if="!user" class="js-pipeline-url-api api"> API </span> <span v-if="!user" class="js-pipeline-url-api api"> API </span>
...@@ -64,10 +76,10 @@ export default { ...@@ -64,10 +76,10 @@ export default {
<span <span
v-if="pipeline.flags.latest" v-if="pipeline.flags.latest"
v-gl-tooltip v-gl-tooltip
class="js-pipeline-url-latest badge badge-success"
:title="__('Latest pipeline for this branch')" :title="__('Latest pipeline for this branch')"
class="js-pipeline-url-latest badge badge-success"
> >
latest {{ __('latest') }}
</span> </span>
<span <span
v-if="pipeline.flags.yaml_errors" v-if="pipeline.flags.yaml_errors"
...@@ -75,7 +87,7 @@ export default { ...@@ -75,7 +87,7 @@ export default {
:title="pipeline.yaml_errors" :title="pipeline.yaml_errors"
class="js-pipeline-url-yaml badge badge-danger" class="js-pipeline-url-yaml badge badge-danger"
> >
yaml invalid {{ __('yaml invalid') }}
</span> </span>
<span <span
v-if="pipeline.flags.failure_reason" v-if="pipeline.flags.failure_reason"
...@@ -83,7 +95,7 @@ export default { ...@@ -83,7 +95,7 @@ export default {
:title="pipeline.failure_reason" :title="pipeline.failure_reason"
class="js-pipeline-url-failure badge badge-danger" class="js-pipeline-url-failure badge badge-danger"
> >
error {{ __('error') }}
</span> </span>
<gl-link <gl-link
v-if="pipeline.flags.auto_devops" v-if="pipeline.flags.auto_devops"
...@@ -95,7 +107,7 @@ export default { ...@@ -95,7 +107,7 @@ export default {
Auto DevOps Auto DevOps
</gl-link> </gl-link>
<span v-if="pipeline.flags.stuck" class="js-pipeline-url-stuck badge badge-warning"> <span v-if="pipeline.flags.stuck" class="js-pipeline-url-stuck badge badge-warning">
stuck {{ __('stuck') }}
</span> </span>
<span <span
v-if="pipeline.flags.merge_request" v-if="pipeline.flags.merge_request"
...@@ -103,7 +115,7 @@ export default { ...@@ -103,7 +115,7 @@ export default {
:title="__('This pipeline is run in a merge request context')" :title="__('This pipeline is run in a merge request context')"
class="js-pipeline-url-mergerequest badge badge-info" class="js-pipeline-url-mergerequest badge badge-info"
> >
merge request {{ __('merge request') }}
</span> </span>
</div> </div>
</div> </div>
......
...@@ -40,5 +40,5 @@ ...@@ -40,5 +40,5 @@
= yield(:note_actions) = yield(:note_actions)
%a.btn.btn-cancel.js-note-discard{ role: "button", data: {cancel_text: "Cancel" } } %a.btn.btn-cancel.js-close-discussion-note-form.hide{ role: "button", data: {cancel_text: "Cancel" } }
Discard draft Cancel
---
title: Removed discard draft comment button form notes
merge_request: 24185
author:
type: removed
---
title: Correctly externalize pipeline tags
merge_request: 24028
author:
type: fixed
...@@ -8934,6 +8934,9 @@ msgstr "" ...@@ -8934,6 +8934,9 @@ msgstr ""
msgid "This pipeline is run in a merge request context" msgid "This pipeline is run in a merge request context"
msgstr "" msgstr ""
msgid "This pipeline makes use of a predefined CI/CD configuration enabled by %{strongStart}Auto DevOps.%{strongEnd}"
msgstr ""
msgid "This pipeline makes use of a predefined CI/CD configuration enabled by <b>Auto DevOps.</b>" msgid "This pipeline makes use of a predefined CI/CD configuration enabled by <b>Auto DevOps.</b>"
msgstr "" msgstr ""
...@@ -10410,6 +10413,9 @@ msgstr[1] "" ...@@ -10410,6 +10413,9 @@ msgstr[1] ""
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
msgid "error"
msgstr ""
msgid "error code:" msgid "error code:"
msgstr "" msgstr ""
...@@ -10475,6 +10481,9 @@ msgstr "" ...@@ -10475,6 +10481,9 @@ msgstr ""
msgid "it is too large" msgid "it is too large"
msgstr "" msgstr ""
msgid "latest"
msgstr ""
msgid "latest deployment" msgid "latest deployment"
msgstr "" msgstr ""
...@@ -10801,6 +10810,9 @@ msgstr "" ...@@ -10801,6 +10810,9 @@ msgstr ""
msgid "started" msgid "started"
msgstr "" msgstr ""
msgid "stuck"
msgstr ""
msgid "this document" msgid "this document"
msgstr "" msgstr ""
...@@ -10832,3 +10844,6 @@ msgid "within %d minute " ...@@ -10832,3 +10844,6 @@ msgid "within %d minute "
msgid_plural "within %d minutes " msgid_plural "within %d minutes "
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
msgid "yaml invalid"
msgstr ""
...@@ -56,7 +56,6 @@ describe('IDE File finder item spec', () => { ...@@ -56,7 +56,6 @@ describe('IDE File finder item spec', () => {
it('renders list of blobs', () => { it('renders list of blobs', () => {
expect(vm.$el.textContent).toContain('index.js'); expect(vm.$el.textContent).toContain('index.js');
expect(vm.$el.textContent).toContain('component.js');
expect(vm.$el.textContent).not.toContain('folder'); expect(vm.$el.textContent).not.toContain('folder');
}); });
......
...@@ -223,7 +223,6 @@ describe('issue_comment_form component', () => { ...@@ -223,7 +223,6 @@ describe('issue_comment_form component', () => {
'Comment & close issue', 'Comment & close issue',
); );
expect(vm.$el.querySelector('.js-note-discard')).toBeDefined();
done(); done();
}); });
}); });
......
...@@ -9887,9 +9887,9 @@ vue-style-loader@^4.1.0: ...@@ -9887,9 +9887,9 @@ vue-style-loader@^4.1.0:
loader-utils "^1.0.2" loader-utils "^1.0.2"
vue-template-compiler@^2.5.0, vue-template-compiler@^2.5.17: vue-template-compiler@^2.5.0, vue-template-compiler@^2.5.17:
version "2.5.17" version "2.5.21"
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.17.tgz#52a4a078c327deb937482a509ae85c06f346c3cb" resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.21.tgz#a57ceb903177e8f643560a8d639a0f8db647054a"
integrity sha512-63uI4syCwtGR5IJvZM0LN5tVsahrelomHtCxvRkZPJ/Tf3ADm1U1wG6KWycK3qCfqR+ygM5vewUvmJ0REAYksg== integrity sha512-Vmk5Cv7UcmI99B9nXJEkaK262IQNnHp5rJYo+EwYpe2epTAXqcVyExhV6pk8jTkxQK2vRc8v8KmZBAwdmUZvvw==
dependencies: dependencies:
de-indent "^1.0.2" de-indent "^1.0.2"
he "^1.1.0" he "^1.1.0"
...@@ -9904,12 +9904,7 @@ vue-virtual-scroll-list@^1.2.5: ...@@ -9904,12 +9904,7 @@ vue-virtual-scroll-list@^1.2.5:
resolved "https://registry.yarnpkg.com/vue-virtual-scroll-list/-/vue-virtual-scroll-list-1.2.5.tgz#bcbd010f7cdb035eba8958ebf807c6214d9a167a" resolved "https://registry.yarnpkg.com/vue-virtual-scroll-list/-/vue-virtual-scroll-list-1.2.5.tgz#bcbd010f7cdb035eba8958ebf807c6214d9a167a"
integrity sha1-vL0BD3zbA166iVjr+AfGIU2aFno= integrity sha1-vL0BD3zbA166iVjr+AfGIU2aFno=
vue@^2.5.17: vue@^2.5.17, vue@^2.5.21:
version "2.5.17"
resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.17.tgz#0f8789ad718be68ca1872629832ed533589c6ada"
integrity sha512-mFbcWoDIJi0w0Za4emyLiW72Jae0yjANHbCVquMKijcavBGypqlF7zHRgMa5k4sesdv7hv2rB4JPdZfR+TPfhQ==
vue@^2.5.21:
version "2.5.21" version "2.5.21"
resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.21.tgz#3d33dcd03bb813912ce894a8303ab553699c4a85" resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.21.tgz#3d33dcd03bb813912ce894a8303ab553699c4a85"
integrity sha512-Aejvyyfhn0zjVeLvXd70h4hrE4zZDx1wfZqia6ekkobLmUZ+vNFQer53B4fu0EjWBSiqApxPejzkO1Znt3joxQ== integrity sha512-Aejvyyfhn0zjVeLvXd70h4hrE4zZDx1wfZqia6ekkobLmUZ+vNFQer53B4fu0EjWBSiqApxPejzkO1Znt3joxQ==
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment