f0b1f0e5b6
feat(ui): pass search term as-is to query
...
The images service does not add the query filter if the search term is an empty string.
2024-07-01 20:06:28 +10:00
20d5c3a8bf
(ui): improve loader/fetching state while searching, make search term a string in redux
2024-07-01 20:06:28 +10:00
da05034e20
feat(ui): debounced gallery search
2024-07-01 20:06:28 +10:00
10076fb1e8
feat(ui): tweak gallery settings popover divider styling
2024-06-28 18:01:01 +10:00
d6e85e5f67
tidy(ui): rename GalleryBulkSelect -> GallerySelectionCountTag
2024-06-28 18:01:01 +10:00
1ce459198c
chore(ui): knip
2024-06-28 18:01:01 +10:00
17d337169d
fix(ui): do not reset limit when changing gallery view
2024-06-28 18:01:01 +10:00
1468f4d37e
perf(ui): split out gallery settings popover components
...
This was taking over 15ms (!) to render each time a setting changed, wtf
2024-06-28 18:01:01 +10:00
2b744480d6
feat(ui): update UI for sorting
2024-06-28 18:01:01 +10:00
abb8d34b56
chore(ui): typegen
2024-06-28 18:01:01 +10:00
6109a06f04
feat(ui): gallery sort by created at or starred, asc or desc
2024-06-28 18:01:01 +10:00
0d4b80780b
feat(ui): handle edge cases when archiving/deleting boards
...
If the currently selected or auto-add board is archived or deleted, we should reset them. There are some edge cases taht weren't handled in the previous implementation.
All handling of this logic is moved to the (renamed) listener.
2024-06-28 10:36:05 +10:00
15b9ece411
chore(ui): typegen
2024-06-28 10:36:05 +10:00
b5f23292d4
lint fix
2024-06-28 10:36:05 +10:00
740bf80f3e
(ui): update query param to include_archived, fix cache when archiving boards
2024-06-28 10:36:05 +10:00
dc90de600d
(ui) allow auto-add on archived boards, reset to uncategorized if auto-add board is not currently visible due to archived view
2024-06-28 10:36:05 +10:00
5709f82e5f
feat(ui): separate context menu for no board board
...
Much easier to not need to handle the board being optional in the component.
2024-06-28 10:36:05 +10:00
20042d99ec
tidy(ui): archived icon component
2024-06-28 10:36:05 +10:00
8fce168dc5
fix tsc errors
2024-06-28 10:36:05 +10:00
29eb3c8b62
lint fix
2024-06-28 10:36:05 +10:00
071e8bcee4
feat(ui): make archiving and auto-add mutually exclusive
2024-06-28 10:36:05 +10:00
68c0aa898f
feat(ui): add ability to archive/unarchive boards, add toggle to gallery settings to show/hide archived boards in list
2024-06-28 10:36:05 +10:00
a0a0c57789
chore(ui): knip
2024-06-27 13:48:40 +10:00
32ebf82d1a
feat(ui): better pagination buttons
2024-06-27 13:48:40 +10:00
2dd172c2c6
feat(ui): gallery bulk select styling
2024-06-27 13:48:40 +10:00
280ec9d4b3
fix(ui): invalidate getImageDTO caches when images are mutated
2024-06-27 13:48:40 +10:00
fde8fc7575
perf(ui): optimistic updates for getImageDTO query cache
2024-06-27 13:48:40 +10:00
6dcdc87eb1
fix(ui): control adapter image preview
2024-06-27 13:48:40 +10:00
93ffcb642e
lint fix
2024-06-27 13:48:40 +10:00
4c914ef2e8
use correct query params for boardIdSelected listener
2024-06-27 13:48:40 +10:00
c0ad5bc4a4
fix when deleting first image in list
2024-06-27 13:48:40 +10:00
8c58a180de
GG another fix
2024-06-27 13:48:40 +10:00
715dd983b0
appease the knip
2024-06-27 13:48:40 +10:00
84ffd36071
lint fix
2024-06-27 13:48:40 +10:00
9f30f1bfec
fix circular dep
2024-06-27 13:48:40 +10:00
bdff5c4e87
only show selected when greater than 0
2024-06-27 13:48:40 +10:00
afb0651f91
clear selection when board or gallery view changes
2024-06-27 13:48:40 +10:00
66e25628c3
fix neg pages
2024-06-27 13:48:40 +10:00
3a531a3c88
remove rest of cache, add bulk select UI
2024-06-27 13:48:40 +10:00
f01df49128
lint fix
2024-06-27 13:48:40 +10:00
7bbe236107
implmenet custom sort to replace images adapter logic
2024-06-27 13:48:40 +10:00
719c066ac4
feat(ui): more efficient board totals fetching
...
We only need to show the totals in the tooltip. Tooltips accpet a component for the tooltip label. The component isn't rendered until the tooltip is triggered.
Move the board total fetching into a tooltip component for the boards. Now we only fire these requests when the user mouses over the board
2024-06-27 13:48:40 +10:00
689dc30f87
feat(ui): tweak pagination buttons
...
- Fix off-by-one error when going to last page
- Update component to have minimal/no layout shift
2024-06-27 13:48:40 +10:00
1f22f6ae02
feat(ui): iterate on dynamic gallery limit
...
- Simplify the gallery layout
- Set an initial gallery limit to load _some_ images immediately.
- Refactor the resize observer to use the actual rendered image component to calculate the number of images per row/col. This prevents inaccuracies caused by image padding that could result in the wrong number of images.
- Debounce the limit update to not thrash teh API
- Use absolute positioning trick to ensure the gallery container is always exactly the right size
- Minimum of `imagesPerRow` images loaded at all times
2024-06-27 13:48:40 +10:00
9c931d9ca0
fix(ui): gallery content overflow
...
This is one of those unexpected CSS quirks. Flex containers need min-width or min-height for their children to not overflow. Add `minH={0}` to gallery container.
2024-06-27 13:48:40 +10:00
e0a241fa4f
wip change limit based on size of gallery
2024-06-27 13:48:40 +10:00
6a4b4ee340
trying to invalidate all the tags
2024-06-27 13:48:40 +10:00
488bf21925
fix single pagers
2024-06-27 13:48:40 +10:00
c9c39c02b6
handle generations coming in, fix pagination to use total from list query so it updates as that changes
2024-06-27 13:48:40 +10:00
5101dc4bef
some cleanup, add page buttons
2024-06-27 13:48:40 +10:00