-
Notifications
You must be signed in to change notification settings - Fork 21
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: Create LibraryContainerLocator
for Library Containers [FC-0083]
#369
feat: Create LibraryContainerLocator
for Library Containers [FC-0083]
#369
Conversation
Thanks for the pull request, @ChrisChV! This repository is currently maintained by Once you've gone through the following steps feel free to tag them in a comment and let them know that your changes are ready for engineering review. 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo 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:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. 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:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #369 +/- ##
==========================================
+ Coverage 93.72% 93.80% +0.07%
==========================================
Files 30 31 +1
Lines 2934 3004 +70
Branches 191 192 +1
==========================================
+ Hits 2750 2818 +68
- Misses 157 159 +2
Partials 27 27
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Is it possible for |
CHANGELOG.rst
Outdated
@@ -1,3 +1,8 @@ | |||
# 2.12.0 | |||
|
|||
* Refactor: Rename LibraryCollectionKey to LibraryElementKey. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: we have been using the term "item" in a few place to refer to any thing in a library (block/collection/container) so I would slightly prefer that over "element"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated here fc0cff1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ChrisChV Looks good.
👍
- I tested this: Verified tests.
- I read through the code
- I checked for accessibility issues
- Includes documentation
When serialized, these keys look like: | ||
lct:org:lib:ct-type:ct-id | ||
""" | ||
CANONICAL_NAMESPACE = 'lct' # "Library Container" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: Do we need this to be short? If size doesn't matter, maybe change this to something readable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@navinkarkera Yes, other larger possibilities were ruled out; you can see that conversation here: openedx/openedx-learning#282 (comment)
265a303
to
63141f7
Compare
63141f7
to
fc0cff1
Compare
@bradenmacdonald I've tried this, and it causes conflicts with the KEY_TYPE (it inherits two different values for this property). Apparently, a locator can only have one |
@bradenmacdonald It's ready for your review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! I tested this out in openedx/edx-platform#36371 though I haven't tried it with the latest rename from Element -> Item
Hi @ormsbee or @kdmccormick -- can you help get this merged and a new release created? |
opaque_keys/edx/keys.py
Outdated
""" | ||
KEY_TYPE = 'collection_key' | ||
KEY_TYPE = 'library_element_key' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're renaming this to LibraryItemKey
instead of LibraryElementKey
, shouldn't this key type be library_item_key
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right. Updated: ec22e77
75ecbe6
to
ec22e77
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we need LibraryContainerLocators to be UsageKeys so that we can store xblock state against units, sections, and subsections?
Hi @kdmccormick, could you give me more context about this? What is the xblock state that we need to store in the containers? |
Sure @ChrisChV . Honestly, I actually cannot think of a reason to store state against containers in libraries right now. Still, I think that this would be good future-proofing, and it is fairly harmless if we don't end up needing it. Here are some of the ways I think it could pay off:
|
@ormsbee ^ I could use a sanity check from you on this, if you have time. |
Jumping in with some quick thoughts on this: I'm not super opposed to making these UsageKeys, but it doesn't make sense to me and I think it's cleaner not to do so.
If you mean courses will be stored within libraries and learners will learn from those courses within libraries, I haven't heard about that and don't like it in principle. I do see how having a course within a library is arguably a natural extension of having units, subsections, and sections - but learners wouldn't be accessing any of those things within the library generally; only when they're copied into a course. "True" independent courses might be in the same learning package, but I don't think they'd be accessed directly by learners within a library. What's more, courses aren't really "containers" and generally have their own keys
That's only required for learning in courses. We don't support
None of those are APIs that we use with content libraries, and if they were, then they'd need to be updated to support non-XBlock containers anyways, since that's what we want to move toward. I see this (having
I don't think we need that (in libraries)? They aren't implemented as XBlocks, and can't be used as XBlocks in the Library / Learning Core runtime. That runtime doesn't support XBlocks with children so it can't support Units as XBlocks. |
I'll try to write more tomorrow, but my quick take on this is that I don't think this needs to be a UsageKey. Also, I don't want to get in the mindset that we need a parallel set of container UsageKeys because of where the data is being stored. It's true that at some point we're going to be serving container content data out of Learning Core, if nothing else when we move course content to it. But we're going to need some mapping of existing block-v1: style UsageKeys to the corresponding course content in a LearningPackage anyhow, for backwards compatibility. That mapping doesn't even have to be 1:1 (e.g. the CCX use case). I am fuzzy on exactly how we transition from a world where it's XBlocks all the way down to one where we shove the containers out of the XBlock runtime. The Unit seems like a great place to start because it has no user state for the most part (ignoring custom asides and the fact that technically it has a position field that I'm almost sure is never actually used). I expect that working out how to sequence that transition will be one of the thorniest pieces of this whole affair. Edit: To be clear, I don't mean that we have to cross this particular bridge to get to courses-on-learning-core. We're going to be in XBlock-shim-land for a while. But this is going to be the next hill of confusion in the codebase. Though I'm hopeful that we can make something that looks like an XBlock for read purposes that hits 95% of the backwards compatibility use cases without things being too crazy. But now I have completely rambled on a tangent.... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, that all makes sense. Then let's merge this 🚀
Thanks! 🚀 🚀 @kdmccormick @ormsbee could you help me merge this and create a new release? |
@ormsbee any last-minute objections? I still think these might be UsageKeys, but we can retroactively add that base class in the future if it turns out to be true. |
No objections. Agreed that we can add it in the future if we need to. |
Can you merge @ChrisChV or should I? |
He doesn't have merge rights on this repo, so it would be great if you could merge it. |
Description
LibraryCollectionKey
toLibraryItemKey
to use it as the general class forLibraryCollectionLocator
andLibraryContainerLocator
.LibraryContainerLocator
LibraryUsageLocatorV2
also asLibraryItemKey
Support Information
get_library_unit_usage_key
in newcontent_libraries.units
module [FC-0083] edx-platform#36379Testing instructions