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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
76ef4f02
Commit
76ef4f02
authored
Nov 22, 2016
by
Regis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
diff updates from API to DOM
parent
cb35c5e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
12 deletions
+5
-12
app/assets/javascripts/vue_pipelines_index/store.js.es6
app/assets/javascripts/vue_pipelines_index/store.js.es6
+5
-12
No files found.
app/assets/javascripts/vue_pipelines_index/store.js.es6
View file @
76ef4f02
...
...
@@ -8,27 +8,20 @@
class PipelineUpdater {
constructor(pipelines) {
this.pipelines = pipelines;
this.updateClone = (update, newPipe) => {
update.forEach((pipe) => {
if (pipe.id === newPipe.id) pipe = Object.assign({}, pipe, newPipe);
});
};
this.currentPageSlicer = (update) => {
if (update.length < PAGINATION_LIMIT) return update;
return update.slice(0, SLICE_LIMIT);
};
}
updatePipelines(apiResponse) {
const update = this.pipelines.slice(0);
apiResponse.pipelines.forEach((newPipe) => {
apiResponse.pipelines.forEach((newPipe
, i
) => {
if (newPipe.commit) {
update.unshift(newPipe);
} else {
this.updateClone(update, newPipe);
const newMerge = Object.assign({}, update[i], newPipe);
update[i] = newMerge;
}
});
return this.currentPageSlicer(update);
if (update.length < PAGINATION_LIMIT) return update;
return update.slice(0, SLICE_LIMIT);
}
}
...
...
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