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
ed707dde
Commit
ed707dde
authored
Feb 24, 2017
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'moving-issue-with-two-list-labels' into 'master'
Removes label from previous list Closes #28484 See merge request !9418
parents
83d44076
6a2ee01b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
5 deletions
+37
-5
list.js.es6
app/assets/javascripts/boards/models/list.js.es6
+8
-4
boards_store.js.es6
app/assets/javascripts/boards/stores/boards_store.js.es6
+4
-1
moving-issue-with-two-list-labels.yml
changelogs/unreleased/moving-issue-with-two-list-labels.yml
+4
-0
list_spec.js.es6
spec/javascripts/boards/list_spec.js.es6
+21
-0
No files found.
app/assets/javascripts/boards/models/list.js.es6
View file @
ed707dde
...
@@ -123,14 +123,18 @@ class List {
...
@@ -123,14 +123,18 @@ class List {
if (listFrom) {
if (listFrom) {
this.issuesSize += 1;
this.issuesSize += 1;
gl.boardService.moveIssue(issue.id, listFrom.id, this.id)
this.updateIssueLabel(issue, listFrom);
.then(() => {
listFrom.getIssues(false);
});
}
}
}
}
}
}
updateIssueLabel(issue, listFrom) {
gl.boardService.moveIssue(issue.id, listFrom.id, this.id)
.then(() => {
listFrom.getIssues(false);
});
}
findIssue (id) {
findIssue (id) {
return this.issues.filter(issue => issue.id === id)[0];
return this.issues.filter(issue => issue.id === id)[0];
}
}
...
...
app/assets/javascripts/boards/stores/boards_store.js.es6
View file @
ed707dde
...
@@ -92,9 +92,12 @@
...
@@ -92,9 +92,12 @@
const issueLists = issue.getLists();
const issueLists = issue.getLists();
const listLabels = issueLists.map(listIssue => listIssue.label);
const listLabels = issueLists.map(listIssue => listIssue.label);
// Add to new lists issues if it doesn't already exist
if (!issueTo) {
if (!issueTo) {
// Add to new lists issues if it doesn't already exist
listTo.addIssue(issue, listFrom, newIndex);
listTo.addIssue(issue, listFrom, newIndex);
} else {
listTo.updateIssueLabel(issue, listFrom);
issueTo.removeLabel(listFrom.label);
}
}
if (listTo.type === 'done') {
if (listTo.type === 'done') {
...
...
changelogs/unreleased/moving-issue-with-two-list-labels.yml
0 → 100644
View file @
ed707dde
---
title
:
Removes label when moving issue to another list that it is currently in
merge_request
:
author
:
spec/javascripts/boards/list_spec.js.es6
View file @
ed707dde
...
@@ -3,7 +3,9 @@
...
@@ -3,7 +3,9 @@
/* global boardsMockInterceptor */
/* global boardsMockInterceptor */
/* global BoardService */
/* global BoardService */
/* global List */
/* global List */
/* global ListIssue */
/* global listObj */
/* global listObj */
/* global listObjDuplicate */
require('~/lib/utils/url_utility');
require('~/lib/utils/url_utility');
require('~/boards/models/issue');
require('~/boards/models/issue');
...
@@ -84,4 +86,23 @@ describe('List model', () => {
...
@@ -84,4 +86,23 @@ describe('List model', () => {
done();
done();
}, 0);
}, 0);
});
});
it('sends service request to update issue label', () => {
const listDup = new List(listObjDuplicate);
const issue = new ListIssue({
title: 'Testing',
iid: 1,
confidential: false,
labels: [list.label, listDup.label]
});
list.issues.push(issue);
listDup.issues.push(issue);
spyOn(gl.boardService, 'moveIssue').and.callThrough();
listDup.updateIssueLabel(list, issue);
expect(gl.boardService.moveIssue).toHaveBeenCalledWith(issue.id, list.id, listDup.id);
});
});
});
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