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

Feat/console virtualization #224

Merged
merged 32 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
cc0503e
wip: rough draft calls virtualization
johann-crabnebula Jan 31, 2024
00f8495
wip: basic virtualization for console
johann-crabnebula Feb 5, 2024
73b8503
fix: odd row coloring for console
johann-crabnebula Feb 5, 2024
23cec21
fix: add dynamic height support for autoscroll window
johann-crabnebula Feb 7, 2024
04974e9
fix: update tanstack-virtual
johann-crabnebula Feb 7, 2024
1bddff2
feat: improve console filter to not run when there is no filter selected
johann-crabnebula Feb 7, 2024
1a5e09a
fix: remove unecessary dependencies
johann-crabnebula Feb 7, 2024
057d20f
fix: invert odd row coloring
johann-crabnebula Feb 7, 2024
f21226a
fix: revert changes to calls
johann-crabnebula Feb 7, 2024
54c559a
fix: no scroll when there is no items
johann-crabnebula Feb 7, 2024
0d3bcb5
fix: add z index for toolbar
johann-crabnebula Feb 7, 2024
415c348
fix: set reasonable overscan value
johann-crabnebula Feb 7, 2024
db9ef40
fix: remove unnecessary filter cycles on scroll / prevent filter from…
johann-crabnebula Feb 7, 2024
6fd60b8
fix: improve filtering performance for console tab
johann-crabnebula Feb 7, 2024
91d2bdd
fix: catch rare error with scrolling when list gets voided
johann-crabnebula Feb 7, 2024
3eb0abc
fix: linter error
johann-crabnebula Feb 7, 2024
529361e
fix: remove produce syntax from spans stream to drastically improve p…
johann-crabnebula Feb 8, 2024
949b000
fix: simplify virtualizer code
johann-crabnebula Feb 8, 2024
145a758
Merge branch 'main' into feat/console-virtualization
CrabNejonas Feb 8, 2024
e785fd2
Merge branch 'main' into feat/console-virtualization
CrabNejonas Feb 8, 2024
a4942ed
Merge branch 'main' into feat/console-virtualization
CrabNejonas Feb 8, 2024
9af1fba
fix: update from main
CrabNejonas Feb 8, 2024
3bf6a40
Merge remote-tracking branch 'origin/main' into feat/console-virtuali…
johann-crabnebula Feb 20, 2024
269ec4f
fix: prettier
johann-crabnebula Feb 20, 2024
a3a9091
fix: simplify log-event-entry template
johann-crabnebula Feb 20, 2024
f4eb1c0
fix: prettier
johann-crabnebula Feb 20, 2024
a62152c
fix: revert change of span updates to unblock PR
johann-crabnebula Mar 4, 2024
0d23e8c
fix: remove console log
johann-crabnebula Mar 4, 2024
512b7b2
fix: remove try catch and fix reactivity for auto scroll pane
johann-crabnebula Mar 4, 2024
4d0f08c
fix: cleanup log event entry by moving processing code into a view fu…
johann-crabnebula Mar 4, 2024
58592e6
fix: remove unnecessary type from transport
johann-crabnebula Mar 4, 2024
a2df0f5
fix: log event entry change
johann-crabnebula Mar 4, 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
5 changes: 3 additions & 2 deletions clients/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"@solidjs/testing-library": "^0.8.6",
"@testing-library/jest-dom": "^6.4.2",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
Expand Down Expand Up @@ -55,6 +55,7 @@
"@sentry/vite-plugin": "^2.14.0",
"@solid-primitives/map": "^0.4.9",
"@solidjs/router": "^0.12.0",
"@tanstack/solid-virtual": "^3.0.4",
"clsx": "^2.1.0",
"csp_evaluator": "^1.1.1",
"json-schema-library": "^9.1.2",
Expand Down
Loading
Loading