Skip to content

Commit

Permalink
frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
harshitakumari-dev committed Oct 17, 2024
0 parents commit 3008478
Show file tree
Hide file tree
Showing 36 changed files with 27,803 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ar-converter-frontend
27,371 changes: 27,371 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "ar-food-menu-sample-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@google/model-viewer": "^1.9.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-iframe": "^1.8.5",
"react-router-dom": "^6.27.0",
"react-scripts": "5.0.0",
"swr": "^2.2.5",
"web-vitals": "^2.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Binary file added public/assets/models/android/cheeseburger.glb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added public/assets/models/android/salad_head_scene.glb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added public/assets/models/ios/Salad_head.usdz
Binary file not shown.
Binary file added public/assets/models/ios/Salmon_tartine.usdz
Binary file not shown.
Binary file added public/assets/models/ios/Simple_Cheeseburger.usdz
Binary file not shown.
Binary file added public/assets/models/ios/filipino_breakfast.usdz
Binary file not shown.
Binary file added public/favicon.ico
Binary file not shown.
46 changes: 46 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<script src="./_model-viewer_ Interactive Example_files/focus-visible.js.download" defer=""></script>
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
Binary file added public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
10 changes: 10 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.App {
text-align: center;
}

.header{
background-color: black;
color:white;
padding: 1em;
font-size: larger;
}
20 changes: 20 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import "./App.css";
import MenuItem from "./components/menu-item/menu-item";
import Arjs from "./components/ar";
import FileUpload from "./components/form-upload/upload";
import Change3d from "./components/form-upload/change3d";
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";

function App() {
return (
<Router>
<Routes>
<Route path="/" element={<FileUpload />} />
<Route path="/home" element={<Arjs />} />
<Route path="/model/:id" element={<Change3d />} />
</Routes>
</Router>
);
}

export default App;
8 changes: 8 additions & 0 deletions src/App.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';

test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
48 changes: 48 additions & 0 deletions src/components/ar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import '../App.css';
import MenuItem from './menu-item/menu-item';
function Arjs() {
return (
<div className="App">
<div className="header">AR Food Menu App</div>
{/* <model-viewer
src="https://modelviewer.dev/shared-assets/models/Astronaut.glb"
ios-src="https://developer.apple.com/augmented-reality/quick-look/models/biplane/toy_biplane.usdz"
camera-controls
ar
xr-environment
alt="Cheese Burger Model"></model-viewer> */}
<MenuItem
androidSource="assets\models\android\salmon_tartine_scene.glb"
iosSource="assets\models\ios\Salmon_tartine.usdz"
alternateName="Salmon Tartine"
/>
<MenuItem
androidSource="assets\models\android\pizza_bigboss_pancho_scene.glb"
iosSource="assets\models\ios\Pizza_BigBoss_Pancho.usdz"
alternateName="Pizza"
/>
<MenuItem
androidSource="assets\models\android\salad_head_Scene.glb"
iosSource="assets\models\ios\Salad_head.usdz"
alternateName="Fruit and Veggie Salad"
/>
<MenuItem
androidSource="assets\models\android\filipino_breakfast.glb"
iosSource="assets\models\ios\filipino_breakfast.usdz"
alternateName="Filipino Breakfast"
/>
<MenuItem
androidSource="assets\models\android\farmhouse_scramble-olive__finch.glb"
iosSource="assets\models\ios\Farmhouse_Scramble-Olive__Finch.usdz"
alternateName="Farmhouse Scramble - Olive Finch"
/>
{/* <MenuItem
androidSource="assets\models\android\cheeseburger.glb"
iosSource="assets\models\ios\Simple_Cheeseburger.usdz"
alternateName="Cheese Burger"
/> */}
</div>
);
}

export default Arjs;
60 changes: 60 additions & 0 deletions src/components/form-upload/change3d.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
// import React,{useState,useEffect} from 'react';
// import axios from 'axios';
// import MenuItem from "../menu-item/menu-item";
// import { useLocation } from "react-router-dom";
// import { useSearchParams } from 'react-router-dom';
// import Iframe from 'react-iframe';
// export default function Change3d(){
// const [searchParams] = useSearchParams();
// const location = useLocation();
// const { data } = location.state || {};
// // const data = searchParams.get('data') ? JSON.parse(decodeURIComponent(searchParams.get('data'))) : null;
// // console.log(data)
// return (
// <main>
// <MenuItem
// androidSource={data}
// iosSource="assets/models/ios/Salmon_tartine.usdz"
// alternateName="Salmon Tartine"
// />

