summaryrefslogtreecommitdiffstats
path: root/client/components/boards
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Fix the starsMaxime Quandalle2015-08-255-28/+17
| | | | Fixes #214
* Fix the board component data loadingMaxime Quandalle2015-08-232-86/+96
|
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-235-100/+38
| | | | | | | | | | | | | | | | | | | Motivations: * Iron-Router foces us to use Tracker.nonreactive black magic in order to avoid un-necessary re-renders; * There is a community consensus (supported by some MDG members) that the flow-router API is easier to reason about; * The useraccounts now supports flow router (that was a blocking element when I considered the switch ~3months ago) On the server we use the Picker router, as encouraged by the Kadira team (which develop both Flow and Picker routers). In the current state of things there are some bugs related to the missing Loading architecure. Previously onRendered callback where always called when the data the component needed was available, now we have to handle this ourselves, which we will in a following commit.
* profile name changed fullname and comma hotfix.Yasar icli2015-07-181-1/+1
|
* if not then the board list create board show button.Yasar icli2015-07-183-4/+16
|
* Allow a user to edit its profile or avatar from a member popoverMaxime Quandalle2015-06-191-2/+3
| | | | | | | Fixes the data context on the member popover in the details pane. Also change the way Popover detect if the click is initiated from a parent popover -- from reading Blaze context, to looking at the event target parents.
* Improve card and list sortable dragMaxime Quandalle2015-06-172-2/+1
| | | | | | | | Use a custom build of jquery-ui with only the plugins we need (instead of including everything). Fix a tricky bug of conflict between Blaze reactive updates and jquery-ui (which caused cards to sometimes disappear).
* Merge, move, and rename the main stylus fileMaxime Quandalle2015-06-161-0/+38
| | | | Also fixes #185
* Improve the multi-selection experienceMaxime Quandalle2015-06-163-7/+5
| | | | | | | | | | 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 card activities and commentsMaxime Quandalle2015-06-122-10/+3
| | | | | | | | | This commit also introduces a new CSSEvents object that is used to abstract vendor specifics events related to CSS transitions and animations. Fixes #183. Fixes #179.
* Automatically star new boards created with the header shortcutMaxime Quandalle2015-06-091-0/+3
|
* Add a UI to restore archived cardsMaxime Quandalle2015-06-073-2/+7
|
* Click on the page to escape the last actionMaxime Quandalle2015-06-072-10/+5
| | | | | | This is a generalization of what we had for closing a popup by clicking outside of it. It now works for inlinedForms and detailsPane as well.
* Restore the popup to add a member to the boardMaxime Quandalle2015-06-062-1/+5
|
* Improve the card details pane overlay interactionsMaxime Quandalle2015-06-062-0/+11
|
* Maintain a visual indication of the popup openerElementMaxime Quandalle2015-06-061-1/+1
|
* Start designing the card details paneMaxime Quandalle2015-06-055-41/+46
| | | | Implement a dynamic overflow to focus sight on the pane.
* Dissable temporarily the cache value of inlinedFormMaxime Quandalle2015-06-041-1/+1
| | | | | Due to bug https://github.com/peerlibrary/meteor-blaze-components/issues/50
* Work on the user account systemMaxime Quandalle2015-06-031-0/+1
| | | | | | | | Allow a user to modifies its name, username, initials, and password. Fixes username handling on sandstorm. Fixes #149.