Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the Assets Tree flat #12134

Merged
merged 35 commits into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2ca5ce4
Fixes
MrFlashAccount Jan 24, 2025
3085402
Fix input
MrFlashAccount Jan 24, 2025
aa4acb3
Fix styling
MrFlashAccount Jan 24, 2025
b94f1d7
Remove console.log
MrFlashAccount Jan 24, 2025
6e97217
Draft breadcrumbs in topbar
MrFlashAccount Jan 27, 2025
4539565
Flat structure
MrFlashAccount Jan 28, 2025
fc1409c
Next iteration
MrFlashAccount Feb 6, 2025
040fb1f
Flat assets tree
MrFlashAccount Feb 18, 2025
a776768
Fix lint
MrFlashAccount Feb 19, 2025
f35af18
Simplified view x2
MrFlashAccount Feb 20, 2025
0732451
Display error on move
MrFlashAccount Feb 20, 2025
b4d1ce2
Fix error messages
MrFlashAccount Feb 20, 2025
f51c570
Fix nav
MrFlashAccount Feb 24, 2025
89e33bb
Fixes
MrFlashAccount Feb 24, 2025
f1d4ad2
Fix local folders
MrFlashAccount Feb 24, 2025
a802e84
Fix Bazel on NixOS
somebody1234 Jan 16, 2025
094e060
Fix invalidation when adding user to team
somebody1234 Feb 25, 2025
9809de5
Make Datalink row draggable
somebody1234 Feb 25, 2025
14c7a6b
Remove `AssetTreeNode`
somebody1234 Feb 25, 2025
15396f3
Fix lints
somebody1234 Feb 25, 2025
94ae1c9
Fix bugs
somebody1234 Feb 25, 2025
d41e07c
Fix drag and drop
somebody1234 Feb 26, 2025
e9d8504
Fade out rows when moving or copying
somebody1234 Feb 26, 2025
a8e3b63
Fix behavior to trigger editing name
somebody1234 Feb 26, 2025
e7926f0
Fix drag-to-upload uploading to root instead of current directory
somebody1234 Feb 26, 2025
8a37acd
Make breadcrumbs in path column set current folder as well
somebody1234 Feb 26, 2025
65597a6
Remove `expandedDirectoryIds`
somebody1234 Feb 27, 2025
6f73cbd
Add loading state to `AssetsTable`
somebody1234 Feb 27, 2025
f923420
Fix computing full paths
somebody1234 Feb 27, 2025
00892ea
Remove debug log
somebody1234 Feb 27, 2025
cecab4e
Fix lint errors
somebody1234 Feb 27, 2025
f35bdbe
Merge branch 'develop' into wip/sergeigarin/flatten-assets-tree
somebody1234 Feb 27, 2025
17e1224
Fix 'assetsTableFeatures.spec.ts'
somebody1234 Feb 28, 2025
7389aaa
Use names to refer to rows in some tests
somebody1234 Feb 28, 2025
361fcf1
Fix `copy.spec.ts`
somebody1234 Feb 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ test --test_output=errors
build --show_result=20
build --reuse_sandbox_directories
build --nolegacy_external_runfiles
build --incompatible_strict_action_env
build --noexperimental_check_output_files --experimental_allow_tags_propagation
fetch --noexperimental_check_output_files --experimental_allow_tags_propagation
query --noexperimental_check_output_files --experimental_allow_tags_propagation
Expand Down
4 changes: 2 additions & 2 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/common/src/backendQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const INVALIDATION_MAP: Partial<
uploadOrganizationPicture: ['getOrganization'],
createUserGroup: ['listUserGroups'],
deleteUserGroup: ['listUserGroups'],
changeUserGroup: ['listUsers'],
changeUserGroup: ['listUsers', 'listUserGroups'],
createTag: ['listTags'],
deleteTag: ['listTags'],
associateTag: ['listDirectory'],
Expand Down
Loading
Loading