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

Export to Clipboard & Pool #2985

Merged
merged 59 commits into from
Feb 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
73fcbff
Improve brimcap error handling
nwt Jan 7, 2024
defaca2
Merge remote-tracking branch 'origin/main' into improve-brimcap-errors
jameskerr Jan 10, 2024
4cc0cf2
WIP
jameskerr Jan 19, 2024
979065a
Fix Analyze
jameskerr Jan 20, 2024
890d079
Refactor Brimcap Loader
jameskerr Jan 20, 2024
7c71b85
Add unit test for quick-load bad pcap
jameskerr Jan 22, 2024
ad68bde
Increase timeoutfor this test on CI
jameskerr Jan 22, 2024
23af3d0
Keep errorToString simpler
jameskerr Jan 22, 2024
c475ffa
WIP
jameskerr Jan 22, 2024
72aac73
Clipboard and Pool Export Comming Soon
jameskerr Jan 22, 2024
f6c952f
Merge remote-tracking branch 'origin/main' into export-feature
jameskerr Jan 23, 2024
ea7ad53
Clean forms
jameskerr Jan 23, 2024
09fc8e6
Export Modal Looking Better
jameskerr Jan 24, 2024
302ad18
Disable When Not on Query Session
jameskerr Jan 24, 2024
758176b
Submit Handler
jameskerr Jan 24, 2024
4ffdd71
Rename DefaultLoader to FileLoader
jameskerr Jan 24, 2024
4631ef8
Export to Pool Looking Good
jameskerr Jan 24, 2024
c698a71
Clean Up Forms Everywhere
jameskerr Jan 24, 2024
892e786
Merge remote-tracking branch 'origin/main' into export-feature
jameskerr Jan 26, 2024
b7faebc
Add Utilities
jameskerr Jan 27, 2024
0d4ec56
DRY Pool Form
jameskerr Jan 27, 2024
8c14dba
Merge remote-tracking branch 'origin/main' into export-feature
jameskerr Jan 29, 2024
49e4ae3
Fixed Pool Forms Everywhere
jameskerr Jan 30, 2024
1dd769b
Modal Exits Better
jameskerr Jan 31, 2024
a6ca320
Use Dialog
jameskerr Feb 1, 2024
248ff66
Modal Popover Working So Well
jameskerr Feb 8, 2024
d8d6473
Popover Modal
jameskerr Feb 8, 2024
0379e75
Merge remote-tracking branch 'origin/main' into export-feature
jameskerr Feb 8, 2024
68bf10c
Full Modal Works
jameskerr Feb 9, 2024
f241d51
New Pool Modal Converted
jameskerr Feb 9, 2024
5f3c254
New Lake Modal
jameskerr Feb 9, 2024
c248ec6
Modal Fixes
jameskerr Feb 9, 2024
322320a
Who Is Modal Converted
jameskerr Feb 9, 2024
7182aa6
Font Fixes
jameskerr Feb 9, 2024
eb1c3e3
Fix Linter
jameskerr Feb 9, 2024
06eef2c
Set the lake Id in the tests
jameskerr Feb 9, 2024
7b7c5e8
Remove Console
jameskerr Feb 9, 2024
cfa046f
Add pcap
jameskerr Feb 9, 2024
5c5e960
Fix Test
jameskerr Feb 10, 2024
8ec8444
Customize Pool Form
jameskerr Feb 10, 2024
4c2a7d1
Working on e2e tests
jameskerr Feb 10, 2024
da8abbc
E2E Test Fixes
jameskerr Feb 12, 2024
d59bdeb
Add Total Row Count
jameskerr Feb 12, 2024
aed151c
Added export cancel
jameskerr Feb 13, 2024
0580fd8
Fix dialog look in darkmode
jameskerr Feb 13, 2024
bc60704
Add copy to clipboard and export to pool test
jameskerr Feb 13, 2024
bda6cec
Fix Visual Bugs
jameskerr Feb 14, 2024
ab8c511
Opt Out of Memory Form
jameskerr Feb 14, 2024
b9ce5a6
Fix About Window
jameskerr Feb 14, 2024
91e74ba
Conditional Requires
jameskerr Feb 15, 2024
26bc432
Add different submti combos keys
jameskerr Feb 15, 2024
cbdbb52
Add Keyboard Shortcuts
jameskerr Feb 15, 2024
ce09d59
Use the loads.create path and fix abort
jameskerr Feb 15, 2024
0d1f302
Lint
jameskerr Feb 15, 2024
54d632e
Add Control Key for Windows
jameskerr Feb 15, 2024
62d6303
Merge remote-tracking branch 'origin/main' into export-feature
jameskerr Feb 20, 2024
895906e
Only set a select if the value existed.
jameskerr Feb 20, 2024
548487e
Add Indeterminate Loader
jameskerr Feb 20, 2024
1098379
Fix Confirm
jameskerr Feb 21, 2024
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
Prev Previous commit
Fix Confirm
  • Loading branch information
jameskerr committed Feb 21, 2024
commit 1098379b04e6e4a5345eb6f6d7fbc206b5ffcaf4
9 changes: 4 additions & 5 deletions apps/zui/src/views/pool-page/recent-loads.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ export function RecentLoads(props: {id: string}) {
const dispatch = useDispatch()

const cancelLoad = async (load) => {
if (
load.status == "loading" &&
confirm("Are you sure you want to abort this load?")
) {
await invoke("loads.abort", load.id)
if (load.status == "loading") {
if (confirm("Are you sure you want to abort this load?")) {
await invoke("loads.abort", load.id)
}
} else {
dispatch(Loads.delete(load.id))
}
Expand Down
Loading