mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 19:44:59 +03:00
Refresh query over limit (#2142)
Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
This commit is contained in:
parent
6c3070c85d
commit
016a2c58ba
@ -342,8 +342,12 @@ export class LiveQuery extends TxProcessor implements Client {
|
||||
if (q.query.$search != null && q.query.$search.length > 0) {
|
||||
const match = await this.findOne(q._class, { $search: q.query.$search, _id: tx.objectId }, q.options)
|
||||
if (match === undefined) {
|
||||
q.result.splice(pos, 1)
|
||||
q.total--
|
||||
if (q.options?.limit === q.result.length) {
|
||||
return await this.refresh(q)
|
||||
} else {
|
||||
q.result.splice(pos, 1)
|
||||
q.total--
|
||||
}
|
||||
} else {
|
||||
q.result[pos] = match
|
||||
}
|
||||
@ -355,14 +359,22 @@ export class LiveQuery extends TxProcessor implements Client {
|
||||
if (current !== undefined) {
|
||||
q.result[pos] = current
|
||||
} else {
|
||||
q.result.splice(pos, 1)
|
||||
q.total--
|
||||
if (q.options?.limit === q.result.length) {
|
||||
return await this.refresh(q)
|
||||
} else {
|
||||
q.result.splice(pos, 1)
|
||||
q.total--
|
||||
}
|
||||
}
|
||||
} else {
|
||||
await this.__updateDoc(q, updatedDoc, tx)
|
||||
if (!this.match(q, updatedDoc)) {
|
||||
q.result.splice(pos, 1)
|
||||
q.total--
|
||||
if (q.options?.limit === q.result.length) {
|
||||
return await this.refresh(q)
|
||||
} else {
|
||||
q.result.splice(pos, 1)
|
||||
q.total--
|
||||
}
|
||||
} else {
|
||||
q.result[pos] = updatedDoc
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user