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

updating nutrient predictor with api #111

Merged
merged 1 commit into from
Jun 8, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ import { COLOR_CODES } from "../../../../../utils/constants/shared.constants.js"

const defaultFormFields = {
mealDescription: "",
uploadedImage: ""
uploadedImage: "",
imageUrl: "",
}

const paperStyles = {
Expand All @@ -38,10 +39,16 @@ const UploadImage = () => {
console.log(formFields.uploadedImage);

if (formFields.mealDescription !== "") {
// use the meal description to predict
await detectNutrients(formFields.mealDescription)
console.log("meal hit")
} else {
await updateImageAndPrediction(formFields.uploadedImage, NUTRIENT_PREDICTOR_ENUMS.image);
// use the uploaded image to predict
if (formFields.uploadedImage && formFields.uploadedImage !== "") {
await updateImageAndPrediction(formFields.uploadedImage, NUTRIENT_PREDICTOR_ENUMS.image);
} else if (formFields.imageUrl && formFields.imageUrl !== "") {
await updateImageAndPrediction(formFields.imageUrl, NUTRIENT_PREDICTOR_ENUMS.url)
}
}

// displayNutrients(true);
Expand All @@ -54,12 +61,17 @@ const UploadImage = () => {

setFormFields({ ...formFields, [name]: value });

if (type === NUTRIENT_PREDICTOR_ENUMS.image) {
updateImage(event.target.value);
if (type === NUTRIENT_PREDICTOR_ENUMS.image || type === NUTRIENT_PREDICTOR_ENUMS.url) {
updateImage(event.target.value, type);

const imageEl = document.getElementById('imageOutput');
if (imageEl !== null) {
imageEl.src = URL.createObjectURL(event.target.files[0]);

if (type === NUTRIENT_PREDICTOR_ENUMS.image) {
imageEl.src = URL.createObjectURL(event.target.files[0]);
} else if (type === NUTRIENT_PREDICTOR_ENUMS.url) {
imageEl.src = event.target.value;
}
}
}
};
Expand All @@ -73,7 +85,10 @@ const UploadImage = () => {
<FormInput label="Meal description" type="text" onChange={ handleChange }
name="mealDescription" value={ formFields.mealDescription }></FormInput>

<FormInput type="file" id="uploadedImage" name="uploadedImage"
<FormInput label="Image URL" type="url" id="imageUrl" name="imageUrl"
onChange={ (e) => handleChange(e, NUTRIENT_PREDICTOR_ENUMS.url) } value={ formFields.imageUrl }></FormInput>

<FormInput disabled type="file" id="uploadedImage" name="uploadedImage"
onChange={ (e) => handleChange(e, NUTRIENT_PREDICTOR_ENUMS.image) } value={ formFields.uploadedImage } accept="image/*"></FormInput>

<ButtonsContainer>
Expand All @@ -84,7 +99,7 @@ const UploadImage = () => {
</SimplePaper>

<UploadedImage alt="" id="imageOutput"
style={{ width: "500px", height: "500px", visibility: `${formFields.uploadedImage === "" ? "hidden" : ""}` }}></UploadedImage>
style={{ width: "500px", height: "500px", visibility: `${(formFields.uploadedImage === "" && formFields.imageUrl === "") ? "hidden" : ""}` }}></UploadedImage>

</UploadImageContainer>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ const updateImageHelper = (imageAndPrediction, imgPath) => {
};
};

const updateImageAndPredictionHelper = async (imageAndPrediction, imgPath, img) => {
console.log(img);
const updateImageAndPredictionHelper = async (imageAndPrediction, imgPath, imageInputType) => {
console.log(imageInputType);

// TODO: need validation to check if imgPath and img are valid and an image
if (validateImgPath(imgPath) === true) {
return imageAndPrediction
}

// TODO: need to implement separate prediction function call
const predictionResponse = await getMealPredictions(img);
const predictionResponse = await getMealPredictions(imgPath);

console.log(predictionResponse)

return {
imagePath: String(imgPath),
image: img,
image: imageInputType,
predictionDescription: predictionResponse
};
}
Expand All @@ -51,7 +51,7 @@ export const NutrientPredictorContext = createContext({
// imageAndPrediction structure
// {
// imagePath: "path to image",
// image: "image itself",
// image: "image type",
// predictionDescription: "1 pound of steak with mashed potatoes and a can of sprite"
// }

Expand Down Expand Up @@ -95,12 +95,22 @@ export const NutrientPredictorProvider = ({ children }) => {
setImageAndPrediction(updateImageHelper(imageAndPrediction, imgPath));
};

const updateImageAndPrediction = async (imgPath, img) => {
setPredictionInputType(NUTRIENT_PREDICTOR_ENUMS.image)
const updateImageAndPredictionResponse = await updateImageAndPredictionHelper(imageAndPrediction, imgPath, img)
const updateImageAndPrediction = async (imgPath, imageInputType) => {
if (imageInputType === NUTRIENT_PREDICTOR_ENUMS.image) {
setPredictionInputType(NUTRIENT_PREDICTOR_ENUMS.image)
const updateImageAndPredictionResponse = await updateImageAndPredictionHelper(imageAndPrediction, imgPath, imageInputType)

setImageAndPrediction(updateImageAndPredictionResponse);
await detectNutrients(updateImageAndPredictionResponse.predictionDescription, NUTRIENT_PREDICTOR_ENUMS.image)
setImageAndPrediction(updateImageAndPredictionResponse);

await detectNutrients(updateImageAndPredictionResponse.predictionDescription, NUTRIENT_PREDICTOR_ENUMS.image)
} else if (imageInputType === NUTRIENT_PREDICTOR_ENUMS.url) {
setPredictionInputType(NUTRIENT_PREDICTOR_ENUMS.url)
const updateImageAndPredictionResponse = await updateImageAndPredictionHelper(imageAndPrediction, imgPath, imageInputType)

setImageAndPrediction(updateImageAndPredictionResponse);

await detectNutrients(updateImageAndPredictionResponse.predictionDescription, NUTRIENT_PREDICTOR_ENUMS.url)
}
};

const detectNutrients = async (mealDescription, inputType) => {
Expand Down
21 changes: 19 additions & 2 deletions src/utils/api-requests/nutrient-predictor.requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,25 @@ const processNutrientPredictions = async (nutrientPredictions) => {

// nutrient predictor api requests

export const getMealPredictions = async (image) => {
return "1 pound of steak with mashed potatoes and a can of sprite"
export const getMealPredictions = async (imagePath) => {
try {
const resNutrientPrediction = await fetch(`${process.env.REACT_APP_API_URL_NUTRIENT_PREDICTOR}${process.env.REACT_APP_API_URL_NUTRIENT_PREDICTION}`, {
method: "POST",
headers: {
"Content-Type": "text/plain"
},
body: String(imagePath)
})

const { message } = await resNutrientPrediction.json()
return message
} catch (error) {
errorOnGetNutrientPredictions()

if (error) {
return console.error("Request failed: ", error)
}
}
};

export const getNutrientPredictions = async (mealDescription) => {
Expand Down
1 change: 1 addition & 0 deletions src/utils/constants/nutrient-predictor.constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ export const IMAGE_EXTENSIONS = {
export const NUTRIENT_PREDICTOR_ENUMS = {
text: "text",
image: "image",
url: "url",
}
Loading