@@ -59,7 +59,7 @@ export function addDevtools (app, store) {
59
59
makeLocalGetters ( store , modulePath )
60
60
payload . state = formatStoreForInspectorState (
61
61
getStoreModule ( store . _modules , modulePath ) ,
62
- store . _makeLocalGettersCache ,
62
+ modulePath === 'root' ? store . getters : store . _makeLocalGettersCache ,
63
63
modulePath
64
64
)
65
65
}
@@ -228,16 +228,45 @@ function formatStoreForInspectorState (module, getters, path) {
228
228
}
229
229
230
230
if ( gettersKeys . length ) {
231
- storeState . getters = gettersKeys . map ( ( key ) => ( {
231
+ const tree = transformPathsToObjectTree ( getters )
232
+ storeState . getters = Object . keys ( tree ) . map ( ( key ) => ( {
232
233
key : key . endsWith ( '/' ) ? extractNameFromPath ( key ) : key ,
233
234
editable : false ,
234
- value : getters [ key ]
235
+ value : canThrow ( ( ) => tree [ key ] )
235
236
} ) )
236
237
}
237
238
238
239
return storeState
239
240
}
240
241
242
+ function transformPathsToObjectTree ( getters ) {
243
+ const result = { }
244
+ Object . keys ( getters ) . forEach ( key => {
245
+ const path = key . split ( '/' )
246
+ if ( path . length > 1 ) {
247
+ let target = result
248
+ const leafKey = path . pop ( )
249
+ for ( const p of path ) {
250
+ if ( ! target [ p ] ) {
251
+ target [ p ] = {
252
+ _custom : {
253
+ value : { } ,
254
+ display : p ,
255
+ tooltip : 'Module' ,
256
+ abstract : true
257
+ }
258
+ }
259
+ }
260
+ target = target [ p ] . _custom . value
261
+ }
262
+ target [ leafKey ] = canThrow ( ( ) => getters [ key ] )
263
+ } else {
264
+ result [ key ] = canThrow ( ( ) => getters [ key ] )
265
+ }
266
+ } )
267
+ return result
268
+ }
269
+
241
270
function getStoreModule ( moduleMap , path ) {
242
271
const names = path . split ( '/' ) . filter ( ( n ) => n )
243
272
return names . reduce (
@@ -251,3 +280,11 @@ function getStoreModule (moduleMap, path) {
251
280
path === 'root' ? moduleMap : moduleMap . root . _children
252
281
)
253
282
}
283
+
284
+ function canThrow ( cb ) {
285
+ try {
286
+ return cb ( )
287
+ } catch ( e ) {
288
+ return e
289
+ }
290
+ }
0 commit comments