summaryrefslogtreecommitdiffstats
path: root/client/components/cards
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix attachments downloadingMaxime Quandalle2015-09-022-4/+7
| | | | | Fixes #219 Fixes #256
* 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-011-14/+17
|
* Fix the horizontal canvas scrolling on card openingMaxime Quandalle2015-08-311-5/+25
|
* 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
|
* Replace the component bounded `cachedValue` by a global `UnsavedEdits`Maxime Quandalle2015-08-312-7/+40
| | | | | | | | 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-304-27/+20
|
* Hide feature non-member users can't useMaxime Quandalle2015-08-281-10/+7
| | | | | 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
* Yet another iteration on the user interfaceMaxime Quandalle2015-08-284-16/+33
| | | | | | | | | | | | * 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
* More explicit file namesMaxime Quandalle2015-08-283-0/+0
|
* Display keyboard shortcuts on a modalMaxime Quandalle2015-08-281-1/+1
| | | | Fixes #241
* 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-251-5/+4
| | | | | | | | | | | | 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.
* Switch the font to robotoMaxime Quandalle2015-08-203-13/+8
|
* profile name changed fullname and comma hotfix.Yasar icli2015-07-181-1/+1
|
* Allow a user to edit its profile or avatar from a member popoverMaxime Quandalle2015-06-192-3/+3
| | | | | | | 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-171-0/+1
| | | | | | | | 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 #196Maxime Quandalle2015-06-162-10/+6
|
* Fix #199Maxime Quandalle2015-06-164-62/+80
|
* Fix card attachmentsMaxime Quandalle2015-06-135-207/+97
| | | | Closes #192.
* Work on the card activities and commentsMaxime Quandalle2015-06-1211-438/+231
| | | | | | | | | 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-113-12/+18
| | | | Closes #184
* Re-factor the avatar system and support avatar uploadsMaxime Quandalle2015-06-094-8/+8
| | | | | | | | | | | | | | | 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-075-73/+38
|
* Remove modal componentMaxime Quandalle2015-06-071-4/+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-071-0/+8
| | | | | | 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.
* Improve the card details pane overlay interactionsMaxime Quandalle2015-06-061-6/+0
|
* Start designing the card details paneMaxime Quandalle2015-06-058-256/+213
| | | | Implement a dynamic overflow to focus sight on the pane.
* Dissable temporarily the cache value of inlinedFormMaxime Quandalle2015-06-041-1/+1
| | | | | Due to bug https://github.com/peerlibrary/meteor-blaze-components/issues/50
* Implement multi-selectionMaxime Quandalle2015-05-306-90/+107
| | | | | | 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-274-63/+43
| | | | | | | | | | | | | | | | | | * 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.
* Implement a new system to handle "escape actions"Maxime Quandalle2015-05-261-1/+2
| | | | | | | | 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.
* Improve scrollingMaxime Quandalle2015-05-242-6/+16
| | | | | | | | | | | | 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-245-105/+106
| | | | | | | | | | | | | | 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.
* Fix new list formMaxime Quandalle2015-05-141-40/+40
| | | | Fixes #157.
* Style tweaksMaxime Quandalle2015-05-141-4/+4
| | | | Follows strictly jshint and jscs rules.
* RenaissanceMaxime Quandalle2015-05-1210-0/+1326
_,,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