summaryrefslogtreecommitdiffstats
path: root/client/components/boards
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Fix an issue with the star counterMaxime Quandalle2015-09-051-1/+1
|
* Fix member permission modificationMaxime Quandalle2015-09-052-2/+5
| | | | Fixes #280
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-034-133/+133
| | | | | | | | | 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 list title formMaxime Quandalle2015-09-022-23/+24
|
* Update translation source fileMaxime Quandalle2015-09-013-19/+16
|
* Fix the horizontal canvas scrolling on card openingMaxime Quandalle2015-08-311-16/+8
|
* Improve the board subscriptionMaxime Quandalle2015-08-311-10/+16
| | | | Fixes #258
* Fixes some UI bugs on sandstormMaxime Quandalle2015-08-312-7/+7
|
* Fix a bug with board title editionMaxime Quandalle2015-08-291-2/+3
| | | | Fixes #250
* Fix the cursor used while dragging a listMaxime Quandalle2015-08-281-2/+2
|
* Hide feature non-member users can't useMaxime Quandalle2015-08-281-11/+10
| | | | | Fixes #206 Fixes #244
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-284-25/+13
| | | | | | | | | | | | * Automatically display the overlay when the card details is opened (previously we waited for the mouse to enter the card details panel) * Improve the design of the minicards badges * Change the minicard background when it is hovered or selected * Removes unimplemented features links from the UI * Fix the board canvas position when the sidebar is open (was hidden behind) Fixes #215
* Implement click-and-drag integration to translate the board canvasMaxime Quandalle2015-08-281-6/+38
| | | | Fixes #232
* More explicit file namesMaxime Quandalle2015-08-285-6/+0
|
* Display keyboard shortcuts on a modalMaxime Quandalle2015-08-281-1/+3
| | | | Fixes #241
* Show only boards in which the user participate in the home page gridMaxime Quandalle2015-08-271-1/+4
| | | | Fixes #218
* Implement board archive and restorationMaxime Quandalle2015-08-268-21/+78
|