-
Notifications
You must be signed in to change notification settings - Fork 224
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
No clear migration guide for v5 and no explicit typing #1537
No clear migration guide for v5 and no explicit typing #1537
Comments
You need to update your code using this documentation. It doesn't feel complete so it sucks. You might have to view code documentation/intellisense from your code editor/IDE. Before: import algoliasearch from "algoliasearch";
const object = await algoliasearch(algoliaApplicationId, algoliaApiKey)
.initIndex(productsAlgoliaIndex)
.getObjects<AlgoliaRecord>(productIds); After: import { algoliasearch } from "algoliasearch";
const object = await algoliasearch(algoliaApplicationId, algoliaApiKey)
.getObjects<AlgoliaRecord>({
requests: [
{
indexName: productsAlgoliaIndex,
objectID: productId1,
},
{
indexName: productsAlgoliaIndex,
objectID: productId2,
},
// ...
],
}); |
Hey @WavyWalk thanks for using the v5 client already, and sorry for the lack of documentation, we are currently working on providing snippets and guides! (and thanks @OutdatedGuy for the help :D)
The In the meantime of the guides being available, you can browse our API reference which includes a code snippet for every methods of the client, for every languages.
I'll investigate this but since I'm not super familiar with RIS cc @Haroenv
Did you find any wrong typings or something that would prevent you from migrating? If so, I can fix those and help you move forward :) Otherwise I think it would be mostly migrating method signatures which (I hope) shouldn't be too different |
for React InstantSearch, ensure you're on the very latest version, if you're on an older version this may not be inferred right. In my testing it also worked completely as expected, but maybe we missed a case? please make a full reproduction if anything isn't inferred as expected |
Here's repo with reproduction of the issues I mentioned:
all you can see in https://github.com/WavyWalk/reproduce-algolia-v5/blob/master/src/App.tsx |
Oh no, you're right! I'm just realising that a last fix for the types was only done in algolia/instantsearch#6270 which isn't merged yet. I'll get right on making sure CI passes there (unrelated failure) and we can release a fix soon |
regarding getObjects: I see that objects can be fetched from multiple indexes and hence it accept array of index objectID pairs, but if I pass hundreds of pairs with same index will it still make one call?
more natural would be, does it support it?:
|
Hey
Yes
Those new clients are meant to be closer to the API, so this signatures is exactly what is expected from the REST endpoint |
👋 Not to pile on here, but please could an actual migration guide be published here, that documents the actual signature changes for methods? For example, it turns out Even the bits that are documented currently aren't great... I would complain far less if the documentation actually existed for the methods, but that doesn't exist either (sans a select few methods classed as "helpers" or unless you rely on code samples in the REST API docs which seem to be missing a bunch of options [like |
The React InstantSearch issue is solved now, thanks for holding on. The teams responsible are talking about how to add more migration guides etc., but in the mean time don't feel pressured to update if it's too complicated or unclear for you, v4 will continue to work for a long time (v3 even still works now). |
@Haroenv The issue I'm showcasing is still present on |
@Tirke yes, in 5.1.0 the alias |
Ah yes I skimmed a bit fst over the issue, those helpers are not showcased in the docs I guess? |
I'm also not sure how to upgrade to v5. Here's the my old code: import { type Hit } from '@algolia/client-search';
import { default as algoliasearch } from 'algoliasearch/lite';
const ALGOLIA_APP_ID = '';
const ALGOLIA_SEARCH_API_KEY = '';
type SearchOptions = {
indexName: string;
query: string;
pageParam?: number;
hitsPerPage: number;
};
export async function search<TData>({ indexName, query, pageParam, hitsPerPage }: SearchOptions): Promise<{
hits: Hit<TData>[];
nextPage: number | undefined;
}> {
const client = algoliasearch(ALGOLIA_APP_ID, ALGOLIA_SEARCH_API_KEY);
const index = client.initIndex(indexName);
const { hits, page, nbPages } = await index.search<TData>(query, {
page: pageParam ?? 0,
hitsPerPage,
});
const nextPage = page + 1 < nbPages ? page + 1 : undefined;
return { hits, nextPage };
} |
Not yet, we are working on generating them!
We will soon provide a documentation page with a code snippet for every methods, along with a mapping with method renames For your specific code snippet, it would be import { Hit } from '@algolia/client-search';
import { liteClient as algoliasearch } from 'algoliasearch/lite';
const ALGOLIA_APP_ID = '';
const ALGOLIA_SEARCH_API_KEY = '';
type SearchOptions = {
indexName: string;
query: string;
pageParam?: number;
hitsPerPage: number;
};
export async function search<TData>({ indexName, query, pageParam, hitsPerPage }: SearchOptions): Promise<{
hits: Hit<TData>[];
nextPage: number | undefined;
}> {
const client = algoliasearch(ALGOLIA_APP_ID, ALGOLIA_SEARCH_API_KEY);
const { hits, page, nbPages } = await client.searchSingleIndex<TData>({
indexName,
searchParams: {
query,
page: pageParam ?? 0,
hitsPerPage,
},
});
const nextPage = page + 1 < nbPages ? page + 1 : undefined;
return { hits, nextPage };
} You can find some example here https://www.algolia.com/doc/rest-api/search/#tag/Search |
Thanks @shortcuts but that doesn't seem to work for me. I did manage to get this to work, but as you can see I've had to cast to any for the result. import { type Hit } from '@algolia/client-search';
import { liteClient as algoliasearch } from 'algoliasearch/lite';
const ALGOLIA_APP_ID = '';
const ALGOLIA_SEARCH_API_KEY = '';
type SearchOptions = {
indexName: string;
query: string;
pageParam?: number;
hitsPerPage: number;
};
export async function search<TData>({ indexName, query, pageParam, hitsPerPage }: SearchOptions): Promise<{
hits: Hit<TData>[];
nextPage: number | undefined;
}> {
const client = algoliasearch(ALGOLIA_APP_ID, ALGOLIA_SEARCH_API_KEY);
const { results } = await client.search<TData>({
requests: [
{
indexName,
query,
page: pageParam,
hitsPerPage,
},
],
});
// TODO: fix types
const result = results[0] as any;
const { hits, nbPages, page } = result;
const nextPage = page + 1 < nbPages ? page + 1 : undefined;
return { hits, nextPage };
} Not sure if there's a better way to do this. |
Ah yes sorry I forgot there's only the multi-index search on the lite client
then you'd also be interested by #1537 (comment) |
I also just found out after some digging that the lite client doesnt have the "searchSingleIndex" method. Is there a reason for it? |
Bundle size/keeping the lite client as minimal as possible, since you can do single index search with the multi-index method ( |
I just finished migrating our own codebase from Algolia v4 to v5 and found the process very confusing. There's one page that I found with "upgrade" examples and it felt pretty anemic. The main problem IMHO is that the (new?) TypeScript types are extremely convoluted and hard to follow. For example, when I Command+Click to see what the definition of searchSingleIndex<T>({ indexName, searchParams }: import("../model").
SearchSingleIndexProps, requestOptions?: import("@algolia/client-common").RequestOptions):
Promise<import("../model").SearchResponse<T>>; It looks auto-generated, no line breaks for clarity, no comments. I've never seen imports used as type parameters - probably because a human would never write this! I see this (buried in a soup of other typedefs/imports) and I want to give up. Or when I try to figure out what options are available in export type SearchQuery = SearchForFacets | SearchForHits; What's export type SearchForHits = SearchForHitsOptions & SearchParams; What's I would have stayed on v4 but our build broke for unknown reasons so I finally spent a few hours yesterday migrating. Please improve these types so that humans can read and understand them! |
Thanks for trying out the new major version still :D We are still working on the docs and improving the clients, sorry it was a complicated migration, and thanks a lot for the feedbacks
Seems like the issue comes from the spread here, without it the LSP properly finds the definition, that's definitely something we need to fix
You are right, it is generated, but that's not a generation issue, see the definition without the spread: ![]()
We reuse types and have polymorphic APIs so it's expected to see unions and intersections. We can try to see if the output is better without reusing types, it would reduce the composability (like having to manually Pick some fields), but if it provides a better DX, why not! |
Hey, the 5.3.0 version (will be published later today) should fix this |
👋 @shortcuts I see that 5.3.0 has been released, but https://www.algolia.com/doc/libraries/javascript/v5/upgrade/ appears to still be incredibly lacklustre with very little in the way of documentation on how to actually migrate usage from v4 (and still references Python methods!). Please could I ask you put some more effort into actually writing a migration guide that covers how folks should update their usages, 'cause methods are definitely not 1:1...? I do not feel anything I mentioned in #1537 (comment) has really been addressed. |
Hey @MattIPv4 thanks for trying out the new major :) I resolved the issue because the typing problem should be solved, but the but the documentation problem still remains indeed. Our documentation team is working on writing the new (migration) guides as well as providing a mapping table of the method changes. In the meantime, maybe the following resources could help:
(sorry again for the documentation issues) |
Thanks, glad to hear some better migration docs are on there way! Is there an issue tracking that that I could follow for updates, or will updates be shared here? |
Hey team, the docs are mostly looking good, though some additional information for comparisons between v4 and v5 methods would be extremely useful. For example, in v4, the |
We want to migrate to v4 from v5, but migrating even this snippet is problematic:
I see in source code that getObjects exist in v5 but one can't pass index and it's not in docs, and there's no index in types.
Also types are not straightforward (I get that it's generated but still), so rules like @typescript-eslint/no-unsafe-assignment fail because of any's in unions.
As well not sure how to proceed with now failing type checks for react instantsearch because things like:
hitsPerPage, analyticsTags on
<Configure />
reference the types of v5 which do not have it.Do you recommend to migrate now or wait till there will be a proper migration guide and types will be improved?
The text was updated successfully, but these errors were encountered: