summaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* Display keyboard shortcuts on a modalMaxime Quandalle2015-08-286-4/+66
| | | | Fixes #241
* Open a modal (or a new page) based on contextMaxime Quandalle2015-08-286-24/+57
| | | | | | This feature is also sometime named the Pinterest-style route, which is further explained in this react-router example: https://github.com/rackt/react-router/tree/cf0419f70e14a0ae39cba2ff99b01d3cbbd085be/examples/pinterest
* Show only boards in which the user participate in the home page gridMaxime Quandalle2015-08-271-1/+4
| | | | Fixes #218
* Fix the layout on IE11Maxime Quandalle2015-08-271-2/+2
| | | | | | | | | | | | | | The new user interface uses the flexbox box model has it's primary way to organize the layout. Unfortunately IE have a non-negligible amount of subtitle and tricky bugs with its flexbox implementation. This one was about a `flex-grow: 1` element not growing in a container which size is defined with `min-height`. See the bug in Microsoft bug tracker for more details: https://connect.microsoft.com/IE/feedback/details/802625/ Fixes #225
* Implement board archive and restorationMaxime Quandalle2015-08-2613-24/+97
|
* Implement a modal systemMaxime Quandalle2015-08-266-10/+78
| | | | | | | | | | | | | | I decided to create my own and not to use a community package, because 1. it's straightforward 2. it's better integrated with our others libs such as EscapeActions 3. monitoring third-party packages evolutions (eg, CSS changes) is a lot of work. This is basically the same rationale than for our other generic UI components such as the Popup/Popover. This commit also slightly modify the general layout to remove unnecessary wrapper DOM nodes.
* ES6ify our Popup libraryMaxime Quandalle2015-08-261-108/+108
| | | | | | | | | | | This is an experiment about the implications of ES6 transpilation in our code base. We should also define a new ES6 style guide and a jsHint configuration, for instance semi-colons are automatically inserted at the end of lines, so we may remove them. We also need to figure which ES6 features we want to use, currently I have followed Meteor-core guidance which is reasonable.
* Fix EscapeActions click in handlingMaxime Quandalle2015-08-253-21/+33
| | | | Fixes a bug introduced in 07cc454 and one introduced in 22e854c.
* Fix a type: document -> document.bodyMaxime Quandalle2015-08-251-1/+1
| | | | Does that fix #176?
* Upgrade meteor to 1.2-rc.4 and package versionsMaxime Quandalle2015-08-253-20/+12
| | | | | | | | | | | | The new version of meteor speeds up the reload cycle, which is super valuable during the development. I also removed the "imply-everything" "meteor-platform" package in favor of a more fined-grained package selection. This version also introduces ES6 support with transparent babeljs transpilation. Most features are enable (with the notable exception of ES6 modules) and this commit started to use them in places where a XXX comment suggested it.
* Fix the starsMaxime Quandalle2015-08-255-28/+17
| | | | Fixes #214
* Lower the required usernames length from 5 to 2Maxime Quandalle2015-08-231-1/+1
| | | | | | | | | | | Both the previous and the new value are completely arbitrary but some users suggested that we reject names like "Li" for no good reason, especially on private boards, cf #202. Hopefully one day we'll have an administrator configuration panel. Fixes #202 Closes #210
* Close the Popup when all escape actions are executedMaxime Quandalle2015-08-234-17/+27
|
* Fix the board component data loadingMaxime Quandalle2015-08-233-88/+98
|
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-2316-177/+118
| | | | | | | | | | | | | | | | | | | 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.
* Implement list restorationMaxime Quandalle2015-08-225-15/+66
|
* Upgrade dependenciesMaxime Quandalle2015-08-223-26/+26
| | | | | | This includes a security fix in mquandalle:bower, and a new package for useraccounts iron-router templates which forced us to move some configuration function calls.
* Warn if the user try to restore a card in an archived listMaxime Quandalle2015-08-203-0/+10
|
* Adds new app store metadata to sandstorm package definitionMaxime Quandalle2015-08-202-11/+12
| | | | | | | | We still miss some branding stuff, such as screenshots, icons, and a description. This commit also hides an option related to user permissions managment in the sandstorm package.
* Switch the font to robotoMaxime Quandalle2015-08-2010-27/+55
|
* profile name changed fullname and comma hotfix.Yasar icli2015-07-185-10/+10
|
* if not then the board list create board show button.Yasar icli2015-07-183-4/+16
|
* a links specifies line breaking rules hotfix.Yasar icli2015-07-162-2/+3
|
* add card members popup line height hotfix.Yasar icli2015-07-161-0/+2
|
* Allow a user to edit its profile or avatar from a member popoverMaxime Quandalle2015-06-198-58/+73
| | | | | | | 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-175-16/+24
| | | | | | | | 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).
* Fix some sidebar bugsMaxime Quandalle2015-06-161-36/+44
|
* Fix #196Maxime Quandalle2015-06-162-10/+6
|
* Merge, move, and rename the main stylus fileMaxime Quandalle2015-06-165-149/+157
| | | | Also fixes #185
* Fix #199Maxime Quandalle2015-06-164-62/+80
|
* Improve the multi-selection experienceMaxime Quandalle2015-06-1611-52/+144
| | | | | | | | | | 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.
* Finish the transition from Spacebars to JadeMaxime Quandalle2015-06-153-17/+14
|
* Close "over elements" when opening the filter viewMaxime Quandalle2015-06-131-1/+5
|
* Fix card attachmentsMaxime Quandalle2015-06-136-218/+102
| | | | Closes #192.
* Work on the card activities and commentsMaxime Quandalle2015-06-1229-683/+589
| | | | | | | | | 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.
* Fix card title editionMaxime Quandalle2015-06-1110-99/+71
| | | | Closes #184
* (Re-)implement default avatar using user initialsMaxime Quandalle2015-06-105-41/+74
| | | | | We use a embedded svg to scale the initials text to its container size. The user is free to overwrite its initials in the profile form.
* Define the popup translation in the stylesheet, not in the JS codeMaxime Quandalle2015-06-093-5/+11
| | | | | | | This allows us to autoprexfix the property, which is needed for Safari support (see http://caniuse.com/#feat=transforms2d). Fixes #178.
* Automatically star new boards created with the header shortcutMaxime Quandalle2015-06-091-0/+3
|
* Re-factor the avatar system and support avatar uploadsMaxime Quandalle2015-06-0916-221/+129
| | | | | | | | | | | | | | | The user is now able to upload an avatar, and pick one in a list. This functionality should eventually be abstracted in a community package but we still need to work on a great public API. We rely on collectionFS to manage uploaded avatars. We also removed bengott:avatar which was trying to solve the wrong problem (namely displaying the avatar, which is as simple as displaying an image), and not a avatar system as it should be. Gravatar support is coming (back) soon. We may also want to have a list of default fun avatars the user can choose instead of uploading its own one.
* Add a UI to restore archived cardsMaxime Quandalle2015-06-0716-83/+134
|
* Remove modal componentMaxime Quandalle2015-06-074-23/+0
| | | | | | This component wasn't used anymore. We'll probably need something like that again in the future, but we'll try to use a generic component from Atmosphere.
* Click on the page to escape the last actionMaxime Quandalle2015-06-0717-145/+199
| | | | | | 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-067-193/+164
|
* Improve the card details pane overlay interactionsMaxime Quandalle2015-06-064-8/+13
|
* Autosize the rich editor (for card description and comments)Maxime Quandalle2015-06-064-3/+13
|
* Maintain a visual indication of the popup openerElementMaxime Quandalle2015-06-064-6/+15
|
* Start designing the card details paneMaxime Quandalle2015-06-0523-850/+304
| | | | Implement a dynamic overflow to focus sight on the pane.
* Dissable temporarily the cache value of inlinedFormMaxime Quandalle2015-06-044-6/+5
| | | | | Due to bug https://github.com/peerlibrary/meteor-blaze-components/issues/50
* Work on the user account systemMaxime Quandalle2015-06-0316-151/+218
| | | | | | | | Allow a user to modifies its name, username, initials, and password. Fixes username handling on sandstorm. Fixes #149.