summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar/sidebarFilters.js
Commit message (Collapse)AuthorAgeFilesLines
* Add Features: allowing lists to be sorted by modifiedAt when not in ↵Lauri Ojansivu2019-10-291-0/+4
| | | | | | | | | | | | draggable mode. Bug Fix #2093: the broken should be prior to file attachment feature introduced, and tested export board is working. Thanks to whowillcare ! ( xet7 merged this pull request manually from https://github.com/wekan/wekan/pull/2756 ) Closes #2093
* Add 'show archive' and 'hide empty lists' in filter feature.Romulus Urakagi Tsai2019-08-071-0/+19
|
* Prettier & eslint project style updateJustin Reynolds2019-06-281-76/+78
|
* Removing Debug Lines, correcting behavior, caching las valide filter, and ↵IgnatzHome2018-05-201-1/+1
| | | | adding description
* first test for Advanced FilterIgnatzHome2018-05-191-0/+5
|
* Filter on custom fields presenceIgnatzHome2018-05-191-0/+5
|
* Upgrade ESLint to v2Maxime Quandalle2016-03-171-2/+2
| | | | This commit also tweak the code style following backward-incompatible v2 rules.
* Remove unnecessary template name declarationMaxime Quandalle2016-01-031-8/+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.
* Add a button to move selected cardsMaxime Quandalle2015-12-101-0/+8
| | | | | | | This is an alternative to drag and drop to move a set of selected cards. This feature was available at the list level until I deleted it in 5bdf91b, so it makes sense to add it back at the multi-selection level.
* Remove the move and archive all cards of a list featureMaxime Quandalle2015-12-091-0/+1
| | | | | | | | | | 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.
* Fix multiselect toggle logicAlexander Sulfrian2015-09-161-4/+4
| | | | | | If every element already has the label/member, we do not need to add it but it should be removed and if every element does not have the element, we should add it.
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-31/+18
| | | | | | | | | | | | | | | 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.
* Fix a recurrent English typoMaxime Quandalle2015-09-061-4/+4
|
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-50/+50
| | | | | | | | | 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 multi-selection experienceMaxime Quandalle2015-06-161-8/+50
| | | | | | | | | | New features: - select all filtered cards - assign or unassign a member to selected cards - archive selected cards This commit also fix the card sort indexes calculation when a multi- selection is drag-dropped.
* Work on the user account systemMaxime Quandalle2015-06-031-2/+2
| | | | | | | | Allow a user to modifies its name, username, initials, and password. Fixes username handling on sandstorm. Fixes #149.
* Implement multi-selectionMaxime Quandalle2015-05-301-0/+94
The UI and the internal APIs are still rough around the edges but the feature is basically working. You can now select multiple cards and move them together or (un|)assign them a label.