mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Remove the 'Add Swimlane' entry and replace it by a plus sign
Still need to create the swimlane right after the one that has been created
This commit is contained in:
parent
dd88eb4cc1
commit
416b17062e
7 changed files with 42 additions and 43 deletions
|
|
@ -23,8 +23,6 @@ template(name="boardBody")
|
||||||
if isViewSwimlanes
|
if isViewSwimlanes
|
||||||
each currentBoard.swimlanes
|
each currentBoard.swimlanes
|
||||||
+swimlane(this)
|
+swimlane(this)
|
||||||
if currentUser.isBoardMember
|
|
||||||
+addSwimlaneForm
|
|
||||||
if isViewLists
|
if isViewLists
|
||||||
+listsGroup
|
+listsGroup
|
||||||
if isViewCalendar
|
if isViewCalendar
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ template(name="swimlaneHeader")
|
||||||
= title
|
= title
|
||||||
.swimlane-header-menu
|
.swimlane-header-menu
|
||||||
unless currentUser.isCommentOnly
|
unless currentUser.isCommentOnly
|
||||||
|
a.fa.fa-plus.js-open-add-swimlane-menu.swimlane-header-plus-icon
|
||||||
a.fa.fa-navicon.js-open-swimlane-menu
|
a.fa.fa-navicon.js-open-swimlane-menu
|
||||||
|
|
||||||
template(name="editSwimlaneTitleForm")
|
template(name="editSwimlaneTitleForm")
|
||||||
|
|
@ -21,3 +22,11 @@ template(name="swimlaneActionPopup")
|
||||||
unless currentUser.isCommentOnly
|
unless currentUser.isCommentOnly
|
||||||
ul.pop-over-list
|
ul.pop-over-list
|
||||||
li: a.js-close-swimlane {{_ 'archive-swimlane'}}
|
li: a.js-close-swimlane {{_ 'archive-swimlane'}}
|
||||||
|
|
||||||
|
template(name="swimlaneAddPopup")
|
||||||
|
unless currentUser.isCommentOnly
|
||||||
|
form
|
||||||
|
input.swimlane-name-input.full-line(type="text" placeholder="{{_ 'add-swimlane'}}"
|
||||||
|
autocomplete="off" autofocus)
|
||||||
|
.edit-controls.clearfix
|
||||||
|
button.primary.confirm(type="submit") {{_ 'add'}}
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ BlazeComponent.extendComponent({
|
||||||
events() {
|
events() {
|
||||||
return [{
|
return [{
|
||||||
'click .js-open-swimlane-menu': Popup.open('swimlaneAction'),
|
'click .js-open-swimlane-menu': Popup.open('swimlaneAction'),
|
||||||
|
'click .js-open-add-swimlane-menu': Popup.open('swimlaneAdd'),
|
||||||
submit: this.editTitle,
|
submit: this.editTitle,
|
||||||
}];
|
}];
|
||||||
},
|
},
|
||||||
|
|
@ -23,3 +24,30 @@ Template.swimlaneActionPopup.events({
|
||||||
Popup.close();
|
Popup.close();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
BlazeComponent.extendComponent({
|
||||||
|
events() {
|
||||||
|
return [{
|
||||||
|
submit(evt) {
|
||||||
|
evt.preventDefault();
|
||||||
|
const titleInput = this.find('.swimlane-name-input');
|
||||||
|
const title = titleInput.value.trim();
|
||||||
|
if (title) {
|
||||||
|
Swimlanes.insert({
|
||||||
|
title,
|
||||||
|
boardId: Session.get('currentBoard'),
|
||||||
|
// XXX we should insert the swimlane right after the caller
|
||||||
|
sort: $('.swimlane').length,
|
||||||
|
});
|
||||||
|
|
||||||
|
titleInput.value = '';
|
||||||
|
titleInput.focus();
|
||||||
|
}
|
||||||
|
// XXX ideally, we should move the popup to the newly
|
||||||
|
// created swimlane so a user can add more than one swimlane
|
||||||
|
// with a minimum of interactions
|
||||||
|
Popup.close();
|
||||||
|
},
|
||||||
|
}];
|
||||||
|
},
|
||||||
|
}).register('swimlaneAddPopup');
|
||||||
|
|
|
||||||
|
|
@ -36,20 +36,6 @@ template(name="listsGroup")
|
||||||
if currentUser.isBoardMember
|
if currentUser.isBoardMember
|
||||||
+addListForm
|
+addListForm
|
||||||
|
|
||||||
template(name="addSwimlaneForm")
|
|
||||||
.list.list-composer.js-list-composer
|
|
||||||
.list-header
|
|
||||||
+inlinedForm(autoclose=false)
|
|
||||||
input.swimlane-name-input.full-line(type="text" placeholder="{{_ 'add-swimlane'}}"
|
|
||||||
autocomplete="off" autofocus)
|
|
||||||
.edit-controls.clearfix
|
|
||||||
button.primary.confirm(type="submit") {{_ 'save'}}
|
|
||||||
a.fa.fa-times-thin.js-close-inlined-form
|
|
||||||
else
|
|
||||||
a.open-list-composer.js-open-inlined-form
|
|
||||||
i.fa.fa-plus
|
|
||||||
| {{_ 'add-swimlane'}}
|
|
||||||
|
|
||||||
template(name="addListForm")
|
template(name="addListForm")
|
||||||
.list.list-composer.js-list-composer
|
.list.list-composer.js-list-composer
|
||||||
.list-header
|
.list-header
|
||||||
|
|
|
||||||
|
|
@ -175,33 +175,6 @@ BlazeComponent.extendComponent({
|
||||||
},
|
},
|
||||||
}).register('addListForm');
|
}).register('addListForm');
|
||||||
|
|
||||||
BlazeComponent.extendComponent({
|
|
||||||
// Proxy
|
|
||||||
open() {
|
|
||||||
this.childComponents('inlinedForm')[0].open();
|
|
||||||
},
|
|
||||||
|
|
||||||
events() {
|
|
||||||
return [{
|
|
||||||
submit(evt) {
|
|
||||||
evt.preventDefault();
|
|
||||||
let titleInput = this.find('.swimlane-name-input');
|
|
||||||
const title = titleInput.value.trim();
|
|
||||||
if (title) {
|
|
||||||
Swimlanes.insert({
|
|
||||||
title,
|
|
||||||
boardId: Session.get('currentBoard'),
|
|
||||||
sort: $('.swimlane').length,
|
|
||||||
});
|
|
||||||
|
|
||||||
titleInput.value = '';
|
|
||||||
titleInput.focus();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}];
|
|
||||||
},
|
|
||||||
}).register('addSwimlaneForm');
|
|
||||||
|
|
||||||
Template.swimlane.helpers({
|
Template.swimlane.helpers({
|
||||||
canSeeAddList() {
|
canSeeAddList() {
|
||||||
return Meteor.user() && Meteor.user().isBoardMember() && !Meteor.user().isCommentOnly();
|
return Meteor.user() && Meteor.user().isBoardMember() && !Meteor.user().isCommentOnly();
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,10 @@
|
||||||
position: absolute
|
position: absolute
|
||||||
padding: 5px 5px
|
padding: 5px 5px
|
||||||
|
|
||||||
|
.swimlane-header-plus-icon
|
||||||
|
margin-left: 5px
|
||||||
|
margin-right: 10px
|
||||||
|
|
||||||
.list-group
|
.list-group
|
||||||
flex-direction: row
|
flex-direction: row
|
||||||
height: 100%
|
height: 100%
|
||||||
|
|
|
||||||
|
|
@ -337,6 +337,7 @@
|
||||||
"list-select-cards": "Select all cards in this list",
|
"list-select-cards": "Select all cards in this list",
|
||||||
"listActionPopup-title": "List Actions",
|
"listActionPopup-title": "List Actions",
|
||||||
"swimlaneActionPopup-title": "Swimlane Actions",
|
"swimlaneActionPopup-title": "Swimlane Actions",
|
||||||
|
"swimlaneAddPopup-title": "Add a Swimlane below",
|
||||||
"listImportCardPopup-title": "Import a Trello card",
|
"listImportCardPopup-title": "Import a Trello card",
|
||||||
"listMorePopup-title": "More",
|
"listMorePopup-title": "More",
|
||||||
"link-list": "Link to this list",
|
"link-list": "Link to this list",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue