diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-10-31 09:26:55 -0700 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-11-08 23:17:24 -0800 |
commit | 5d77ad4f6ba70038486d734e97844c547e664e88 (patch) | |
tree | aa4a0dd855b98ff94ac10fb7b2add3f7e1627dfd /client/components/lists/listBody.jade | |
parent | 2b134ff7a986eb97f8ec360321be284a7a8ea11e (diff) | |
download | wekan-5d77ad4f6ba70038486d734e97844c547e664e88.tar.gz wekan-5d77ad4f6ba70038486d734e97844c547e664e88.tar.bz2 wekan-5d77ad4f6ba70038486d734e97844c547e664e88.zip |
Finish the minicard editor auto-completion feature
This commit stands on the initial support implemented in #342. We now
avoid error-prone parsing step by adding the member or the label
directly to the card object.
We also added support for `Tab` to completion on our textComplete
component.
Closes #342
Diffstat (limited to 'client/components/lists/listBody.jade')
-rw-r--r-- | client/components/lists/listBody.jade | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/client/components/lists/listBody.jade b/client/components/lists/listBody.jade index b0a374ea..e659b179 100644 --- a/client/components/lists/listBody.jade +++ b/client/components/lists/listBody.jade @@ -22,9 +22,20 @@ template(name="listBody") template(name="addCardForm") .minicard.minicard-composer.js-composer - .minicard-detailss.clearfix - textarea.minicard-composer-textarea.js-card-title(autofocus) + if getLabels + .minicard-labels + each getLabels + .minicard-label(class="card-label-{{color}}" title="{{name}}") + textarea.minicard-composer-textarea.js-card-title(autofocus) + if members.get .minicard-members.js-minicard-composer-members + each members.get + +userAvatar(userId=this) + .add-controls.clearfix button.primary.confirm(type="submit") {{_ 'add'}} a.fa.fa-times-thin.js-close-inlined-form + +template(name="autocompleteLabelLine") + .minicard-label(class="card-label-{{colorName}}" title=labelName) + span(class="{{#if hasNoName}}quiet{{/if}}")= labelName |