Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Hotfix/clear collection #367

Merged
merged 3 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [3.0.5] - 2024-06-05

## Fixed

- Fixed clear collection ([#367](https://github.com/reyesoft/ngx-jsonapi/pull/367))

## [3.0.4] - 2024-06-05

## Fixed

- Fixed document-collection remove collection elements ([#365](https://github.com/reyesoft/ngx-jsonapi/pull/365))
- Fixed document-collection remove collection elements ([#366](https://github.com/reyesoft/ngx-jsonapi/pull/366))

## [3.0.3] - 2024-06-05

Expand Down
15 changes: 14 additions & 1 deletion src/document-collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,20 @@ export class RelatedDocumentCollection<R extends Resource = Resource> extends Do

// convert and add new dataresoures to final collection
let new_ids = {};
this.data.splice(0, this.data.length);
try {
// Intenta vaciar el arreglo estableciendo length a 0
this.data.length = 0;
} catch (error) {
// Intenta usar métodos de mutación
try {
while (this.data.length) {
this.data.shift(); // shift elimina el primer elemento
}
} catch (shiftError) {
// Crea una copia del arreglo vacío y reemplaza el original
this.data = [];
}
}
this.builded = data_collection.data && data_collection.data.length === 0;
for (let dataresource of data_collection.data) {
try {
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-jsonapi",
"version": "3.0.4",
"version": "3.0.5",
"description": "JSON API library for Angular",
"module": "ngx-jsonapi/@ngx-jsonapi/ngx-jsonapi.es5.js",
"es2015": "ngx-jsonapi/@ngx-jsonapi/ngx-jsonapi.js",
Expand Down