]> git.proxmox.com Git - pve-manager-legacy.git/commitdiff
Add documentation header
authorEmmanuel Kasper <e.kasper@proxmox.com>
Mon, 15 Jun 2015 13:31:13 +0000 (15:31 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 15 Jun 2015 14:39:29 +0000 (16:39 +0200)
www/manager5/data/DiffStore.js

index b118c5965d29dd9ffeeed457d910d3dfce939911..66bcfed16c890dcc4ac6ba7b28c991e99be70323 100644 (file)
@@ -1,5 +1,19 @@
+/*
+ * The DiffStore acts as proxy between an UpdateStore instance and a component.
+ * Its purpose is to redisplay the component *only* if the data has been changed
+ * inside the UpdateStore, to avoid the annoying visual flickering of using
+ * the UpdateStore directly.
+ *
+ * Implementation:
+ * The DiffStore monitors via mon() the 'load' events sent by the target store.
+ * On each 'load' event, the DiffStore compares its own content with the target
+ * store (call to cond_add_item()) and then fires a 'refresh' event.
+ * The 'refresh' event will automatically trigger a view refresh on the component
+ * who binds to this store.
+ */
+
 /* Config properties:
- * rstore: A storage to track changes
+ * rstore: A target store to track changes
  * Only works if rstore has a model and use 'idProperty'
  */
 Ext.define('PVE.data.DiffStore', {