summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listHeader.js
Commit message (Collapse)AuthorAgeFilesLines
* Add notification, allow watch boards / lists / cardsLiming Xie2016-01-051-0/+18
|
* Remove unnecessary template name declarationMaxime Quandalle2016-01-031-4/+0
| | | | | | This code was duplicate with the name we use to `register` the component. A update of blaze-component removed the need to duplicate this declaration.
* Remove the import trello card featureMaxime Quandalle2015-12-221-1/+0
| | | | | | See the following discussion for rationale: https://github.com/wekan/wekan/issues/113#issuecomment-163039089
* Remove the move and archive all cards of a list featureMaxime Quandalle2015-12-091-19/+0
| | | | | | | | | | This operation should now be handled using the multi-selection feature, ie “select all cards” and then move them or click the “archive selection” button. This new process add an extra click which I consider reasonable enough for a relatively rare operation -- plus I want to encourage mutli-selection usage. Closes #390.
* Finish the minicard editor auto-completion featureMaxime Quandalle2015-11-081-1/+1
| | | | | | | | | | | 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
* Fix some bugs introduced in aa974aaMaxime Quandalle2015-10-291-2/+2
| | | | | Yes Wekan need some tests. Yes I need to stop refactoring my code when I’m halp-sleeping in my bed at 4am.
* Upgrade Meteor to 1.2.1-rc4Maxime Quandalle2015-10-231-3/+3
| | | | | | This version includes a more complete selection of ES2015 polyfills that I started used across the code base, for instance by replacing `$.trim(str)` by `str.trim()`.
* Upgrade peerlibrary:blaze-components to v0.14Maxime Quandalle2015-10-211-1/+1
| | | | | This change includes method renames and others UI related packages updates.
* Import board: added UIXavier Priour2015-10-171-39/+0
|
* Add some ESLint rules and fix some related issuesMaxime Quandalle2015-10-141-4/+2
|
* Import single card: proper error handlingXavier Priour2015-10-141-23/+39
|
* Import single card: refactor to meteor methodXavier Priour2015-10-141-54/+14
|
* Import single card: archived cardXavier Priour2015-10-141-0/+1
|
* Import single card: map labelsXavier Priour2015-10-141-10/+33
|
* Import single card: now with description and commentsXavier Priour2015-10-141-1/+16
|
* Import single card: title and proper sort indexXavier Priour2015-10-141-0/+26
|
* Add card import UIXavier Priour2015-10-141-0/+2
|
* Fix Popup.afterCommitAlexander Sulfrian2015-09-201-1/+1
| | | | | | We need to use "function() {}" instead of the ES6 style "() {}" with popup.afterCommit because we need the original value of "this" inside the callback.
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-29/+10
| | | | | | | | | | | | | | | This commit uses a new package that I need to document. It tries to solve the long-standing debate in the Meteor community about allow/deny rules versus methods (RPC). This approach gives us both the centralized security rules of allow/deny and the white-list of allowed mutations similarly to Meteor methods. The idea to have static mutation descriptions is also inspired by Facebook's Relay/GraphQL. This will allow the development of a REST API using the high-level methods instead of the MongoDB queries to do the mapping between the HTTP requests and our collections.
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-31/+31
| | | | | | | | | Replace the old (and broken) jshint + jscsrc by eslint and configure it to support some of the ES6 features. The command `eslint` currently has one error which is a bug that was discovered by its static analysis and should be fixed (usage of a dead object).
* Improve the list menuMaxime Quandalle2015-08-281-0/+53
| | | | | | | | | * Grow the click-able zone of the list menu * Remove a dead link on the list menu * Merge list menu files with header menu to be consistent with the board components internal organization Closes #106
* More explicit file namesMaxime Quandalle2015-08-281-0/+25