summaryrefslogtreecommitdiffstats
path: root/client/components
Commit message (Collapse)AuthorAgeFilesLines
* Show avatars in search resultsMaxime Quandalle2015-09-062-2/+8
| | | | Fixes #265
* Support avatars and improve permissions integration on sandstormMaxime Quandalle2015-09-051-4/+5
| | | | | | | We now update the internal state of the application every time a user connects to the application, which means that if the sandstorm sharing graph has changed since the last time we saw a user, his permissions will be updated accordingly.
* Fix an issue with the star counterMaxime Quandalle2015-09-051-1/+1
|
* Fix member permission modificationMaxime Quandalle2015-09-059-33/+43
| | | | Fixes #280
* Change our presence packageMaxime Quandalle2015-09-041-1/+1
| | | | | | | | | tmeasday:presence was doing unnecessary ping calls to the server every 5 seconds instead of using the status of the DDP connection (this could save a fair amount of traffic in case of important server load). I guess this change also fixes #221, but since no issue reproduction was provided, it's difficult to tell.
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-0325-800/+737
| | | | | | | | | 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-026-46/+33
|
* Fix attachments downloadingMaxime Quandalle2015-09-022-4/+7
| | | | | Fixes #219 Fixes #256
* Add an horizontal scrollbar on code snippetsMaxime Quandalle2015-09-021-0/+5
| | | | Fixes #260
* Avoid side effects while clicking on a link in a card descriptionMaxime Quandalle2015-09-011-0/+17
| | | | Fixes #261
* Re-enable attachments on sandstormMaxime Quandalle2015-09-011-2/+1
| | | | | Credits go to @dwrensha who implement the required MongoDB upgrade on meteor-spk.
* Update translation source fileMaxime Quandalle2015-09-0111-68/+67
|
* Fix the horizontal canvas scrolling on card openingMaxime Quandalle2015-08-312-21/+33
|
* Fix comment insertionMaxime Quandalle2015-08-311-2/+2
|
* Improve the board subscriptionMaxime Quandalle2015-08-311-10/+16
| | | | Fixes #258
* Temporarily hide the attachment feature on sandstormMaxime Quandalle2015-08-311-1/+2
| | | | | | | | | | Our spk currently have an issue with the bundled MongoDB (forked) version that breaks if some files are inserted in a GridFS collection. We need to find out a way to upgrade and migrate the bundled database until we can re-enable the attachment feature. Note that the feature is unmodified, it's just hidden in the UI.
* Don't save a draft if the card description hasn't been modifiedMaxime Quandalle2015-08-311-1/+4
|
* Fixes some UI bugs on sandstormMaxime Quandalle2015-08-313-9/+17
|
* Replace the component bounded `cachedValue` by a global `UnsavedEdits`Maxime Quandalle2015-08-317-154/+112
| | | | | | | | This new draft saving system is currently only implemented for the card description and comment. We need better a component inheritance/composition model to support this for all editable fields. Fixes #186
* Fix property passing in the userAvatar componentMaxime Quandalle2015-08-301-1/+2
| | | | Fixes #257
* Redesign the card design header and change header menu iconMaxime Quandalle2015-08-306-28/+22
|
* Fix a bug with board title editionMaxime Quandalle2015-08-291-2/+3
| | | | Fixes #250
* Fix a bug with the comment buttonsMaxime Quandalle2015-08-291-3/+3
|
* Fix the faviconMaxime Quandalle2015-08-291-1/+1
|
* Fix the cursor used while dragging a listMaxime Quandalle2015-08-282-3/+6
|
* Increase the avatar max size and show an error if it is too bigMaxime Quandalle2015-08-282-15/+32
| | | | Fixes #190
* Hide feature non-member users can't useMaxime Quandalle2015-08-286-37/+38
| | | | | Fixes #206 Fixes #244
* Fix label alignement on SafariMaxime Quandalle2015-08-281-0/+2
| | | | | | | | | Safari infer different values for the `vertical-align` property of `inline-block` element. See this answer for more details: http://stackoverflow.com/a/4828136/1652064 Fixes #177
* Call me WekanMaxime Quandalle2015-08-285-9/+20
| | | | | | Thank you @neynah for the Wekan icons Closes #247
* Improve the list menuMaxime Quandalle2015-08-285-83/+83
| | | | | | | | | * Grow the click-able zone of the list menu * Remove a dead link on the list menu * Merge list menu files with header menu to be consistent with the board components internal organization Closes #106
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-2811-43/+53
| | | | | | | | | | | | * 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-282-6/+41
| | | | Fixes #232
* More explicit file namesMaxime Quandalle2015-08-2817-6/+0
|
* Display keyboard shortcuts on a modalMaxime Quandalle2015-08-285-4/+41
| | | | Fixes #241
* Open a modal (or a new page) based on contextMaxime Quandalle2015-08-282-3/+5
| | | | | | 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-2612-23/+96
|
* Implement a modal systemMaxime Quandalle2015-08-264-10/+46
| | | | | | | | | | | | | | 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.
* Fix EscapeActions click in handlingMaxime Quandalle2015-08-251-1/+1
| | | | Fixes a bug introduced in 07cc454 and one introduced in 22e854c.
* Upgrade meteor to 1.2-rc.4 and package versionsMaxime Quandalle2015-08-252-10/+7
| | | | | | | | | | | | 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
* Close the Popup when all escape actions are executedMaxime Quandalle2015-08-231-1/+1
|
* Fix the board component data loadingMaxime Quandalle2015-08-233-88/+98
|
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-2313-128/+51
| | | | | | | | | | | | | | | | | | | 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-224-15/+61
|
* Upgrade dependenciesMaxime Quandalle2015-08-222-26/+0
| | | | | | 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
|