summaryrefslogtreecommitdiffstats
path: root/client/components/users
Commit message (Collapse)AuthorAgeFilesLines
...
* New option to set up minimum limit to show cards count for each list in boardMario Orlicky2016-11-252-0/+16
|
* Merge pull request #19 from mario-orlicky/hide-system-messagesLauri Ojansivu2016-11-202-4/+26
|\ | | | | New change settings option and possibility to hide system messagaes
| * Fixed buildMario Orlicky2016-11-191-2/+2
| |
| * New change settings option and possibility to hide system messagaesMario Orlicky2016-11-192-4/+26
| |
* | fixed indentationMario Orlicky2016-11-181-1/+1
| |
* | Display message when user wants to choose existing username (Fixes: #16)Mario Orlicky2016-11-182-4/+13
|/
* UI: Center text in the avatars (#581)Alexander Sulfrian2016-04-211-1/+1
|
* Bugfix, and optimize icon for notificationfloatinghotpot2016-01-081-1/+1
|
* Add notification, allow watch boards / lists / cardsLiming Xie2016-01-052-0/+38
|
* Remove unnecessary template name declarationMaxime Quandalle2016-01-031-4/+0
| | | | | | This code was duplicate with the name we use to `register` the component. A update of blaze-component removed the need to duplicate this declaration.
* 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 avatar support on SanstormMaxime Quandalle2015-12-301-2/+2
| | | | | | | | | | The bug comes for 9154b06 which this commit partially reverts. The synchronization between the user document profile and the Sandstorm HTTP headers is still not perfect. Having a clean model may requires the `accounts-sandstorm` to expose a hook to modify the user document just after the `services.sandstorm` credentials are updated. Fixes #460
* Optimize login form layout & cssfloatinghotpot2015-12-281-58/+62
| | | | Fixes #448
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-172-3/+34
|
* Merge pull request #411 from floatinghotpot/patch-4Maxime Quandalle2015-12-071-0/+10
|\ | | | | add: set user preferred lang and allow select lang for user form
| * add: use user preferred lang for user form, and allow selectingfloatinghotpot2015-12-071-0/+10
| |
* | add: invite user via email, invited user can accept or decline, allow member ↵floatinghotpot2015-12-072-1/+8
|/ | | | to quit
* Fix some bugs introduced in aa974aaMaxime Quandalle2015-10-291-1/+1
| | | | | Yes Wekan need some tests. Yes I need to stop refactoring my code when I’m halp-sleeping in my bed at 4am.
* 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()`.
* 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
* Upgrade kenton:accounts-sandstorm package to 0.1.6Maxime Quandalle2015-10-211-2/+2
| | | | | We now delegates more user attributes sync (avatar and permissions) to this package instead of doing it ourselves.
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-18/+4
| | | | | | | | | | | | | | | 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 some dead linksMaxime Quandalle2015-09-061-1/+1
| | | | | | | | | | 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
* Show avatars in search resultsMaxime Quandalle2015-09-061-1/+7
| | | | 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 member permission modificationMaxime Quandalle2015-09-051-0/+1
| | | | 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-032-84/+83
| | | | | | | | | 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).
* Update translation source fileMaxime Quandalle2015-09-012-13/+12
|
* Increase the avatar max size and show an error if it is too bigMaxime Quandalle2015-08-282-15/+32
| | | | Fixes #190
* Call me WekanMaxime Quandalle2015-08-281-4/+1
| | | | | | Thank you @neynah for the Wekan icons Closes #247
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-231-15/+0
| | | | | | | | | | | | | | | | | | | 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.
* 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.
* Switch the font to robotoMaxime Quandalle2015-08-201-0/+4
|
* profile name changed fullname and comma hotfix.Yasar icli2015-07-181-2/+2
|
* Allow a user to edit its profile or avatar from a member popoverMaxime Quandalle2015-06-194-41/+61
| | | | | | | 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.
* Work on the card activities and commentsMaxime Quandalle2015-06-122-4/+55
| | | | | | | | | 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-111-1/+0
| | | | Closes #184
* (Re-)implement default avatar using user initialsMaxime Quandalle2015-06-103-19/+48
| | | | | 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.
* Re-factor the avatar system and support avatar uploadsMaxime Quandalle2015-06-095-129/+107
| | | | | | | | | | | | | | | 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-071-3/+3
| | | | | | 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.
* Start designing the card details paneMaxime Quandalle2015-06-052-2/+8
| | | | Implement a dynamic overflow to focus sight on the pane.
* Work on the user account systemMaxime Quandalle2015-06-034-75/+136
| | | | | | | | Allow a user to modifies its name, username, initials, and password. Fixes username handling on sandstorm. Fixes #149.
* Implement presence indicatorsMaxime Quandalle2015-05-3011-97/+84
|
* UI improvementsMaxime Quandalle2015-05-271-12/+8
| | | | | | | | | | | | | | | | | | * Implement visibility choice on board creation; * Rework the board header bar. Remove links to un-implemented features; * Implement a board star counter (visible if the board have >2 stars); * Define a new icon (a thin cross) to close elements; * Remove $(document).on('mouseover') event handlers that were basically fired hundreds of times for nothing, we now define a proper Tracker dependency to execute jquery-ui plugin initialization only when something has changed; * Bug fixes related to list scrolling.
* Upgrade the useraccount system that support autofocusMaxime Quandalle2015-05-181-6/+0
| | | | v1.10.0 fixes https://github.com/meteor-useraccounts/core/issues/384
* RenaissanceMaxime Quandalle2015-05-129-0/+429
_,,ad8888888888bba,_ ,ad88888I888888888888888ba, ,88888888I88888888888888888888a, ,d888888888I8888888888888888888888b, d88888PP"""" ""YY88888888888888888888b, ,d88"'__,,--------,,,,.;ZZZY8888888888888, ,8IIl'" ;;l"ZZZIII8888888888, ,I88l;' ;lZZZZZ888III8888888, ,II88Zl;. ;llZZZZZ888888I888888, ,II888Zl;. .;;;;;lllZZZ888888I8888b ,II8888Z;; `;;;;;''llZZ8888888I8888, II88888Z;' .;lZZZ8888888I888b II88888Z; _,aaa, .,aaaaa,__.l;llZZZ88888888I888 II88888IZZZZZZZZZ, .ZZZZZZZZZZZZZZ;llZZ88888888I888, II88888IZZ<'(@@>Z| |ZZZ<'(@@>ZZZZ;;llZZ888888888I88I ,II88888; `""" ;| |ZZ; `""" ;;llZ8888888888I888 II888888l `;; .;llZZ8888888888I888, ,II888888Z; ;;; .;;llZZZ8888888888I888I III888888Zl; .., `;; ,;;lllZZZ88888888888I888 II88888888Z;;...;(_ _) ,;;;llZZZZ88888888888I888, II88888888Zl;;;;;' `--'Z;. .,;;;;llZZZZ88888888888I888b ]I888888888Z;;;;' ";llllll;..;;;lllZZZZ88888888888I8888, II888888888Zl.;;"Y88bd888P";;,..;lllZZZZZ88888888888I8888I II8888888888Zl;.; `"PPP";;;,..;lllZZZZZZZ88888888888I88888 II888888888888Zl;;. `;;;l;;;;lllZZZZZZZZW88888888888I88888 `II8888888888888Zl;. ,;;lllZZZZZZZZWMZ88888888888I88888 II8888888888888888ZbaalllZZZZZZZZZWWMZZZ8888888888I888888, `II88888888888888888b"WWZZZZZWWWMMZZZZZZI888888888I888888b `II88888888888888888;ZZMMMMMMZZZZZZZZllI888888888I8888888 `II8888888888888888 `;lZZZZZZZZZZZlllll888888888I8888888, II8888888888888888, `;lllZZZZllllll;;.Y88888888I8888888b, ,II8888888888888888b .;;lllllll;;;.;..88888888I88888888b, II888888888888888PZI;. .`;;;.;;;..; ...88888888I8888888888, II888888888888PZ;;';;. ;. .;. .;. .. Y8888888I88888888888b, ,II888888888PZ;;' `8888888I8888888888888b, II888888888' 888888I8888888888888888 ,II888888888 ,888888I8888888888888888 ,d88888888888 d888888I8888888888ZZZZZZ ,ad888888888888I 8888888I8888ZZZZZZZZZZZZ 888888888888888' 888888IZZZZZZZZZZZZZZZZZ 8888888888P'8P' Y888ZZZZZZZZZZZZZZZZZZZZ 888888888, " ,ZZZZZZZZZZZZZZZZZZZZZZZ 8888888888, ,ZZZZZZZZZZZZZZZZZZZZZZZZZZ 888888888888a, _ ,ZZZZZZZZZZZZZZZZZZZZ88888888 888888888888888ba,_d' ,ZZZZZZZZZZZZZZZZZ8888888888888 8888888888888888888888bbbaaa,,,______,ZZZZZZZZZZZZZZZ88888888888888888 88888888888888888888888888888888888ZZZZZZZZZZZZZZZ88888888888888888888 8888888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888 888888888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888888888 8888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888 88888888888888888888888888888ZZZZZZZZZZZZZZ888888888888888888888888888 8888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888 Normand 8 88888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888 Veilleux 8 8888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888888888