summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar/sidebar.js
Commit message (Collapse)AuthorAgeFilesLines
* resolving merge conflictsIgnatzHome2018-05-171-0/+1
|\
| * dropdown itemsPouyan Savoli2017-09-221-1/+1
| |
| * many custom fields model and UI enhancementsPouyan Savoli2017-09-221-1/+1
| |
| * Create custom fields creation UI added to Board Menu, Model in progressPouyan Savoli2017-09-221-0/+1
| |
* | Fix lint warningsGhassen Rjab2018-02-271-1/+1
| |
* | Add search sidebarGhassen Rjab2018-02-231-0/+1
| |
* | user can now leave the boardamadilsons2017-10-091-6/+10
|/
* fix understood syntaxRyan Helsing2017-03-191-2/+2
|
* dont show list optionsRyan Helsing2017-03-181-1/+0
|
* ability to store comment only, actual prevention nextRyan Helsing2017-03-181-3/+25
|
* removed trailing-whitespaceJoel Louzado2017-02-151-1/+1
|
* Added dynamic tooltip for sidebar tongueJoel Louzado2017-02-151-0/+7
|
* Merge branch 'feature/link-to-shortcuts' of ↵Lauri Ojansivu2017-02-101-0/+3
|\ | | | | | | https://github.com/AlexanderS/wekan into AlexanderS-feature/link-to-shortcuts
| * UI: Add link to keyboard shortcutsAlexander Sulfrian2016-04-251-0/+3
| |
* | Merge branch 'fix-quit-board' of https://github.com/umbertooo/wekan into ↵Lauri Ojansivu2017-02-101-2/+2
|\ \ | | | | | | | | | umbertooo-fix-quit-board
| * | Method 'quitBoard' requires boardId but got boardFelix Michels2016-10-261-2/+2
| |/
* / powerbox identity requestsDavid Renshaw2016-11-031-0/+3
|/
* Remove unnecessary template name declarationMaxime Quandalle2016-01-031-8/+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 card infinite scrolling on card activitiesMaxime Quandalle2016-01-031-3/+1
| | | | | | | | I imagine blaze-component changed their Mixins API since I written this code. We need some tests to avoid this kind of regressions when updating dependencies! Fixes #420
* Fix drag and drop on SandstormMaxime Quandalle2015-12-301-4/+10
| | | | | | | | | | | | | | This bug was introduced with the introduction of fast-render in 41b23f8. With fast-render data is available instantly after the page logging, but calls to `Meteor.userId()` still return `null` as the user isn't authenticated on the DDP channel yet (previously the data was loaded on DDP after user authentication). Which mean that we know need to reactively activate Drag and Drop on user log in. I'm not sure why I was not able to reproduce this bug outside of Sandstorm. Fixes #453
* Unassign members before removing them from a boardMaxime Quandalle2015-12-211-2/+5
| | | | Closes #399
* add: support compact mode for mobile web, auto adapt to small screen/windowLiming Xie2015-12-171-1/+3
|
* bugfix: only care active members, also optimize some codefloatinghotpot2015-12-081-8/+4
|
* add: invite user via email, invited user can accept or decline, allow member ↵floatinghotpot2015-12-071-15/+94
| | | | to quit
* Finish the minicard editor auto-completion featureMaxime Quandalle2015-11-081-1/+1
| | | | | | | | | | | This commit stands on the initial support implemented in #342. We now avoid error-prone parsing step by adding the member or the label directly to the card object. We also added support for `Tab` to completion on our textComplete component. Closes #342
* Prefer ES5 methods over underscore utilitiesMaxime Quandalle2015-10-221-2/+2
| | | | | | | | | | | | | | 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 peerlibrary:blaze-components to v0.14Maxime Quandalle2015-10-211-1/+1
| | | | | This change includes method renames and others UI related packages updates.
* Fix removeMemberPopupAlexander Sulfrian2015-09-201-0/+9
| | | | | The removeMemberPopup was missing the required helper to get the user and board information and the user profile field is called "fullname" and not "name".
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-42/+5
| | | | | | | | | | | | | | | 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-3/+3
|
* Fix member permission modificationMaxime Quandalle2015-09-051-5/+8
| | | | Fixes #280
* Enforce a consistent ES6 coding styleMaxime Quandalle2015-09-031-95/+99
| | | | | | | | | 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).
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-281-0/+4
| | | | | | | | | | | | * 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
* Close the Popup when all escape actions are executedMaxime Quandalle2015-08-231-1/+1
|
* Start the migration from iron-router to flow-routerMaxime Quandalle2015-08-231-1/+1
| | | | | | | | | | | | | | | | | | | 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.
* Fix some sidebar bugsMaxime Quandalle2015-06-161-36/+44
|
* Close "over elements" when opening the filter viewMaxime Quandalle2015-06-131-1/+5
|
* Add a UI to restore archived cardsMaxime Quandalle2015-06-071-1/+2
|
* Click on the page to escape the last actionMaxime Quandalle2015-06-071-1/+1
| | | | | | 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-061-0/+111
|
* Implement multi-selectionMaxime Quandalle2015-05-301-5/+20
| | | | | | 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.
* UI improvementsMaxime Quandalle2015-05-271-10/+26
| | | | | | | | | | | | | | | | | | * 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.
* Prioritize escape actions with a label hierarchy instead of an integerMaxime Quandalle2015-05-271-1/+1
|
* Implement a new system to handle "escape actions"Maxime Quandalle2015-05-261-1/+28
| | | | | | | | The new EscapeActions object decide what to do when the user press the Escape key (such as closing a opened popup or inlined form). This commit also re-introduced the sidebar current view as a sidebar component local state.
* Upgrade sandstorm integrationMaxime Quandalle2015-05-261-1/+1
| | | | | | | | | | | | Both sandstorm and LibreBoard have significantly evolved since the last release of LibreBoard on sandstorm. This commit: * adds some more attributes on the sandstorm manifest * introduces support with the sandstorm sharing box * uses a server redirection to point to the board document * hides the top shortcut bar on sandstorm Fixes #163.
* Improve scrollingMaxime Quandalle2015-05-241-3/+23
| | | | | | | | | | | | We now replace native scrollbar by custom ones on the list card (which is required by the new ergonomics in the parent commit), but the "scrolling engine", is still native, we just hide the scrollbar and draw our own in HTML/CSS using the perfect-scrollbar package (from bower). This commit also implements component scrolling when certain actions are performed, eg scroll to the bottom when the new card composer is opened.
* Experiment new ergonomics to interact with card detailsMaxime Quandalle2015-05-241-1/+2
| | | | | | | | | | | | | | The idea is that by displaying card details in a sidebar stuck on the right of the screen, the mouse had to travel too much before interacting with it. I also don’t want to use the Trello solution (modal) on big screens, because I like the ability to interact with the selected card and with the board at the same time (like in a e-mail client). The solution introduced in this commit consist of opening the card detail in a column next to the minicard list. This commit also fix right sidebar members and labels drag and drop.
* RenaissanceMaxime Quandalle2015-05-121-0/+55
_,,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