-
Notifications
You must be signed in to change notification settings - Fork 638
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
Keywords are not shown via search box #331
Comments
I found the ember debugger and noticed something funky going on I believe. The first screenshot below is the first page load after clicking hyper from the search page. As you can see, the first time ember seems to be loading the same 10 models from the search page (weird caching?). But the second time it only retrieves the one. I'm fairly new to ember so I'm not sure why that would happen but it seems like something that could cause issues. This line I think specifically |
I'm seeing this happen with the new category functionality that I'm adding as well, categories also fail to show up on a crate's page if you navigate to that page from a list of crates. They do show up if you visit the URL of a crate's page directly or if you reload the crate page after arriving :( |
Fixes rust-lang#331. Thank you @locks!!!! On crate list pages, we had *some* data about each crate, but not keywords. The way the links were constructed, ember saw the partial data that matched and would use that on the crate page instead of reloading the whole crate from the crate show api JSON, which *does* have keywords available. Using the id with the links instead of the whole model forces the request for all the data to happen.
When using the search box to find a crate and the using the link from the search results to navigate to that crates's page, keywords are not shown until the page is reloaded
This is yet another strange dependency on the referrer page, like issue #306.
The text was updated successfully, but these errors were encountered: