summaryrefslogtreecommitdiffstats
path: root/client/components/lists
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix missing profile checks.Lauri Ojansivu2019-05-093-12/+12
| | | | Thanks to justinr1234 !
* Fixed RTL issue #884Guy Zylberberg2019-05-081-1/+1
|
* Issue : Mobile UI Center cards in list view #2371hupptechnologies2019-04-231-0/+5
| | | | Resolved #2371
* Issue: Full width of lists and space before first list #2336hupp-mac-42019-04-181-3/+10
| | | | Resolved #2336
* list: do not use IntersectionObserver to reduce CPU usageBenjamin Tissoires2019-04-011-20/+30
| | | | | | | | | | | | | Switch back to a custom spinner detection, as the IntersectionObserver is eating a lot of CPU resources on idle. This should also take care of #2250 properly: the previous `onDestroyed()` was removing the resize and scroll callbacks, but they were not unique enough, and they were shared across swimlanes. So if a list had 2 swimlanes with spinners, when one was removed, the other was not triggering its callbacks anymore. Related: #2294
* - [Add back zoom fixes of #2250](https://github.com/wekan/wekan/issues/2250).Lauri Ojansivu2019-03-302-57/+51
| | | | Thanks to xet7 !
* Revert spinner etc fixes of Wekan v2.56, because of some new bugs.Lauri Ojansivu2019-03-292-51/+57
| | | | | | Thanks to gerroon ! Related #2250
* list: disconnect infinite-scroll observer to prevent memory leakBenjamin Tissoires2019-03-261-2/+6
|
* list: move the spinner into its own blaze componentBenjamin Tissoires2019-03-262-37/+47
| | | | | | | | | | This way, when a list is at the maximum number of cards shown and adding a new card would make the spinner appear, the list would load the next N items. This can happen if user A and B are both looking at the same board, B adds a new cards, and A will see the spinner and will not be able to remove it.
* list: make sure the spinner of infinite scrolling doesn't show on loadBenjamin Tissoires2019-03-261-3/+10
| | | | | | | | | | | When loading a board on a high resolution screen, there is a chance there is not enough cards displayed and the spinner is still there, spinning forever. Add an idle callback that checks if the spinner is still there, and while it is there, extend the number of cards to show. Fixes #2250
* list: simplify infinite scrollingBenjamin Tissoires2019-03-261-44/+17
| | | | | | Use IntersectionObserver instead of custom made one. This adds the benefit of not loading any extra cards if the list is not shown on screen
* Merge pull request #2270 from andresmanelli/fix_2266Lauri Ojansivu2019-03-211-1/+1
|\ | | | | Fix #2266
| * Fix #2266Andrés Manelli2019-03-181-1/+1
| |
* | - Fix card copy & move between boards with customFieldsAndrés Manelli2019-03-161-2/+2
|/ | | | | | - Fix card copy & move between boards with labels with same name - Fix activities for labels when copying and moving card - Fix activities for customFields when copying and moving card
* Fix card move with wrong swimlaneIdAndrés Manelli2019-03-051-1/+7
|
* Fix popup titleAndrés Manelli2019-02-272-0/+9
| | | | Add element title modification
* Standarize copy functions. Match labels by nameAndrés Manelli2019-02-271-9/+3
|
* Merge branch 'devel' into edgeLauri Ojansivu2019-02-271-16/+14
|\
| * Add the following new Sandstorm features and fixes:Lauri Ojansivu2019-02-271-10/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - All Boards page [so it's possible to go back from subtask board](https://github.com/wekan/wekan/issues/2082) - Board favorites - New Sandstorm board first user is Admin and [has IFTTT Rules](https://github.com/wekan/wekan/issues/2125) and Standalone Wekan Admin Panel. Probably some Admin Panel features do not work yet. Please keep backup of your grains before testig Admin Panel. - Linked Cards and Linked Boards. - Some not needed options like Logout etc have been hidden from top bar right menu. - [Import board now works. "Board not found" is not problem anymore](https://github.com/wekan/wekan/issues/1430), because you can go to All Boards page to change to imported board. and removes the following features: - Remove Welcome Board from Standalone Wekan, [to fix Welcome board not translated](https://github.com/wekan/wekan/issues/1601). Sandstorm Wekan does not have Welcome Board. Thanks to xet7 ! Closes #2125, closes #2082, closes #1430, closes #1601, related #2205, related #2070, related #1695, related #1192.
* | Removed console.log.Lauri Ojansivu2019-02-261-1/+0
| |
* | Fix list view issues. Allow creation of boards from templatesAndrés Manelli2019-02-252-22/+50
| |
* | Fix miniscreen renderAndrés Manelli2019-02-241-2/+2
| |
* | Fix lint errorsAndrés Manelli2019-02-241-40/+40
| |
* | Allow swimlane creation from templateAndrés Manelli2019-02-242-10/+14
| | | | | | | | Mix lists with same name to avoid duplicates
* | Allow list creation from templateAndrés Manelli2019-02-243-22/+61
| |
* | Allow card creation from templateAndrés Manelli2019-02-241-17/+18
| |
* | Prepare to create card from templateAndrés Manelli2019-02-242-7/+6
| |
* | Add template search in Add Card menuAndrés Manelli2019-02-242-31/+39
| | | | | | | | | | | | Archive all cards in list when list is archived Remove default board in link popup Only list non-template boards in card link and search
* | Avoid links on a template-boardAndrés Manelli2019-02-242-17/+36
| | | | | | | | | | 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-242-10/+16
|/ | | | | | Insert the correct template type in templates board Allow independant lists in templates board Add some helpers
* - Fix2: Remove overlap of side bar button with card/list menu button on ↵Lauri Ojansivu2019-02-131-0/+4
| | | | | | | | mobile browser Thanks to xet7 ! Closes #2183
* - When writing to minicard, press Shift-Enter on minicard to go to next line ↵Lauri Ojansivu2019-02-011-1/+1
| | | | | | | | below, to continue writing on same minicard 2nd line. Thanks to bentiss!
* Use infinite-scrolling on listsBenjamin Tissoires2019-02-013-1/+95
| | | | | | | | | | | This allows to reduce the loading time of a big board. Note that there is an infinite scroll implementation in the mixins, but this doesn't fit well as the cards in the list can have arbitrary height. The idea to rely on the visibility of a spinner is based on http://www.meteorpedia.com/read/Infinite_Scrolling
* lists-color: only colorize the bottom borderBenjamin Tissoires2019-01-252-4/+11
| | | | | And make the background clearer to visually separate the header from the list of cards
* ui: lists: make sure all lists boxes are the same heightBenjamin Tissoires2019-01-252-0/+6
| | | | | | | | When `Show card count` is enabled, the lists with the card counts have two lines of text while the lists without have only one. This results in the box around the list headers are not of the same size and this is visible when setting a color to the list.
* colors: add per list colorBenjamin Tissoires2019-01-253-1/+132
| | | | | | | | | Hamburger menu only. Note that I am definitively not responsible for the resulting Christmas tree. fixes #328
* client: lists headers: use padding instead of marginBenjamin Tissoires2019-01-251-4/+4
| | | | No visual changes but allows to set a background color to the list header.
* swimlane-view: have the swimlane header horizontalBenjamin Tissoires2019-01-241-1/+0
| | | | | | | This allows to use the header as a separator between swimlanes. This will be most useful when we can set the background color of these headers.
* Issue : UI feature suggestion: drag handles and long press #1772hupptechnologies2018-12-201-0/+7
| | | | Resolved #1772
* custom fields upgrade -- correctNunes Nelson2018-11-071-3/+3
|
* custom fields upgradeNunes Nelson2018-11-051-0/+10
|
* - Hide Linked Card and Linked Board on Sandstorm, because they are onlyLauri Ojansivu2018-11-031-8/+10
| | | | | | | useful when having multiple boards, and at Sandstorm there is only one board per grain. Thanks to ocdtrekkie and xet7. Closes #1982
* UI: lists: only output the number of cards for each swimlaneBenjamin Tissoires2018-10-252-1/+11
|
* UI: list headers: show the card count smallerBenjamin Tissoires2018-10-251-3/+2
| | | | | | The card count was at the same level than the title, which made reading the list title harder. Use the quiet and small class to put it in the following line and not make it jump out of the screen
* Fix #1885Andrés Manelli2018-09-121-4/+30
|
* Fix #1887Andrés Manelli2018-09-121-0/+1
|
* Fix and improve linked cardsAndrés Manelli2018-08-212-7/+8
|
* Refactor imported -> linked in componentsAndrés Manelli2018-08-113-22/+22
|
* Fix lint errorsAndrés Manelli2018-08-111-1/+1
|
* Avoid reimport imported cardAndrés Manelli2018-08-111-1/+2
|