// </main>
// )
// }
import React, { useState, useEffect } from 'react';
import axios from 'axios';
import MenuItem from "../menu-item/menu-item";
import { useParams } from "react-router-dom";

export default function Change3d() {
const { id } = useParams();
const [modelUrl, setModelUrl] = useState(null);

useEffect(() => {

const fetchModel = async () => {
try {
const response = await axios.get(`http://localhost:3002/model/${id}`);
setModelUrl(response.data.imgUrl);
} catch (error) {
console.error("Error fetching the model:", error);
}
};

fetchModel();
}, [id]);

return (
<main>
{modelUrl ? (
<MenuItem
androidSource={modelUrl}
iosSource="assets/models/ios/Salmon_tartine.usdz"
alternateName="Salmon Tartine"
/>
) : (
<p>Loading model...</p>
)}
</main>
);
}
86 changes: 86 additions & 0 deletions src/components/form-upload/upload.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
import React,{useState} from "react";
import axios from 'axios';
import MenuItem from "../menu-item/menu-item";
import Iframe from "react-iframe";
import { useNavigate } from "react-router-dom";
export default function FileUpload(){
const navigate = useNavigate();
const [files,setFiles] = useState(null);
const [msg,setMsg] = useState(null);
const [progress,setProgress] = useState({started:false,pc:0});
const [data,setData] = useState([]);
const [img,setImg] = useState("");
const [url,setUrl]=useState()

const uploadFile=async()=>{
if(!files){
setMsg("No file uploaded");
return;
}
const fd = new FormData();
fd.append("file",files[0]);

try{
const response = await axios.post('http://localhost:3002/api',fd,{
header:{
"Content-type":"multipart/form-data",
},
onUploadProgress:(progressEvent)=>{
setProgress((prevState)=>({
...prevState,
pc:Math.round((progressEvent.loaded*100)/progressEvent.total),
}));
},
});
setData(response.data);
setImg(response.data.imgUrl);

const queryString = `data=${encodeURIComponent(JSON.stringify(response.data.imgUrl))}`;
const objectId=response.data.idd
const url = `http://localhost:3003/model/${objectId}`;
console.log(queryString);
setUrl(url)
setMsg("Upload completed");
// navigate(`/model/${objectId}`)
}catch(error){
console.log(error);
setMsg("error occured");
}


}
return (
<main>
<div className="flex flex-col space-y-12 justify-center items-center mt-[12rem]">
<input
onChange={(e) => {
setFiles(e.target.files);
}}
type="file"
className=""
/>
<button
onClick={uploadFile}
className="w-28 h-10 rounded-md font-mono bg-red-300"
>
Submit
</button>
{progress.started && (
<progress max="100" value={progress.pc}></progress>
)}
{msg && <span>{msg}</span>}
</div>

<MenuItem
androidSource={img}
iosSource="assets/models/ios/Salmon_tartine.usdz"
alternateName="Salmon Tartine"
/>
<a href={url} target="_blank" rel="noopener noreferrer" className="text-blue-500 underline">
Go to Model
</a>
<Iframe src={url} width="500px" height="500px"/>
</main>
)

}
14 changes: 14 additions & 0 deletions src/components/menu-item/menu-item.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.menu-item {
margin: 1em 0em;
box-shadow: 0.1em 0em 0.5em lightgray;
}
.item-details{
text-align: left;
padding: 1em;
background-color: black;
color:white;
}
model-viewer {
width: 100%;
height: 15em;
}
18 changes: 18 additions & 0 deletions src/components/menu-item/menu-item.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import './menu-item.css'

function MenuItem (props) {
return (
<div className="menu-item">
<model-viewer
src={props.androidSource}
ios-src={props.iosSource}
camera-controls
ar
xr-environment
alt={props.alternateName}></model-viewer>
<div className="item-details">{props.alternateName}</div>
</div>
);
}

export default MenuItem;
Loading

0 comments on commit 3008478

Please sign in to comment.