File tree Expand file tree Collapse file tree 5 files changed +15
-1
lines changed Expand file tree Collapse file tree 5 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ defineProps<{
1010<template >
1111 <div flex =" ~ col gap-2" p4 >
1212 <template v-for =" mod of modules " :key =" mod " >
13+ <!-- TODO: toggle to show detailed list like plugins and time cost -->
1314 <DisplayModuleId
1415 :id =" mod.id"
1516 :session
Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ const { state: assets } = useAsyncState(
2121<template >
2222 <div p5 flex =" ~ col gap-4" >
2323 Assets
24+ <!--
25+ TODO:
26+ - Use tree view to show assets
27+ - Show asssets detail on the right panel
28+ - View of Flamechart with nanovis
29+ -->
2430 <template v-for =" asset of assets " :key =" asset .filename " >
2531 <pre >{{
2632 {
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ const { state: chunks } = useAsyncState(
2121<template >
2222 <div p5 flex =" ~ col gap-4" >
2323 Chunks
24+ <!-- TODO: graph view -->
2425 <template v-for =" chunk of chunks " :key =" chunk .id " >
2526 <DataChunkDetails
2627 border =" ~ base rounded-lg"
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ defineProps<{
1212 Plugins ({{ session.meta.plugins.length }})
1313 </div >
1414
15+ <!--
16+ TODO: plugins framegraph
17+ Two different views direction:
18+ - plugins -> hooks -> modules
19+ - modules -> hooks -> plugins
20+ -->
1521 <div flex =" ~ col gap-1" >
1622 <template v-for =" plugin in session .meta .plugins " :key =" plugin .id " >
1723 <div font-mono border =" ~ rounded base" px2 py1 text-sm hover =" bg-active" >
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ export default defineNuxtConfig({
125125 } ,
126126
127127 devtools : {
128- enabled : false ,
128+ enabled : true ,
129129 } ,
130130
131131 typescript : {
You can’t perform that action at this time.
0 commit comments