@@ -173,7 +173,7 @@ export class DesktopIconView extends EventEmitter {
173
173
this . core = core ;
174
174
this . $root = null ;
175
175
this . iconview = null ;
176
- this . root = 'home:/.desktop' ;
176
+ this . root = 'home:/.desktop' ; // Default path, changed later
177
177
}
178
178
179
179
destroy ( ) {
@@ -277,29 +277,33 @@ export class DesktopIconView extends EventEmitter {
277
277
}
278
278
279
279
return copy ( entry , dest )
280
- . then ( ( ) => actions . reload ( ) )
280
+ . then ( ( ) => actions . reload ( true ) )
281
281
. catch ( error ) ;
282
282
} )
283
- . then ( ( ) => actions . reload ( ) ) ;
283
+ . then ( ( ) => actions . reload ( true ) ) ;
284
284
285
285
return { selected : - 1 } ;
286
286
} ,
287
287
288
288
removeEntry : entry => ( state , actions ) => {
289
289
if ( entry . shortcut !== false ) {
290
290
shortcuts . remove ( entry . shortcut )
291
- . then ( ( ) => actions . reload ( ) )
291
+ . then ( ( ) => actions . reload ( true ) )
292
292
. catch ( error ) ;
293
293
} else {
294
294
unlink ( entry )
295
- . then ( ( ) => actions . reload ( ) )
295
+ . then ( ( ) => actions . reload ( true ) )
296
296
. catch ( error ) ;
297
297
}
298
298
299
299
return { selected : - 1 } ;
300
300
} ,
301
301
302
- reload : ( ) => ( state , actions ) => {
302
+ reload : ( fromUI ) => ( state , actions ) => {
303
+ if ( fromUI && this . core . config ( 'vfs.watch' ) ) {
304
+ return ;
305
+ }
306
+
303
307
read ( )
304
308
. then ( entries => entries . filter ( e => e . filename !== '..' ) )
305
309
. then ( entries => actions . setEntries ( entries ) ) ;
@@ -309,6 +313,7 @@ export class DesktopIconView extends EventEmitter {
309
313
310
314
this . applySettings ( ) ;
311
315
this . iconview . reload ( ) ;
316
+ this . _createWatcher ( ) ;
312
317
}
313
318
314
319
createFileContextMenu ( ev , entry ) {
@@ -354,6 +359,19 @@ export class DesktopIconView extends EventEmitter {
354
359
. openContextMenu ( ev ) ;
355
360
}
356
361
362
+ _createWatcher ( ) {
363
+ const listener = ( args ) => {
364
+ const currentPath = String ( this . root ) . replace ( / \/ $ / , '' ) ;
365
+ const watchPath = String ( args . path ) . replace ( / \/ $ / , '' ) ;
366
+ if ( currentPath === watchPath ) {
367
+ this . iconview . reload ( ) ;
368
+ }
369
+ } ;
370
+
371
+ this . core . on ( 'osjs/vfs:directoryChanged' , listener ) ;
372
+ this . on ( 'destroy' , ( ) => this . core . off ( 'osjs/vfs:directoryChanged' , listener ) ) ;
373
+ }
374
+
357
375
applySettings ( ) {
358
376
if ( ! this . $root ) {
359
377
return ;
0 commit comments