Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e84c943f
Commit
e84c943f
authored
Mar 12, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix loading icon being visible in the wrong button
parent
bd26e012
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
132 additions
and
6 deletions
+132
-6
app/assets/javascripts/notes/components/comment_form.vue
app/assets/javascripts/notes/components/comment_form.vue
+9
-4
app/assets/javascripts/notes/stores/actions.js
app/assets/javascripts/notes/stores/actions.js
+13
-2
app/assets/javascripts/notes/stores/getters.js
app/assets/javascripts/notes/stores/getters.js
+1
-0
app/assets/javascripts/notes/stores/index.js
app/assets/javascripts/notes/stores/index.js
+3
-0
app/assets/javascripts/notes/stores/mutation_types.js
app/assets/javascripts/notes/stores/mutation_types.js
+1
-0
app/assets/javascripts/notes/stores/mutations.js
app/assets/javascripts/notes/stores/mutations.js
+4
-0
changelogs/unreleased/44149-issue-comment-buttons.yml
changelogs/unreleased/44149-issue-comment-buttons.yml
+5
-0
spec/javascripts/notes/components/comment_form_spec.js
spec/javascripts/notes/components/comment_form_spec.js
+14
-0
spec/javascripts/notes/stores/actions_spec.js
spec/javascripts/notes/stores/actions_spec.js
+16
-0
spec/javascripts/notes/stores/mutation_spec.js
spec/javascripts/notes/stores/mutation_spec.js
+66
-0
No files found.
app/assets/javascripts/notes/components/comment_form.vue
View file @
e84c943f
...
...
@@ -52,6 +52,7 @@
'
getNoteableData
'
,
'
getNotesData
'
,
'
openState
'
,
'
isToggleStateButtonLoading
'
,
]),
noteableDisplayName
()
{
return
this
.
noteableType
.
replace
(
/_/g
,
'
'
);
...
...
@@ -143,6 +144,7 @@
'
closeIssue
'
,
'
reopenIssue
'
,
'
toggleIssueLocalState
'
,
'
toggleStateButtonLoading
'
,
]),
setIsSubmitButtonDisabled
(
note
,
isSubmitting
)
{
if
(
!
_
.
isEmpty
(
note
)
&&
!
isSubmitting
)
{
...
...
@@ -170,13 +172,14 @@
if
(
this
.
noteType
===
constants
.
DISCUSSION
)
{
noteData
.
data
.
note
.
type
=
constants
.
DISCUSSION_NOTE
;
}
this
.
note
=
''
;
// Empty textarea while being requested. Repopulate in catch
this
.
resizeTextarea
();
this
.
stopPolling
();
this
.
saveNote
(
noteData
)
.
then
((
res
)
=>
{
this
.
isSubmitting
=
false
;
this
.
enableButton
()
;
this
.
restartPolling
();
if
(
res
.
errors
)
{
...
...
@@ -198,7 +201,7 @@
}
})
.
catch
(()
=>
{
this
.
isSubmitting
=
false
;
this
.
enableButton
()
;
this
.
discard
(
false
);
const
msg
=
`Your comment could not be submitted!
...
...
@@ -220,6 +223,7 @@ Please check your network connection and try again.`;
.
then
(()
=>
this
.
enableButton
())
.
catch
(()
=>
{
this
.
enableButton
();
this
.
toggleStateButtonLoading
(
false
);
Flash
(
sprintf
(
__
(
'
Something went wrong while closing the %{issuable}. Please try again later
'
),
...
...
@@ -232,6 +236,7 @@ Please check your network connection and try again.`;
.
then
(()
=>
this
.
enableButton
())
.
catch
(()
=>
{
this
.
enableButton
();
this
.
toggleStateButtonLoading
(
false
);
Flash
(
sprintf
(
__
(
'
Something went wrong while reopening the %{issuable}. Please try again later
'
),
...
...
@@ -419,13 +424,13 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown"
<loading-button
v-if=
"canUpdateIssue"
:loading=
"is
Submitt
ing"
:loading=
"is
ToggleStateButtonLoad
ing"
@
click=
"handleSave(true)"
:container-class=
"[
actionButtonClassNames,
'btn btn-comment btn-comment-and-close js-action-button'
]"
:disabled=
"isSubmitting"
:disabled=
"is
ToggleStateButtonLoading || is
Submitting"
:label=
"issueActionButtonTitle"
/>
...
...
app/assets/javascripts/notes/stores/actions.js
View file @
e84c943f
...
...
@@ -71,21 +71,32 @@ export const toggleResolveNote = ({ commit }, { endpoint, isResolved, discussion
commit
(
mutationType
,
res
);
});
export
const
closeIssue
=
({
commit
,
dispatch
,
state
})
=>
service
export
const
closeIssue
=
({
commit
,
dispatch
,
state
})
=>
{
dispatch
(
'
toggleStateButtonLoading
'
,
true
);
return
service
.
toggleIssueState
(
state
.
notesData
.
closePath
)
.
then
(
res
=>
res
.
json
())
.
then
((
data
)
=>
{
commit
(
types
.
CLOSE_ISSUE
);
dispatch
(
'
emitStateChangedEvent
'
,
data
);
dispatch
(
'
toggleStateButtonLoading
'
,
false
);
});
};
export
const
reopenIssue
=
({
commit
,
dispatch
,
state
})
=>
service
export
const
reopenIssue
=
({
commit
,
dispatch
,
state
})
=>
{
dispatch
(
'
toggleStateButtonLoading
'
,
true
);
return
service
.
toggleIssueState
(
state
.
notesData
.
reopenPath
)
.
then
(
res
=>
res
.
json
())
.
then
((
data
)
=>
{
commit
(
types
.
REOPEN_ISSUE
);
dispatch
(
'
emitStateChangedEvent
'
,
data
);
dispatch
(
'
toggleStateButtonLoading
'
,
false
);
});
};
export
const
toggleStateButtonLoading
=
({
commit
},
value
)
=>
commit
(
types
.
TOGGLE_STATE_BUTTON_LOADING
,
value
);
export
const
emitStateChangedEvent
=
({
commit
,
getters
},
data
)
=>
{
const
event
=
new
CustomEvent
(
'
issuable_vue_app:change
'
,
{
detail
:
{
...
...
app/assets/javascripts/notes/stores/getters.js
View file @
e84c943f
...
...
@@ -9,6 +9,7 @@ export const getNotesDataByProp = state => prop => state.notesData[prop];
export
const
getNoteableData
=
state
=>
state
.
noteableData
;
export
const
getNoteableDataByProp
=
state
=>
prop
=>
state
.
noteableData
[
prop
];
export
const
openState
=
state
=>
state
.
noteableData
.
state
;
export
const
isToggleStateButtonLoading
=
state
=>
state
.
isToggleStateButtonLoading
;
export
const
getUserData
=
state
=>
state
.
userData
||
{};
export
const
getUserDataByProp
=
state
=>
prop
=>
state
.
userData
&&
state
.
userData
[
prop
];
...
...
app/assets/javascripts/notes/stores/index.js
View file @
e84c943f
...
...
@@ -12,6 +12,9 @@ export default new Vuex.Store({
targetNoteHash
:
null
,
lastFetchedAt
:
null
,
// View layer
isToggleStateButtonLoading
:
false
,
// holds endpoints and permissions provided through haml
notesData
:
{},
userData
:
{},
...
...
app/assets/javascripts/notes/stores/mutation_types.js
View file @
e84c943f
...
...
@@ -17,3 +17,4 @@ export const UPDATE_DISCUSSION = 'UPDATE_DISCUSSION';
// Issue
export
const
CLOSE_ISSUE
=
'
CLOSE_ISSUE
'
;
export
const
REOPEN_ISSUE
=
'
REOPEN_ISSUE
'
;
export
const
TOGGLE_STATE_BUTTON_LOADING
=
'
TOGGLE_STATE_BUTTON_LOADING
'
;
app/assets/javascripts/notes/stores/mutations.js
View file @
e84c943f
...
...
@@ -197,4 +197,8 @@ export default {
[
types
.
REOPEN_ISSUE
](
state
)
{
Object
.
assign
(
state
.
noteableData
,
{
state
:
constants
.
REOPENED
});
},
[
types
.
TOGGLE_STATE_BUTTON_LOADING
](
state
,
value
)
{
Object
.
assign
(
state
,
{
isToggleStateButtonLoading
:
value
});
},
};
changelogs/unreleased/44149-issue-comment-buttons.yml
0 → 100644
View file @
e84c943f
---
title
:
Fix broken loading state for close issue button
merge_request
:
author
:
type
:
fixed
spec/javascripts/notes/components/comment_form_spec.js
View file @
e84c943f
...
...
@@ -200,6 +200,20 @@ describe('issue_comment_form component', () => {
done
();
});
});
describe
(
'
when clicking close/reopen button
'
,
()
=>
{
it
(
'
should disable button and show a loading spinner
'
,
(
done
)
=>
{
const
toggleStateButton
=
vm
.
$el
.
querySelector
(
'
.js-action-button
'
);
toggleStateButton
.
click
();
Vue
.
nextTick
(()
=>
{
expect
(
toggleStateButton
.
disabled
).
toEqual
(
true
);
expect
(
toggleStateButton
.
querySelector
(
'
.js-loading-button-icon
'
)).
not
.
toBeNull
();
done
();
});
});
});
});
describe
(
'
issue is confidential
'
,
()
=>
{
...
...
spec/javascripts/notes/stores/actions_spec.js
View file @
e84c943f
...
...
@@ -87,6 +87,7 @@ describe('Actions Notes Store', () => {
store
.
dispatch
(
'
closeIssue
'
,
{
notesData
:
{
closeIssuePath
:
''
}
})
.
then
(()
=>
{
expect
(
store
.
state
.
noteableData
.
state
).
toEqual
(
'
closed
'
);
expect
(
store
.
state
.
isToggleStateButtonLoading
).
toEqual
(
false
);
done
();
})
.
catch
(
done
.
fail
);
...
...
@@ -98,6 +99,7 @@ describe('Actions Notes Store', () => {
store
.
dispatch
(
'
reopenIssue
'
,
{
notesData
:
{
reopenIssuePath
:
''
}
})
.
then
(()
=>
{
expect
(
store
.
state
.
noteableData
.
state
).
toEqual
(
'
reopened
'
);
expect
(
store
.
state
.
isToggleStateButtonLoading
).
toEqual
(
false
);
done
();
})
.
catch
(
done
.
fail
);
...
...
@@ -116,6 +118,20 @@ describe('Actions Notes Store', () => {
});
});
describe
(
'
toggleStateButtonLoading
'
,
()
=>
{
it
(
'
should set loading as true
'
,
(
done
)
=>
{
testAction
(
actions
.
toggleStateButtonLoading
,
true
,
{},
[
{
type
:
'
TOGGLE_STATE_BUTTON_LOADING
'
,
payload
:
true
},
],
done
);
});
it
(
'
should set loading as false
'
,
(
done
)
=>
{
testAction
(
actions
.
toggleStateButtonLoading
,
false
,
{},
[
{
type
:
'
TOGGLE_STATE_BUTTON_LOADING
'
,
payload
:
false
},
],
done
);
});
});
describe
(
'
toggleIssueLocalState
'
,
()
=>
{
it
(
'
sets issue state as closed
'
,
(
done
)
=>
{
testAction
(
actions
.
toggleIssueLocalState
,
'
closed
'
,
{},
[
...
...
spec/javascripts/notes/stores/mutation_spec.js
View file @
e84c943f
...
...
@@ -217,4 +217,70 @@ describe('Notes Store mutations', () => {
expect
(
state
.
notes
[
0
].
notes
[
0
].
note
).
toEqual
(
'
Foo
'
);
});
});
describe
(
'
CLOSE_ISSUE
'
,
()
=>
{
it
(
'
should set issue as closed
'
,
()
=>
{
const
state
=
{
notes
:
[],
targetNoteHash
:
null
,
lastFetchedAt
:
null
,
isToggleStateButtonLoading
:
false
,
notesData
:
{},
userData
:
{},
noteableData
:
{},
};
mutations
.
CLOSE_ISSUE
(
state
);
expect
(
state
.
noteableData
.
state
).
toEqual
(
'
closed
'
);
});
});
describe
(
'
REOPEN_ISSUE
'
,
()
=>
{
it
(
'
should set issue as closed
'
,
()
=>
{
const
state
=
{
notes
:
[],
targetNoteHash
:
null
,
lastFetchedAt
:
null
,
isToggleStateButtonLoading
:
false
,
notesData
:
{},
userData
:
{},
noteableData
:
{},
};
mutations
.
REOPEN_ISSUE
(
state
);
expect
(
state
.
noteableData
.
state
).
toEqual
(
'
reopened
'
);
});
});
describe
(
'
TOGGLE_STATE_BUTTON_LOADING
'
,
()
=>
{
it
(
'
should set isToggleStateButtonLoading as true
'
,
()
=>
{
const
state
=
{
notes
:
[],
targetNoteHash
:
null
,
lastFetchedAt
:
null
,
isToggleStateButtonLoading
:
false
,
notesData
:
{},
userData
:
{},
noteableData
:
{},
};
mutations
.
TOGGLE_STATE_BUTTON_LOADING
(
state
,
true
);
expect
(
state
.
isToggleStateButtonLoading
).
toEqual
(
true
);
});
it
(
'
should set isToggleStateButtonLoading as false
'
,
()
=>
{
const
state
=
{
notes
:
[],
targetNoteHash
:
null
,
lastFetchedAt
:
null
,
isToggleStateButtonLoading
:
true
,
notesData
:
{},
userData
:
{},
noteableData
:
{},
};
mutations
.
TOGGLE_STATE_BUTTON_LOADING
(
state
,
false
);
expect
(
state
.
isToggleStateButtonLoading
).
toEqual
(
false
);
});
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment