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<{
10
10
<template >
11
11
<div flex =" ~ col gap-2" p4 >
12
12
<template v-for =" mod of modules " :key =" mod " >
13
+ <!-- TODO: toggle to show detailed list like plugins and time cost -->
13
14
<DisplayModuleId
14
15
:id =" mod.id"
15
16
:session
Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ const { state: assets } = useAsyncState(
21
21
<template >
22
22
<div p5 flex =" ~ col gap-4" >
23
23
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
+ -->
24
30
<template v-for =" asset of assets " :key =" asset .filename " >
25
31
<pre >{{
26
32
{
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ const { state: chunks } = useAsyncState(
21
21
<template >
22
22
<div p5 flex =" ~ col gap-4" >
23
23
Chunks
24
+ <!-- TODO: graph view -->
24
25
<template v-for =" chunk of chunks " :key =" chunk .id " >
25
26
<DataChunkDetails
26
27
border =" ~ base rounded-lg"
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ defineProps<{
12
12
Plugins ({{ session.meta.plugins.length }})
13
13
</div >
14
14
15
+ <!--
16
+ TODO: plugins framegraph
17
+ Two different views direction:
18
+ - plugins -> hooks -> modules
19
+ - modules -> hooks -> plugins
20
+ -->
15
21
<div flex =" ~ col gap-1" >
16
22
<template v-for =" plugin in session .meta .plugins " :key =" plugin .id " >
17
23
<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({
125
125
} ,
126
126
127
127
devtools : {
128
- enabled : false ,
128
+ enabled : true ,
129
129
} ,
130
130
131
131
typescript : {
You can’t perform that action at this time.
0 commit comments