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

Migrate versions page to paginated list #10659

Merged
merged 9 commits into from
Feb 27, 2025

Conversation

eth3lbert
Copy link
Contributor

@eth3lbert eth3lbert commented Feb 22, 2025

This PR migrates the versions page to a paginated style, which loads more versions with a "Load More" button. Two sorted lists serve as different contexts, so they can display in different. Most of the computation for versions (sorting and release_tracks) on this page will no longer be needed on the app, they all done on the backend.

Some major changes are highlighted as follows:

  • Drop support for first version hint (breaking change).
  • Migrate the versions page to a paginated list.
  • Simplify releaseTrackSet with release_tracks meta.

Regarding the first version hint, since we've moved to a paginated list and the API doesn't support reverse ordering, determining the first version would likely require fetching all versions. If we choose to support this rather than drop it, it would be nice to store this information in the default_versions table during publishing and expose it on the API, similar to #10519.

For release_tracks, since we now only fetch it once if it doesn't already exist, and paginated related data only resets when the controllers crate changes (or page reload), release_tracks could become outdated if it changes after the initial fetch. Two operations can affect the result of release_tracks:

  • The highest stable version being yanked
  • A new stable version being released (potential)

In the yanked scenario, a simple solution would be to refetch release_tracks upon detection within the app. For new releases, the update currently only occurs upon page reload.

Another possible and potentially better solution would be to, again, upsert release_tracks during publishing/yanking, and expose it on the API like #10519. This would be costly (offline) during backfill, as it would require calculation from scratch, but should be inexpensive during updates, as it would only need to compare to a single version. While this would complicate the publish endpoint, it would result in calculation only once, rather than request.

Related:

preview

paginated_versions

@eth3lbert eth3lbert force-pushed the load-more-versions branch 2 times, most recently from f531696 to d83cd81 Compare February 22, 2025 17:55
@@ -231,6 +236,7 @@ module('Model | Version', function (hooks) {
this.db.version.create({ crate, num: '0.4.3', yanked: true });
crateRecord = await this.store.findRecord('crate', crate.name, { reload: true });
versions = (await crateRecord.loadVersionsTask.perform({ reload: true })).slice();
crateRecord.release_tracks = calculateReleaseTracks(versions);
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This change was made to pass the tests, but it doesn't reflect what we do in practice (for versions page). Since the new release wouldn't be loaded without a page reload, as already mentioned in the description, I'm not sure what the best approach is in this case.

Comment on lines +5 to +6
<strong>{{ this.sortedVersions.length }}</strong> of <strong>{{ this.crate.num_versions }}</strong>
<strong>{{ this.crate.name }}</strong> versions since
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This currently seems a bit odd, since the bolded number and name are positioned directly beside each other. There might be better wording or display methods.

Copy link
Member

@Turbo87 Turbo87 left a comment

Choose a reason for hiding this comment

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

tested it out locally and looks like it works as intended :)

@eth3lbert eth3lbert force-pushed the load-more-versions branch 3 times, most recently from ba8d502 to cb627bf Compare February 26, 2025 10:49
Comment on lines +134 to +151
test('navigating to the versions page', async function (assert) {
loadFixtures(this.db);

// default with a page size more than 13
await visit('/crates/nanomsg');
await click('[data-test-versions-tab] a');

assert.dom('[data-test-page-description]').hasText(/All 13\s+versions of nanomsg since\s+December \d+th, 2014/);
assert.dom('[data-test-page-description]').hasText(/13 of 13\s+nanomsg versions since\s+December \d+th, 2014/);
});

test('navigating to the versions page with custom per_page', async function (assert) {
loadFixtures(this.db);

await visit('/crates/nanomsg/versions?per_page=10');

assert.dom('[data-test-page-description]').hasText(/10 of 13\s+nanomsg versions since\s+December \d+th, 2014/);

await click('[data-test-id="load-more"]');
assert.dom('[data-test-page-description]').hasText(/13 of 13\s+nanomsg versions since\s+December \d+th, 2014/);
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Since our per_page (100) is much bigger than the test records (13), I split it into two test cases. This can effectively test if 'load more' works.

This implement a paginated versions page. Instead of loading all
versions at once, it loads more with a "Load More" button using a
seek-based API.
This eliminates the computation of `release_tracks` in the app and
fetches the computed meta from the backend once in the `versions` page.
These sorted version computations are no longer needed, we fetch the
sorted data from the backend now.
@eth3lbert
Copy link
Contributor Author

Rebased and feedback addressed!

Copy link
Member

@Turbo87 Turbo87 left a comment

Choose a reason for hiding this comment

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

alright, let's give this a try

@Turbo87 Turbo87 merged commit 37c9912 into rust-lang:main Feb 27, 2025
11 checks passed
@eth3lbert eth3lbert deleted the load-more-versions branch February 27, 2025 09:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants