Merge pull request #4792 from mbliznikova/4790_4791_add_recently_deleted_post_to_collection_no_page_reloading_invalidate_cache_after_adding

4790 4791 add recently deleted post to collection no page reloading invalidate cache after adding
This commit is contained in:
daniel 2023-12-05 00:28:42 -07:00 committed by GitHub
commit 6ffc964371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -166,11 +166,7 @@ class CollectionController extends Controller
'order' => $count,
]);
CollectionService::addItem(
$collection->id,
$status->id,
$count
);
CollectionService::deleteCollection($collection->id);
$collection->updated_at = now();
$collection->save();

View File

@ -619,6 +619,9 @@ export default {
this.posts = this.posts.filter(post => {
return post.id != id;
});
this.ids = this.ids.filter(post_id => {
return post_id != id;
});
},
addRecentId(post) {
@ -630,6 +633,7 @@ export default {
// window.location.reload();
this.closeModals();
this.posts.push(res.data);
this.ids.push(post.id);
this.collection.post_count++;
}).catch(err => {
swal('Oops!', 'An error occured, please try selecting another post.', 'error');