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

[dg] Refactor PackageEntry types #28953

Open
wants to merge 1 commit into
base: 04-02-_dg_libraryobject_-_packageentry
Choose a base branch
from

Conversation

OwenKephart
Copy link
Contributor

Summary & Motivation

Internal refactor that gives each package entry an arbitrary list of types. Right now, those types are just scaffold-target and component, but we can add more in the future (e.g. Resolvable)

This is useful for categorizing and filtering entries. Previously, we had a hierarchical system (where ComponentSnap was a subclass of LibraryObjectSnap), which was hard to extend and filter by, as all of these types somewhat overlap with eachother

How I Tested These Changes

Changelog

NOCHANGELOG

Copy link
Contributor Author

OwenKephart commented Apr 2, 2025

Warning

This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
Learn more

This stack of pull requests is managed by Graphite. Learn more about stacking.

Comment on lines +88 to +94
@overload
def get_type_data(self, entry_type: Literal["component"]) -> Optional[ComponentTypeData]: ...

@whitelist_for_serdes
@record
class ComponentTypeSnap(PackageEntrySnap):
schema: Optional[dict[str, Any]]
@overload
def get_type_data(
self, entry_type: Literal["scaffold-target"]
) -> Optional[ScaffoldTargetTypeData]: ...
Copy link
Member

Choose a reason for hiding this comment

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

this is a neat use of type system

@OwenKephart OwenKephart force-pushed the 04-02-_dg_libraryobject_-_packageentry branch from b5fa109 to 8e5ee9f Compare April 3, 2025 23:26
@OwenKephart OwenKephart force-pushed the 04-02-_dg_refactor_packageentry_types branch from 1a156b6 to 4d5c9c7 Compare April 3, 2025 23:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants