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

Cbdebugger vue3 #49

Open
wants to merge 51 commits into
base: cbdebugger-vue
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
ed5a837
Merge branch 'development'
lmajano May 19, 2021
695572d
Merge branch 'development'
lmajano Jun 5, 2021
3dbd156
Merge branch 'development'
lmajano Jul 21, 2021
b79c747
v3.3.0 Release
lmajano Apr 21, 2022
09ad141
Merge branch 'development'
lmajano Apr 21, 2022
9af9403
Merge branch 'development'
lmajano May 2, 2022
af64f00
Merge branch 'development'
lmajano Jun 27, 2022
2fd4e1a
Merge branch 'development'
lmajano Jul 12, 2022
d22ca6e
v4.0 Release
lmajano Nov 22, 2022
20e6480
v4.0
lmajano Nov 22, 2022
f265c4f
Merge branches 'development' and 'master' of github.com:coldbox-modul…
lmajano Nov 22, 2022
c97dabc
Merge branch 'development'
lmajano Apr 17, 2023
5850cd8
Merge branch 'development'
lmajano Apr 17, 2023
b070b77
fix changelog build
lmajano Apr 17, 2023
9bc46a4
Finalized changelog for v4.1.0
Apr 17, 2023
32d096b
Merge branch 'development'
lmajano Jan 10, 2024
cba81c0
Finalized changelog for v4.2.0
Jan 10, 2024
5d34d23
Merge branch 'development'
scottsteinbeck Mar 20, 2024
90071bd
add configuarable menus
scottsteinbeck Apr 28, 2024
386db9e
update interceptors to push all profiler events to a common events st…
scottsteinbeck Apr 28, 2024
e0f7f20
change from webpack to vite and from alpine to vue
scottsteinbeck Apr 28, 2024
cfbc974
start constructing the containers for the vue debugger interface
scottsteinbeck Apr 28, 2024
677dc95
add in vite config helper and event storage for profiler information
scottsteinbeck Apr 28, 2024
cfdd15b
add api endpoints for the ajax requests for the requests and events a…
scottsteinbeck Apr 28, 2024
1c514bb
future forgebox helper for checking for module updates
scottsteinbeck Apr 28, 2024
665f4b1
update timers to use events profiler as well
scottsteinbeck Apr 28, 2024
789e762
vite helper for js bundler
scottsteinbeck Apr 28, 2024
ae00c3b
add in panels
scottsteinbeck May 4, 2024
1f6bdc7
make base changes
scottsteinbeck May 4, 2024
93bc540
add a fetch api call to the page with alpine
scottsteinbeck May 15, 2024
f40ba64
add js build configuration
scottsteinbeck May 15, 2024
2dbfb96
add in api endpoints for requests, cache, and more
scottsteinbeck May 15, 2024
aef8b70
update to use doc component
scottsteinbeck May 15, 2024
ee38af2
move timers to the end of the request to capture the request id as pa…
scottsteinbeck May 15, 2024
38a4396
helper for vite resouces
scottsteinbeck May 15, 2024
62478a4
updated resoruces and some helpers we may or may not use
scottsteinbeck May 15, 2024
c5a94b3
replace with new dock
scottsteinbeck May 15, 2024
557cee6
key formatting for struct, and combinding some of the menus
scottsteinbeck May 15, 2024
5660cdb
update as placeholder
scottsteinbeck May 15, 2024
17af1cc
add in sleep with timer to harness
scottsteinbeck May 15, 2024
f28d84a
add in model for obtaining servrer stats
scottsteinbeck May 15, 2024
b335f0e
Merge branch 'development'
May 16, 2024
e4cee6d
more changes
scottsteinbeck May 16, 2024
5d12452
Worked on formatting the dashboard page
Noah614 May 16, 2024
05d1cf9
add new stores
scottsteinbeck Jun 5, 2024
7744b10
create endpoints for dashboard page
scottsteinbeck Jun 5, 2024
5eaba04
update viisualizer page for vue insert
scottsteinbeck Jun 5, 2024
123f55d
update chart view colors and layout
scottsteinbeck Jun 5, 2024
c0374cf
update dock header with request information
scottsteinbeck Jun 5, 2024
9327820
build initial dashboard layout
scottsteinbeck Jun 5, 2024
41826d7
create dashboard panels
scottsteinbeck Jun 5, 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
Next Next commit
update chart view colors and layout
scottsteinbeck committed Jun 5, 2024
commit 123f55d64a16dd8aace5a4642d0a287929cb34bf
5 changes: 2 additions & 3 deletions resources/assets/js/components/helpers/TimeSeriesChart.vue
Original file line number Diff line number Diff line change
@@ -47,13 +47,12 @@
display: false
},
y: {
display: true
display: false
}
}
}

function addDataPoint(newPoint) {
console.log('Adding data point:', newPoint);
if (dataPoints.length >= maxItems) {
dataPoints.shift();
}
@@ -64,7 +63,7 @@
{
label: 'Data One',
backgroundColor: 'rgba(255, 99, 132, 0.5)',
borderColor: 'rgb(255, 99, 132)',
borderColor: 'rgb(69, 222, 69)',
tension: 0.5, // Adds curviness to the lines
pointRadius: 0, // Removes the dots
borderWidth: 1.5,