mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
* Api: Fix list updates while app was hidden were not all shown when switching back to the app
If updates/add was done for multiple entries while a nextmatch was hidden, only the first update or new entry was shown
This commit is contained in:
parent
50352cf36a
commit
5209ff8e4b
@ -368,6 +368,7 @@ export class et2_nextmatch extends et2_DOMWidget implements et2_IResizeable, et2
|
|||||||
this.controller = null;
|
this.controller = null;
|
||||||
this.rowProvider = null;
|
this.rowProvider = null;
|
||||||
|
|
||||||
|
this._queue_refresh_callback = this._queue_refresh_callback.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -961,8 +962,13 @@ export class et2_nextmatch extends et2_DOMWidget implements et2_IResizeable, et2
|
|||||||
|
|
||||||
if(data.total >= 1)
|
if(data.total >= 1)
|
||||||
{
|
{
|
||||||
this.type == et2_nextmatch.ADD ? this.nm.refresh_add(this.uid, this.type, controller)
|
row_ids.forEach(id =>
|
||||||
: this.nm.refresh_update(this.uid, controller);
|
{
|
||||||
|
let uid = `${this.prefix}::${id}`;
|
||||||
|
this.type == et2_nextmatch.ADD ? this.nm.refresh_add(uid, this.type, controller)
|
||||||
|
: this.nm.refresh_update(uid, controller);
|
||||||
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
else if(this.type == et2_nextmatch.UPDATE)
|
else if(this.type == et2_nextmatch.UPDATE)
|
||||||
{
|
{
|
||||||
@ -1148,7 +1154,7 @@ export class et2_nextmatch extends et2_DOMWidget implements et2_IResizeable, et2
|
|||||||
{
|
{
|
||||||
if(types[type].length > 0)
|
if(types[type].length > 0)
|
||||||
{
|
{
|
||||||
// Fire each change type once will all changed IDs
|
// Fire each change type once with all changed IDs
|
||||||
this.refresh(types[type].filter((v, i, a) => a.indexOf(v) === i), type);
|
this.refresh(types[type].filter((v, i, a) => a.indexOf(v) === i), type);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user