summaryrefslogtreecommitdiffstats
path: root/client/components/main
Commit message (Collapse)AuthorAgeFilesLines
...
* Add notification, allow watch boards / lists / cardsLiming Xie2016-01-052-1/+7
|
* 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
* Optimize login form layout & cssfloatinghotpot2015-12-281-8/+9
| | | | Fixes #448
* Don't display sing-in link to connected usersMaxime Quandalle2015-12-211-2/+3
|
* fix board headeer issuefloatinghotpot2015-12-173-4/+5
|
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-174-103/+242
|
* Fix a regression introduced in 71b9a42fMaxime Quandalle2015-12-091-5/+0
| | | | The buttons in the board header were not click-able anymore.
* Allow the header bar customizationMaxime Quandalle2015-12-096-23/+32
| | | | | This commit also provide a way to escape the Shorcuts page on Sandstorm.
* bugfix: only care active members, also optimize some codefloatinghotpot2015-12-081-1/+1
|
* add: use user preferred lang for user form, and allow selectingfloatinghotpot2015-12-072-0/+40
|
* Enphasize keyboard shortcuts with a dedicated styleMaxime Quandalle2015-11-252-5/+9
| | | | | | Also add release notes related to the #387 merge. -- Fluctuat nec mergitur
* Upgrade Meteor to 1.2.1-rc4Maxime Quandalle2015-10-231-4/+4
| | | | | | 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()`.
* Prefer ES5 methods over underscore utilitiesMaxime Quandalle2015-10-221-1/+1
| | | | | | | | | | | | | | Since 07cc454 (ie the switch to Meteor 1.2) we includes the `es5-shim` polyfill to support methods like `Array.prototype.forEach` in a consistent way across all supported browsers (IE8+). MDG recently released a blog post recommending the use of these native methods instead of underscore [0]. We know follow this recommendation. This commit also favor some ES6 features (argument defaults, destructing assignment) in places where we didn’t use them. [0]: http://info.meteor.com/blog/es2015-get-started
* Provide a default date for lists and cards creation dateMaxime Quandalle2015-10-201-3/+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.
* Abstract the jquery-textcomplete integration with EscapeActionsMaxime Quandalle2015-10-131-25/+1
| | | | | We now can re-use this integration in multiple places, this will be useful for #342 for instance.
* Support app deployment under a path prefixMaxime Quandalle2015-10-082-3/+7
| | | | Fixes #133
* Fix some dead linksMaxime Quandalle2015-09-061-1/+51
| | | | | | | | | | This commit fixes the download link in the activity feed on the sidebar and the mention link on card description and comments (replaced by a popup). `eslint .` now passes without any error or warning. Fixes #286
* Fix header style when there are too much starred boardsMaxime Quandalle2015-09-062-4/+14
| | | | Fixes #237
* Fix markdown rendering in the message viewerMaxime Quandalle2015-09-061-0/+7
| | | | Fixes #284
* Fix member permission modificationMaxime Quandalle2015-09-053-15/+16
| | | | Fixes #280
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-035-116/+52
| | | | | | | | | 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).
* 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
* Update translation source fileMaxime Quandalle2015-09-012-7/+7
|
* Fixes some UI bugs on sandstormMaxime Quandalle2015-08-311-2/+10
|
* Fix the faviconMaxime Quandalle2015-08-291-1/+1
|
* Call me WekanMaxime Quandalle2015-08-283-4/+18
| | | | | | Thank you @neynah for the Wekan icons Closes #247
* Display keyboard shortcuts on a modalMaxime Quandalle2015-08-283-2/+37
| | | | 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
* 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-264-2/+18
|
* Implement a modal systemMaxime Quandalle2015-08-263-9/+45
| | | | | | | | | | | | | | 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.
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-234-10/+10
| | | | | | | | | | | | | | | | | | | 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-221-0/+4
|
* Warn if the user try to restore a card in an archived listMaxime Quandalle2015-08-201-0/+3
|
* Adds new app store metadata to sandstorm package definitionMaxime Quandalle2015-08-201-1/+1
| | | | | | | | 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-203-6/+23
|
* 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
|
* Merge, move, and rename the main stylus fileMaxime Quandalle2015-06-162-4/+298
| | | | Also fixes #185
* Finish the transition from Spacebars to JadeMaxime Quandalle2015-06-153-17/+14
|
* Work on the card activities and commentsMaxime Quandalle2015-06-122-22/+1
| | | | | | | | | 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.
* (Re-)implement default avatar using user initialsMaxime Quandalle2015-06-101-15/+17
| | | | | 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-092-3/+9
| | | | | | | This allows us to autoprexfix the property, which is needed for Safari support (see http://caniuse.com/#feat=transforms2d). Fixes #178.
* Re-factor the avatar system and support avatar uploadsMaxime Quandalle2015-06-091-70/+4
| | | | | | | | | | | | | | | 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.
* Click on the page to escape the last actionMaxime Quandalle2015-06-073-14/+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.
* 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-061-1/+1
|
* Work on the user account systemMaxime Quandalle2015-06-036-20/+42
| | | | | | | | Allow a user to modifies its name, username, initials, and password. Fixes username handling on sandstorm. Fixes #149.
* Implement multi-selectionMaxime Quandalle2015-05-303-241/+5
| | | | | | The UI and the internal APIs are still rough around the edges but the feature is basically working. You can now select multiple cards and move them together or (un|)assign them a label.