summaryrefslogtreecommitdiffstats
path: root/client/components/swimlanes
Commit message (Collapse)AuthorAgeFilesLines
* Fix condition whether a card is in listMarc Hartmayer2020-06-091-9/+1
| | | | | | | This fixes the issues https://github.com/wekan/wekan/issues/3164, https://github.com/wekan/wekan/issues/3162, and https://github.com/wekan/wekan/issues/3163. While at it, remove now useless comments.
* Default view Swimlanes part 2.Lauri Ojansivu2020-06-081-5/+6
| | | | Thanks to xet7 !
* Use markdown in Swimlane titles.Lauri Ojansivu2020-06-081-1/+2
| | | | Thanks to xet7 !
* Change default view to Swimlanes.Lauri Ojansivu2020-06-081-2/+9
| | | | Thanks to xet7 !
* Fix move selectionMarc Hartmayer2020-05-251-1/+1
| | | | This fixes https://github.com/wekan/wekan/issues/3119.
* Don't interpret dragging an element as a clickMarc Hartmayer2020-04-251-4/+1
| | | | Remove `enableClickOnTouch` as this behavior is not intuitive.
* Make it compatible with newer and older versions of jQuery sortableMarc Hartmayer2020-04-251-1/+1
| | | | While at it, fix comments and prettify it.
* Fix drag-and-drop and scrolling on mobile devicesMarc Hartmayer2020-04-231-5/+4
| | | | | | | | | | | | | Use drag handles on "miniscreens" whenever useful, this is especially useful on mobile device. This should hopefully fix https://github.com/wekan/wekan/issues/2947. While at it, simplify the condition Utils.isMiniScreen() || (!Utils.isMiniScreen() && showDesktopDragHandles) to Utils.isMiniScreen() || showDesktopDragHandle
* Newer versions of jQuery sortable use `uiSortable` keyMarc Hartmayer2020-04-231-24/+2
| | | | | Newer versions of jQuery sortable use `uiSortable` as key to store the data. Let's adapt the code. While at it, refactor the code.
* Try to disable dragging Swimlanes/Lists/Cards/Checklists/Subtasks on small ↵Lauri Ojansivu2020-02-071-10/+23
| | | | | | mobile smartphones webbrowsers, and hide drag handles on mobile web. Thanks to xet7 !
* Add Worker role.Lauri Ojansivu2020-01-052-18/+30
| | | | | | | | | | This was originally added at Wekan v3.58, reverted at Wekan v3.60 because of bugs, and now after fixes added back. Thanks to xet7 ! Closes #2788
* Revert to Wekan v3.57 version of client and models directories,Lauri Ojansivu2020-01-031-17/+16
| | | | | | | removing Worker role temporarily, because Worker role changes broke saving card. Thanks to xet7 !
* Add Worker role.Lauri Ojansivu2020-01-033-36/+29
| | | | | | | | | Add more Font Awesome icons. Fix browser console errors when editing user profile name etc. Thanks to xet7 ! Closes #2788
* Remove 1st implementation of collapse swimlanes. I will do itLauri Ojansivu2019-11-292-40/+0
| | | | | | differently in next 2nd implementation. Thanks to xet7 !
* Fix lint errors.Lauri Ojansivu2019-11-262-30/+24
|
* Fix lint errors.Lauri Ojansivu2019-11-201-24/+20
|
* Use database when logged in. Continued.Lauri Ojansivu2019-11-191-2/+4
| | | | Thanks to xet7 !
* When logged in, use database for setting, so that changes areLauri Ojansivu2019-11-194-34/+73
| | | | | | | immediate. Only on public board use cookies. Comment out Collapse CSS that is not in use. Thanks to xet7 !
* New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.Lauri Ojansivu2019-11-183-26/+63
| | | | | | | | | | | | | | | | | | | | New feature, not set visible yet, because switching to it does not work properly yet: Collapsible Swimlanes #2804 Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and reload webbrowser page, it can change view. Closes #2311 Fix: List sorting commented out. Closes #2800 Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile, FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using cookies instead of database. More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955 Note: Cookie changes are not always immediate, if there is no effect, you may need to reload webbrowser page. Closes #2643 . Thanks to xet7 !
* Fix prettier.Lauri Ojansivu2019-11-171-3/+3
|
* Fix prettier.Lauri Ojansivu2019-11-171-4/+4
|
* Fix prettify.Lauri Ojansivu2019-11-171-4/+4
|
* Swimlanes collapsed by default.Lauri Ojansivu2019-11-173-27/+80
| | | | | | | | | TODO: - Add count. - Move list names to top, if possible. I did not get it working yet. - Try to fit collapse+swimlane name etc at same row. Related #2804
* Remove swimlane handle at desktop non-handle mode.Lauri Ojansivu2019-11-171-2/+0
|
* Fix card, list and swimlane move.Lauri Ojansivu2019-11-132-16/+22
| | | | | | | | | Allow moving cards in multiselect mode. Closes #2771, closes #2743, closes #2704, related #2081
* Fix desktop swimlane drag handle position.Lauri Ojansivu2019-11-041-1/+1
| | | | | | Thanks to xet7 ! Related #2081
* Some drag handle fixes.Lauri Ojansivu2019-11-042-3/+14
| | | | | | Thanks to xet7 ! Related #2081
* Revert creating new list to left, now creates again to right. Thanks to ↵Lauri Ojansivu2019-10-301-8/+8
| | | | | | | | whowillcare ! Revert New List item moved from right to left. Thanks to derbolle and xet7 ! Closes #2772
* Add Feature: allow user to sort Lists in Board by his own preference, ↵Sam X. Chen2019-10-182-1/+6
| | | | boardadmin can star list
* Add Features: allowing lists to be sorted by modifiedAt when not in ↵Sam X. Chen2019-10-102-39/+13
| | | | draggable mode
* Drag handles. In Progress.Lauri Ojansivu2019-09-174-8/+64
|
* Revert drag handle changes.Lauri Ojansivu2019-09-143-12/+2
| | | | | | Thanks to Keelan ! Related #2704
* Mobile and Desktop drag handles part 1.Lauri Ojansivu2019-09-133-2/+12
| | | | | | Thanks to xet7 ! Related #2081
* Add 'show archive' and 'hide empty lists' in filter feature.Romulus Urakagi Tsai2019-08-072-1/+20
|
* Prevent isCommentOnly user adding attachments, editing list names, moving lists,Lauri Ojansivu2019-07-241-4/+8
| | | | | | | | | | and seeing board settings menu. Show non-editable Custom Fields to isCommentOnly user. Thanks to xet7 ! Closes wekan/wekan-snap#97, closes #2416, closes #2255
* Prettier & eslint project style updateJustin Reynolds2019-06-282-110/+163
|
* Fix missing profile checksJustin Reynolds2019-05-081-1/+1
|
* remove featureguillaume2019-04-231-0/+4
|
* Fix miniscreen renderAndrés Manelli2019-02-242-13/+15
|
* Allow swimlane creation from templateAndrés Manelli2019-02-243-4/+10
| | | | Mix lists with same name to avoid duplicates
* Allow list creation from templateAndrés Manelli2019-02-243-4/+18
|
* Avoid links on a template-boardAndrés Manelli2019-02-242-10/+16
| | | | | Allow creation of template boards with a linked card Avoid changing the name of the template-container swimlanes
* Remove links from templates board for the momentAndrés Manelli2019-02-243-0/+16
| | | | | | Insert the correct template type in templates board Allow independant lists in templates board Add some helpers
* Save template swimlanes in profile. Fix swimlane view for templates board. ↵Andrés Manelli2019-02-241-3/+4
| | | | Avoid deleting template containers
* Fix swimlanes sortingBenjamin Tissoires2019-02-081-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 7cc185ac "Properly fix horizontal rendering on Chrome and Firefox" The rendering of the new design of the swimlanes was correct, but this commit broke the reordering capability. Having the swimlane header at the same level than the lists of cards makes the whole sortable pattern fail. 2 solutions: - revert to only have 1 div per swimlane. But this introduces the firefox bug mentioned in 7cc185ac, so not ideal - force the sortable pattern to do what we want. To force the sortable pattern, we need: - add in the helper a clone of the list of cards (to not just move the header) - make sure the placeholder never get placed between the header and the list of cards in a swimlane - fix the finding of the next and previous list of cards. For all of this to be successful, we need to resize the swimlanes to a known value. This can lead to some visual jumps with scrolling when you drag or drop the swimlanea. I tried to remedy that by computing the new scroll value. Still not ideal however, as there are still some jumps when dropping. Fixes #2159
* - Fix Sandstorm open card on public board, part 2.Lauri Ojansivu2019-02-031-2/+0
| | | | Thanks to ChronikEwok !
* - [Fix: Not displaying card content of public board: Snap, Docker and ↵Lauri Ojansivu2019-02-031-5/+11
| | | | | | | | | | | Sandstorm Shared Wekan Board Link](https://github.com/wekan/wekan/issues/1623) with [code from ChronikEwok](https://github.com/ChronikEwok/wekan/commit/cad9b20451bb6149bfb527a99b5001873b06c3de). Thanks to ChronikEwok ! Closes #1623
* make the max height of the swimlane not too bigBenjamin Tissoires2019-01-281-1/+1
| | | | We should take a full screen minus the header height
* Properly fix horizontal rendering on Chrome and FirefoxBenjamin Tissoires2019-01-282-26/+15
| | | | | | | | | | | | | | | | | | | This reverts commit 74cf9e2573 "- Fix Firefox left-rigth scrollbar." This reverts commit 9dd8216dfb. "- Fix cards below swimlane title in Firefox by making [previous fix](https://github.com/wekan/wekan/pull/2132/commits/f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb)" And this partially reverts commit dd88eb4cc The root of the issue was that I was adding a new div and nesting the list of lists in this new list. This resulted in some weird behavior that Firefox could not handled properly Revert to a code colser to v2.02, by just having the swimlane header in a separate line, and keep only one flex element. fixes #2137
* - Fix Firefox left-rigth scrollbar.Lauri Ojansivu2019-01-281-1/+5
| | | | | | Thanks to xet7 ! Closes #2137