BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
4707c766
Commit
4707c766
authored
Aug 21, 2017
by
Fatih Acet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IssueNotesRefactor: Poll again when commands applied.
parent
806c3063
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
actions.js
app/assets/javascripts/notes/stores/actions.js
+4
-2
No files found.
app/assets/javascripts/notes/stores/actions.js
View file @
4707c766
...
...
@@ -8,6 +8,8 @@ import service from '../services/issue_notes_service';
import
loadAwardsHandler
from
'../../awards_handler'
;
import
sidebarTimeTrackingEventHub
from
'../../sidebar/event_hub'
;
let
eTagPoll
;
export
const
setNotesData
=
({
commit
},
data
)
=>
commit
(
types
.
SET_NOTES_DATA
,
data
);
export
const
setIssueData
=
({
commit
},
data
)
=>
commit
(
types
.
SET_ISSUE_DATA
,
data
);
export
const
setUserData
=
({
commit
},
data
)
=>
commit
(
types
.
SET_USER_DATA
,
data
);
...
...
@@ -87,7 +89,7 @@ export const saveNote = ({ commit, dispatch }, noteData) => {
const
commandsChanges
=
res
.
commands_changes
;
if
(
hasQuickActions
&&
errors
&&
Object
.
keys
(
errors
).
length
)
{
dispatch
(
'fetchData'
);
eTagPoll
.
makeRequest
(
);
$
(
'.js-gfm-input'
).
trigger
(
'clear-commands-cache.atwho'
);
Flash
(
'Commands applied'
,
'notice'
,
$
(
noteData
.
flashContainer
));
...
...
@@ -162,7 +164,7 @@ const pollSuccessCallBack = (resp, commit, state, getters) => {
export
const
poll
=
({
commit
,
state
,
getters
})
=>
{
const
requestData
=
{
endpoint
:
state
.
notesData
.
notesPath
,
lastFetchedAt
:
state
.
lastFetchedAt
};
const
eTagPoll
=
new
Poll
({
eTagPoll
=
new
Poll
({
resource
:
service
,
method
:
'poll'
,
data
:
requestData
,
...
...
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