Skip to content
代码片段 群组 项目
提交 037e258b 编辑于 作者: Peter Leitzen's avatar Peter Leitzen
浏览文件

Merge branch '348816-add-loading-spinner-to-commit-button' into 'master'

Added loading state to "Commit changes" button in the single file editor

See merge request gitlab-org/gitlab!94211
No related branches found
No related tags found
无相关合并请求
...@@ -63,6 +63,7 @@ export default () => { ...@@ -63,6 +63,7 @@ export default () => {
const isMarkdown = editBlobForm.data('is-markdown'); const isMarkdown = editBlobForm.data('is-markdown');
const previewMarkdownPath = editBlobForm.data('previewMarkdownPath'); const previewMarkdownPath = editBlobForm.data('previewMarkdownPath');
const commitButton = $('.js-commit-button'); const commitButton = $('.js-commit-button');
const commitButtonLoading = $('.js-commit-button-loading');
const cancelLink = $('#cancel-changes'); const cancelLink = $('#cancel-changes');
import('./edit_blob') import('./edit_blob')
...@@ -88,6 +89,8 @@ export default () => { ...@@ -88,6 +89,8 @@ export default () => {
}); });
commitButton.on('click', () => { commitButton.on('click', () => {
commitButton.addClass('gl-display-none');
commitButtonLoading.removeClass('gl-display-none');
window.onbeforeunload = null; window.onbeforeunload = null;
}); });
......
...@@ -112,7 +112,7 @@ def link? ...@@ -112,7 +112,7 @@ def link?
def base_attributes def base_attributes
attributes = {} attributes = {}
attributes['disabled'] = '' if @disabled || @loading attributes['disabled'] = 'disabled' if @disabled || @loading
attributes['aria-disabled'] = true if @disabled || @loading attributes['aria-disabled'] = true if @disabled || @loading
attributes['type'] = @type unless @href attributes['type'] = @type unless @href
......
.form-actions.gl-display-flex .form-actions.gl-display-flex
= render Pajamas::ButtonComponent.new(type: :submit, variant: :confirm, button_options: { id: 'commit-changes', class: 'js-commit-button', data: { qa_selector: 'commit_button' } }) do - submit_button_options = { type: :submit, variant: :confirm, button_options: { id: 'commit-changes', class: 'js-commit-button', data: { qa_selector: 'commit_button' } } }
= render Pajamas::ButtonComponent.new(**submit_button_options) do
= _('Commit changes')
= render Pajamas::ButtonComponent.new(loading: true, disabled: true, **submit_button_options.merge({ button_options: { class: 'js-commit-button-loading gl-display-none' } })) do
= _('Commit changes') = _('Commit changes')
= render Pajamas::ButtonComponent.new(href: cancel_path, button_options: { class: 'gl-ml-3', id: 'cancel-changes', aria: { label: _('Discard changes') }, data: { confirm: leave_edit_message, confirm_btn_variant: "danger" } }) do = render Pajamas::ButtonComponent.new(href: cancel_path, button_options: { class: 'gl-ml-3', id: 'cancel-changes', aria: { label: _('Discard changes') }, data: { confirm: leave_edit_message, confirm_btn_variant: "danger" } }) do
......
...@@ -102,6 +102,21 @@ ...@@ -102,6 +102,21 @@
expect(page).to have_content('*.rbca') expect(page).to have_content('*.rbca')
end end
it 'shows loader on commit changes' do
set_default_button('edit')
click_link('.gitignore')
click_link_or_button('Edit')
# why: We don't want the form to actually submit, so that we can assert the button's changed state
page.execute_script("document.querySelector('.js-edit-blob-form').addEventListener('submit', e => e.preventDefault())")
find('.file-editor', match: :first)
editor_set_value('*.rbca')
click_button('Commit changes')
expect(page).to have_button('Commit changes', disabled: true, class: 'js-commit-button-loading')
end
it 'shows the diff of an edited file' do it 'shows the diff of an edited file' do
set_default_button('edit') set_default_button('edit')
click_link('.gitignore') click_link('.gitignore')
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册