summaryrefslogtreecommitdiffstats
path: root/client/components/boards
Commit message (Collapse)AuthorAgeFilesLines
...
* changes for lint warningsJoel Louzado2017-02-221-6/+6
|
* New component for use in header-barJoel Louzado2017-02-222-6/+16
|
* Added tooltip to `MenuBoard` buttonJoel Louzado2017-02-151-1/+1
|
* Fix typos, thanks to umbertoooLauri Ojansivu2017-02-011-1/+1
|
* Fix undefined variables errorsMaxime Quandalle2016-07-211-2/+5
|
* UI: Fix small bug with the multi-selection button (#591)Alexander Sulfrian2016-07-111-1/+1
| | | This bug was introduced in 081b09207f2247d7e38fc28e0f0f9748eecbbcbe.
* UI: Add missing title attributesAlexander Sulfrian2016-04-211-5/+6
| | | | | | | The buttons of the normal view should have the same title attribute, than the mini screen buttons. I missed this in 0587158b6be930f53325baa54fccadc54d18c9a3.
* UI: Add log-in button to public boardsAlexander Sulfrian2016-04-212-10/+23
| | | | | | | | | Even if a board is public and a user can view it, the user might want to log in to be able to edit the board. The button replaces the "public" permission indicator, because it is obvious (if the user is not logged in and can view the board, it has to be public).
* UI: Only display the options, if there is a boardAlexander Sulfrian2016-04-211-70/+72
| | | | | | The board options does not have valid use case (or even valid values) if the board is not found (either because the user is not logged in or the board really does not exists).
* UI: Do not display notification settingsAlexander Sulfrian2016-04-211-19/+21
| | | | | The notification settings are only usefull if there is a current user, because the email address is required.
* Some small fixes for the buttons in the board header (#580)Alexander Sulfrian2016-04-211-7/+8
| | | | | | | | | | | * UI: Fix title of button The multi selection button should not get the filter description. * UI: Add title for all buttons in the header bar This is espectially important for the miniScreen view, because there is only the icon and no text next to the button.
* Change the board import layout from a popup to a full pageMaxime Quandalle2016-01-312-3/+1
| | | | | | | | This commit also removes the “import a single Trello card” as we couldn’t figure out some reasonable use case. We also create a new publication on the server to provide the minimal user profile informations required to display an avatar.
* Bugfix, and optimize icon for notificationfloatinghotpot2016-01-082-7/+7
|
* Merge pull request #454 from floatinghotpot/notificationMaxime Quandalle2016-01-062-0/+77
|\ | | | | Add notifications, allow watch boards / lists / cards
| * Add notification, allow watch boards / lists / cardsLiming Xie2016-01-052-0/+77
| |
* | Favor FlowRouter.url over Meteor.absoluteUrlMaxime Quandalle2016-01-051-1/+1
|/ | | | | It hides the leading slash treatment as an hidden implementation detail.
* Remove unnecessary template name declarationMaxime Quandalle2016-01-034-32/+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.
* Fix layout on Apple devicesMaxime Quandalle2016-01-021-0/+2
| | | | | | | | | | | | | | | The layout issue was related to the lack of autoprexing for CSS properties. c69f993 did improve the reload time significantly but for that I had to replace `mquandalle:stylus` by the core `stylus` package. Unfortunatly it is currently difficult to run an autoprefixer with the core CSS compilers (as reported in https://github.com/meteor/meteor/issues/5219). So instead we rely on `nib` which transparently define some mixins for autoprefixing, the only restrictions being that we have to manually `@import 'nib'` on top of stylus files. Fixes #461
* Fix drag and drop on SandstormMaxime Quandalle2015-12-301-6/+8
| | | | | | | | | | | | | | This bug was introduced with the introduction of fast-render in 41b23f8. With fast-render data is available instantly after the page logging, but calls to `Meteor.userId()` still return `null` as the user isn't authenticated on the DDP channel yet (previously the data was loaded on DDP after user authentication). Which mean that we know need to reactively activate Drag and Drop on user log in. I'm not sure why I was not able to reproduce this bug outside of Sandstorm. Fixes #453
* Fix home header barMaxime Quandalle2015-12-191-1/+1
| | | | | | | | | | The issue was introduced in 3b2eb0f but was only partially fixed (in urgency) in 71b9a42. We sould have test to avoid these trivial regressions! (I guess React will also yelp in this particular case by removing the need to link the template and the "component", and thus removing the possibility to break this link) Fixes #434
* Merge pull request #435 from xavierpriour/develMaxime Quandalle2015-12-182-0/+13
|\ | | | | | | | | Export a board to JSON Fixes #396
| * Export: improved API routesXavier Priour2015-12-171-2/+1
| | | | | | | | | | | | - use an explicit "boards" domain: /api/boards/:boardId - pass authToken as a request parameter: /api/boards/:boardId?authToken=:token - in the future, same route can be used with authToken set in the Authenticate: header easily
| * Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-176-9/+45
| |\
| * | Export Wekan now server-based with proper authXavier Priour2015-12-162-18/+10
| | |
| * | fix eslintXavier Priour2015-12-131-1/+2
| | |
| * | Merge remote-tracking branch 'upstream/devel' into develXavier Priour2015-12-134-5/+14
| |\ \
| * | | board export now checks authenticationXavier Priour2015-12-132-1/+15
| | | |
| * | | export board to Wekan JSONXavier Priour2015-12-092-0/+7
| | | |
* | | | fix board headeer issuefloatinghotpot2015-12-172-11/+29
| |_|/ |/| |
* | | add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-176-9/+45
| |/ |/|
* | Fix a regression introduced in 71b9a42fMaxime Quandalle2015-12-091-2/+2
| | | | | | | | The buttons in the board header were not click-able anymore.
* | Allow the header bar customizationMaxime Quandalle2015-12-093-2/+11
| | | | | | | | | | This commit also provide a way to escape the Shorcuts page on Sandstorm.
* | Fix board archive instructionsMaxime Quandalle2015-12-091-1/+1
|/ | | | Fixes #277.
* add: optional board descriptionfloatinghotpot2015-12-073-0/+6
|
* add: invite user via email, invited user can accept or decline, allow member ↵floatinghotpot2015-12-073-8/+44
| | | | to quit
* bugfix: template. does not accept dom elements, but jquery canfloatinghotpot2015-11-271-3/+3
|
* Fix an exception introduced in 41b23f8Maxime Quandalle2015-11-011-1/+2
|
* Fix some bugs introduced in aa974aaMaxime Quandalle2015-10-291-2/+4
| | | | | Yes Wekan need some tests. Yes I need to stop refactoring my code when I’m halp-sleeping in my bed at 4am.
* Update packages and update Meteor to 1.2.1Maxime Quandalle2015-10-291-2/+2
| | | | Blaze-components had yet another methods rename.
* 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-2/+2
| | | | | This change includes method renames and others UI related packages updates.
* Provide a default date for lists and cards creation dateMaxime Quandalle2015-10-201-2/+3
| | | | | | | | See https://github.com/wekan/wekan/pull/362#issuecomment-149645497 for motivation. This commit also contains cosmetic changes to the import Popup and on the code style to be more consistent with the code base.
* Import board: added UIXavier Priour2015-10-173-0/+5
|
* Merge pull request #316 from AlexanderS/fix/delete-cardMaxime Quandalle2015-09-201-1/+1
|\ | | | | | | | | Fix card deletion This bug was introduced in b3851817.
| * 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.
* | Add some strings to the translation setMaxime Quandalle2015-09-181-2/+2
|/
* Merge branch 'master' into develMaxime Quandalle2015-09-101-1/+7
|\
| * Fix text selection in the card detailed paneMaxime Quandalle2015-09-101-1/+7
| | | | | | | | Fixes #255.
* | Centralize all mutations at the model levelMaxime Quandalle2015-09-082-27/+14
|/ | | | | | | | | | | | | | | 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-2/+2
|