Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat: api to restore soft-deleted component [FC-0076] #35993

Merged
merged 8 commits into from
Dec 13, 2024

Conversation

navinkarkera
Copy link
Contributor

@navinkarkera navinkarkera commented Dec 9, 2024

Description

Adds api to handle restoring soft-deleted library blocks.

Useful information to include:

  • Which edX user roles will this change impact? "Course Author","Developer", and "Operator".

Supporting information

Testing instructions

Please see openedx/frontend-app-authoring#1556 for instructions.

Deadline

"None" if there's no rush, or provide a specific date or event (and reason) if there is one.

@openedx-webhooks openedx-webhooks added the open-source-contribution PR author is not from Axim or 2U label Dec 9, 2024
@openedx-webhooks
Copy link

openedx-webhooks commented Dec 9, 2024

Thanks for the pull request, @navinkarkera!

What's next?

Please work through the following steps to get your changes ready for engineering review:

🔘 Get product approval

If you haven't already, check this list to see if your contribution needs to go through the product review process.

  • If it does, you'll need to submit a product proposal for your contribution, and have it reviewed by the Product Working Group.
    • This process (including the steps you'll need to take) is documented here.
  • If it doesn't, simply proceed with the next step.

🔘 Provide context

To help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:

  • Dependencies

    This PR must be merged before / after / at the same time as ...

  • Blockers

    This PR is waiting for OEP-1234 to be accepted.

  • Timeline information

    This PR must be merged by XX date because ...

  • Partner information

    This is for a course on edx.org.

  • Supporting documentation
  • Relevant Open edX discussion forum threads

🔘 Get a green build

If one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green.

🔘 Let us know that your PR is ready for review:

Who will review my changes?

This repository is currently maintained by @openedx/wg-maintenance-edx-platform. Tag them in a comment and let them know that your changes are ready for review.

Where can I find more information?

If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources:

When can I expect my changes to be merged?

Our goal is to get community contributions seen and reviewed as efficiently as possible.

However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:

  • The size and impact of the changes that it introduces
  • The need for product review
  • Maintenance status of the parent repository

💡 As a result it may take up to several weeks or months to complete a review and merge your PR.

@navinkarkera navinkarkera force-pushed the navin/restore-component-api branch 2 times, most recently from f1186af to 270c39d Compare December 10, 2024 05:59
@navinkarkera navinkarkera marked this pull request as ready for review December 10, 2024 06:37
@navinkarkera navinkarkera changed the title feat: api to restore soft-deleted component feat: api to restore soft-deleted component [FC-0076] Dec 10, 2024
Comment on lines +1144 to +1145
# Set draft version back to the latest available component version id.
authoring_api.set_draft_version(component.pk, component.versioning.latest.pk)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can add a helper method in openedx-learning similar to soft_delete_draft if required.

Copy link
Contributor

@rpenido rpenido left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @navinkarkera!
I found a bug while testing it.
The undo works, but if the component is on a Collection, it will not show after the undo on the collection view.

It's an index only problem. The "Collections" field doesn't exists on the restored block document.

@navinkarkera navinkarkera force-pushed the navin/restore-component-api branch 3 times, most recently from 1386b78 to aa0d4d8 Compare December 12, 2024 09:51
@navinkarkera
Copy link
Contributor Author

@rpenido Thanks! Nice catch.

I was sure that it was working which is why I confidently included collections check in the test instructions in the frontend PR, might have confused the some other block due to having block names Video 1, Video 2 etc. 😅

Fixed it now: 2e3cccd.

Copy link
Contributor

@rpenido rpenido left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍
Thank you for your work, @navinkarkera!

@@ -268,7 +267,6 @@ def test_html_library_block(self):
doc = {}
doc.update(searchable_doc_for_library_block(self.library_block))
doc.update(searchable_doc_tags(self.library_block.usage_key))
doc.update(searchable_doc_collections(self.library_block.usage_key))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@navinkarkera what is the reason for deleting this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not needed any more.

@@ -398,6 +401,8 @@ def searchable_doc_for_library_block(xblock_metadata: lib_api.LibraryXBlockMetad

# Add the breadcrumbs. In v2 libraries, the library itself is not a "parent" of the XBlocks so we add it here:
doc[Fields.breadcrumbs] = [{"display_name": library_name}]
# Add collections data to index if this block is part of any collection
doc.update(_collections_for_content_object(xblock_metadata.usage_key))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@navinkarkera I think you need to call the CONTENT_OBJECT_ASSOCIATIONS_CHANGED event to index the block's collections in restore_library_block instead of indexing collections every time the library is indexed.

Copy link
Contributor Author

@navinkarkera navinkarkera Dec 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ChrisChV That is indeed better, and this led to discovery of another bug, the tags are deleted even from the database on soft deleting a component. I am currently investigating the reason and possible fix.

Update: It is intentionally deleted here.

Update 2: Removed the handler to delete tags on soft delete, everything seems to work fine now. The deleted block tags are not shown in tags filter in library page, so that is good. Let me know if you can think of any issue if don't delete tags from database.

cc: @rpenido

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me know if you can think of any issue if don't delete tags from database.

I think it's okay to not delete the tags for now 👍

@navinkarkera navinkarkera force-pushed the navin/restore-component-api branch from aa0d4d8 to 29eed07 Compare December 13, 2024 05:27
@navinkarkera navinkarkera force-pushed the navin/restore-component-api branch from 7e8218b to df581f7 Compare December 13, 2024 05:44
@navinkarkera navinkarkera force-pushed the navin/restore-component-api branch from df581f7 to 30d335e Compare December 13, 2024 06:07
@ChrisChV ChrisChV merged commit 971afe6 into openedx:master Dec 13, 2024
49 checks passed
@ChrisChV ChrisChV deleted the navin/restore-component-api branch December 13, 2024 18:17
@edx-pipeline-bot
Copy link
Contributor

2U Release Notice: This PR has been deployed to the edX staging environment in preparation for a release to production.

@edx-pipeline-bot
Copy link
Contributor

2U Release Notice: This PR has been deployed to the edX production environment.

1 similar comment
@edx-pipeline-bot
Copy link
Contributor

2U Release Notice: This PR has been deployed to the edX production environment.

jawad-khan pushed a commit that referenced this pull request Dec 17, 2024
Adds API to handle restoring soft-deleted library blocks.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
open-source-contribution PR author is not from Axim or 2U
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

5 participants