126 lines
2.7 KiB
JavaScript
126 lines
2.7 KiB
JavaScript
|
class List {
|
||
|
constructor (obj) {
|
||
|
this.id = obj.id;
|
||
|
this._uid = this.guid();
|
||
|
this.position = obj.position;
|
||
|
this.title = obj.title;
|
||
|
this.type = obj.list_type;
|
||
|
this.preset = ['backlog', 'done', 'blank'].indexOf(this.type) > -1;
|
||
|
this.filters = gl.issueBoards.BoardsStore.state.filters;
|
||
|
this.page = 1;
|
||
|
this.loading = true;
|
||
|
this.loadingMore = false;
|
||
|
this.issues = [];
|
||
|
|
||
|
if (obj.label) {
|
||
|
this.label = new ListLabel(obj.label);
|
||
|
}
|
||
|
|
||
|
if (this.type !== 'blank' && this.id) {
|
||
|
this.getIssues();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
guid() {
|
||
|
const s4 = () => Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
|
||
|
return `${s4()}${s4()}-${s4()}-${s4()}-${s4()}-${s4()}${s4()}${s4()}`;
|
||
|
}
|
||
|
|
||
|
save () {
|
||
|
return gl.boardService.createList(this.label.id)
|
||
|
.then((resp) => {
|
||
|
const data = resp.json();
|
||
|
|
||
|
this.id = data.id;
|
||
|
this.type = data.list_type;
|
||
|
this.position = data.position;
|
||
|
|
||
|
return this.getIssues();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
destroy () {
|
||
|
gl.issueBoards.BoardsStore.state.lists.$remove(this);
|
||
|
gl.issueBoards.BoardsStore.updateNewListDropdown(this.id);
|
||
|
|
||
|
gl.boardService.destroyList(this.id);
|
||
|
}
|
||
|
|
||
|
update () {
|
||
|
gl.boardService.updateList(this.id, this.position);
|
||
|
}
|
||
|
|
||
|
nextPage () {
|
||
|
if (Math.floor(this.issues.length / 20) === this.page) {
|
||
|
this.page++;
|
||
|
|
||
|
return this.getIssues(false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
canSearch () {
|
||
|
return this.type === 'backlog';
|
||
|
}
|
||
|
|
||
|
getIssues (emptyIssues = true) {
|
||
|
const filters = this.filters;
|
||
|
let data = { page: this.page };
|
||
|
|
||
|
Object.keys(filters).forEach((key) => { data[key] = filters[key]; });
|
||
|
|
||
|
if (this.label) {
|
||
|
data.label_name = data.label_name.filter( label => label !== this.label.title );
|
||
|
}
|
||
|
|
||
|
if (emptyIssues) {
|
||
|
this.loading = true;
|
||
|
}
|
||
|
|
||
|
return gl.boardService.getIssuesForList(this.id, data)
|
||
|
.then((resp) => {
|
||
|
const data = resp.json();
|
||
|
this.loading = false;
|
||
|
|
||
|
if (emptyIssues) {
|
||
|
this.issues = [];
|
||
|
}
|
||
|
|
||
|
this.createIssues(data);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
createIssues (data) {
|
||
|
data.forEach((issueObj) => {
|
||
|
this.addIssue(new ListIssue(issueObj));
|
||
|
});
|
||
|
}
|
||
|
|
||
|
addIssue (issue, listFrom) {
|
||
|
this.issues.push(issue);
|
||
|
|
||
|
if (this.label) {
|
||
|
issue.addLabel(this.label);
|
||
|
}
|
||
|
|
||
|
if (listFrom) {
|
||
|
gl.boardService.moveIssue(issue.id, listFrom.id, this.id);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
findIssue (id) {
|
||
|
return this.issues.filter( issue => issue.id === id )[0];
|
||
|
}
|
||
|
|
||
|
removeIssue (removeIssue) {
|
||
|
this.issues = this.issues.filter((issue) => {
|
||
|
const matchesRemove = removeIssue.id === issue.id;
|
||
|
|
||
|
if (matchesRemove) {
|
||
|
issue.removeLabel(this.label);
|
||
|
}
|
||
|
|
||
|
return !matchesRemove;
|
||
|
});
|
||
|
}
|
||
|
}
|