Skip to content

Commit 7654a02

Browse files
committed
Added client VFS watch support to desktop icons (#51)
1 parent c395e2e commit 7654a02

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

src/adapters/ui/iconview.js

+24-6
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class DesktopIconView extends EventEmitter {
173173
this.core = core;
174174
this.$root = null;
175175
this.iconview = null;
176-
this.root = 'home:/.desktop';
176+
this.root = 'home:/.desktop'; // Default path, changed later
177177
}
178178

179179
destroy() {
@@ -277,29 +277,33 @@ export class DesktopIconView extends EventEmitter {
277277
}
278278

279279
return copy(entry, dest)
280-
.then(() => actions.reload())
280+
.then(() => actions.reload(true))
281281
.catch(error);
282282
})
283-
.then(() => actions.reload());
283+
.then(() => actions.reload(true));
284284

285285
return {selected: -1};
286286
},
287287

288288
removeEntry: entry => (state, actions) => {
289289
if (entry.shortcut !== false) {
290290
shortcuts.remove(entry.shortcut)
291-
.then(() => actions.reload())
291+
.then(() => actions.reload(true))
292292
.catch(error);
293293
} else {
294294
unlink(entry)
295-
.then(() => actions.reload())
295+
.then(() => actions.reload(true))
296296
.catch(error);
297297
}
298298

299299
return {selected: -1};
300300
},
301301

302-
reload: () => (state, actions) => {
302+
reload: (fromUI) => (state, actions) => {
303+
if (fromUI && this.core.config('vfs.watch')) {
304+
return;
305+
}
306+
303307
read()
304308
.then(entries => entries.filter(e => e.filename !== '..'))
305309
.then(entries => actions.setEntries(entries));
@@ -309,6 +313,7 @@ export class DesktopIconView extends EventEmitter {
309313

310314
this.applySettings();
311315
this.iconview.reload();
316+
this._createWatcher();
312317
}
313318

314319
createFileContextMenu(ev, entry) {
@@ -354,6 +359,19 @@ export class DesktopIconView extends EventEmitter {
354359
.openContextMenu(ev);
355360
}
356361

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+
357375
applySettings() {
358376
if (!this.$root) {
359377
return;

0 commit comments

Comments
 (0)