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

Make ingredient autocompleter work with new search API #930

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.6",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
Expand Down
10 changes: 5 additions & 5 deletions src/components/Nutrition/widgets/IngredientAutcompleter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ export function IngredientAutocompleter({ callback, initialIngredient }: Ingredi
const [t, i18n] = useTranslation();

const fetchName = useMemo(
() =>
throttle(
(request: string) => searchIngredient(request, i18n.language, searchEnglish).then(res => setOptions(res)),
200,
),
() => throttle(
(request: string) => searchIngredient(request, i18n.language, searchEnglish).then(res => setOptions(res)),
200,
),
[i18n.language, searchEnglish],
);

Expand Down Expand Up @@ -88,6 +87,7 @@ export function IngredientAutocompleter({ callback, initialIngredient }: Ingredi
noOptionsText={t('noResults')}
isOptionEqualToValue={(option, value) => option.value === value.value}
onChange={(event: any, newValue: IngredientSearchResponse | null) => {

setOptions(newValue ? [newValue, ...options] : options);
setValue(newValue);
callback(newValue);
Expand Down
30 changes: 23 additions & 7 deletions src/services/ingredient.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios from 'axios';
import { Ingredient, IngredientAdapter } from "components/Nutrition/models/Ingredient";
import { IngredientSearchResponse, IngredientSearchType } from "services/responseType";
import { IngredientSearchResponse } from "services/responseType";
import { ApiIngredientType } from 'types';
import { ApiPath, LANGUAGE_SHORT_ENGLISH } from "utils/consts";
import { fetchPaginated } from "utils/requests";
Expand All @@ -9,7 +9,7 @@ import { makeHeader, makeUrl } from "utils/url";

export const getIngredient = async (id: number): Promise<Ingredient> => {
const { data: receivedIngredient } = await axios.get<ApiIngredientType>(
makeUrl(ApiPath.INGREDIENT_PATH, { id: id }),
makeUrl(ApiPath.INGREDIENTINFO_PATH, { id: id }),
{ headers: makeHeader() },
);

Expand All @@ -25,7 +25,7 @@ export const getIngredients = async (ids: number[]): Promise<Ingredient[]> => {
}

// eslint-disable-next-line camelcase
const url = makeUrl(ApiPath.INGREDIENT_PATH, { query: { id__in: ids.join(',') } });
const url = makeUrl(ApiPath.INGREDIENTINFO_PATH, { query: { id__in: ids.join(',') } });
const adapter = new IngredientAdapter();
const out: Ingredient[] = [];

Expand All @@ -41,16 +41,32 @@ export const getIngredients = async (ids: number[]): Promise<Ingredient[]> => {


export const searchIngredient = async (name: string, languageCode: string, searchEnglish: boolean = true): Promise<IngredientSearchResponse[]> => {
// TODO: this currently only converts the results from the new API to the old format
// but this should be properly converted.
// See also https://github.com/wger-project/wger/pull/1724


const languages = [languageCode];
if (languageCode !== LANGUAGE_SHORT_ENGLISH && searchEnglish) {
languages.push(LANGUAGE_SHORT_ENGLISH);
}

const url = makeUrl(
ApiPath.INGREDIENT_SEARCH_PATH,
{ query: { term: name, language: languages.join(',') } }
ApiPath.INGREDIENTINFO_PATH,
{ query: { name__search: name, language__codes: languages.join(',') } }
);

const { data } = await axios.get<IngredientSearchType>(url);
return data.suggestions;
const { data } = await axios.get(url);

return data.results.map((entry: any) => (
{
value: entry.name,
data: {
id: entry.id,
name: entry.name,
image: entry.image?.image,
image_thumbnail: entry.image?.image,
}
}
));
};
4 changes: 0 additions & 4 deletions src/services/responseType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,3 @@ export interface IngredientSearchResponse {
image_thumbnail: string | null,
}
}

export interface IngredientSearchType {
suggestions: IngredientSearchResponse[];
}
2 changes: 1 addition & 1 deletion src/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export enum ApiPath {
MEAL = 'meal',
MEAL_ITEM = 'mealitem',
NUTRITIONAL_DIARY = 'nutritiondiary',
INGREDIENT_PATH = 'ingredientinfo',
INGREDIENTINFO_PATH = 'ingredientinfo',
INGREDIENT_SEARCH_PATH = 'ingredient/search',
INGREDIENT_WEIGHT_UNIT = 'ingredientweightunit'
}
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2312,6 +2312,11 @@
resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=

"@types/lodash@^4.17.6":
version "4.17.6"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.6.tgz#193ced6a40c8006cfc1ca3f4553444fb38f0e543"
integrity sha512-OpXEVoCKSS3lQqjx9GGGOapBeuW5eUboYHRlHP9urXPX25IKZ6AnP5ZRxtVf63iieUbsHxLn8NQ5Nlftc6yzAA==

"@types/luxon@^3.4.2":
version "3.4.2"
resolved "https://registry.yarnpkg.com/@types/luxon/-/luxon-3.4.2.tgz#e4fc7214a420173cea47739c33cdf10874694db7"
Expand Down
Loading