{"id":23257258,"url":"https://github.com/satyam-software-developer/photofolio-react","last_synced_at":"2026-04-07T08:02:01.543Z","repository":{"id":268622821,"uuid":"904962620","full_name":"satyam-software-developer/photofolio-react","owner":"satyam-software-developer","description":"photofolio created with reactjs for frontend web development.","archived":false,"fork":false,"pushed_at":"2025-01-29T09:33:12.000Z","size":205,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-05T02:30:03.576Z","etag":null,"topics":["css","firebase","git","github","react","react-toastify","reactjs"],"latest_commit_sha":null,"homepage":"https://photofolio-react.vercel.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/satyam-software-developer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-17T22:14:13.000Z","updated_at":"2025-01-29T09:33:16.000Z","dependencies_parsed_at":"2025-02-12T10:42:28.610Z","dependency_job_id":"5ca108ea-d850-4603-b407-44c31ce79242","html_url":"https://github.com/satyam-software-developer/photofolio-react","commit_stats":null,"previous_names":["satyam-software-developer/photofolio-react"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/satyam-software-developer/photofolio-react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satyam-software-developer%2Fphotofolio-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satyam-software-developer%2Fphotofolio-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satyam-software-developer%2Fphotofolio-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satyam-software-developer%2Fphotofolio-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/satyam-software-developer","download_url":"https://codeload.github.com/satyam-software-developer/photofolio-react/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/satyam-software-developer%2Fphotofolio-react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31504897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","firebase","git","github","react","react-toastify","reactjs"],"created_at":"2024-12-19T12:27:40.343Z","updated_at":"2026-04-07T08:02:01.527Z","avatar_url":"https://github.com/satyam-software-developer.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Problem statement\n  - https://classroom.codingninjas.com/app/classroom/me/25433/content/694579/offering/11358770\n# PhotoFolio\n\nPhotoFolio is a React application that allows users to create and manage photo albums. Users can add albums, upload images to albums, and view the images in a grid format.\n\n## Table of Contents\n\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Setup Instructions](#setup-instructions)\n- [Code Overview](#code-overview)\n- [License](#license)\n\n## Features\n\n- **Create Albums**: Users can create new photo albums.\n- **Manage Images**: Users can add, edit, and delete images within albums.\n- **View Albums and Images**: Users can view a list of albums and the images contained in each album.\n\n## Technologies Used\n\n- **React**: For building the user interface.\n- **Firebase**: For backend services including Firestore for data storage.\n- **React Toastify**: For displaying toast notifications.\n- **CSS**: For styling the application.\n\n## Setup Instructions\n\n1. **Clone the Repository**\n\n   ```bash\n   git clone https://github.com/satyam-software-developer/photofolio-react.git\n   cd photofolio\n   ```\n\n## Code Overview\n\n1. \\*\\*src/App.js\n   The main component that includes the Navbar, Albumslist, and Imageslist components. It acts as the entry point of the application.\n\n2. src/components/AlbumForm/AlbumForm.js\n   A component for creating new albums. It uses a form to gather album details and interacts with Firebase Firestore to add new albums.\n\n3. src/components/AlbumsList/Albumslist.js\n   Displays a list of albums. Users can toggle the visibility of the album creation form and view a grid of existing albums. It also handles selecting an album to view its images.\n\n4. src/components/ImagesList/Imageslist.js\n   Manages and displays images within a selected album. Users can add, edit, or delete images. It also includes a form for adding new images.\n\n5. src/firebaseinit.js\n   Contains Firebase initialization and configuration. This file sets up the Firestore database for use within the application.\n\n6. src/index.js\n   The entry point of the React application. It renders the App component into the root element of the HTML file and includes setup for React's Strict Mode.\n\n7. src/index.css\n   G lobal styles for the application, including font settings and basic styling for code elements.\n\n8. src/components/Navbar/navbar.css\n   Styles for the navigation bar, which is currently used as a footer with a logo and application name.\n\n9. src/components/ImagesList/Imageslist.css\n   Styles for the images list component, including layout and button styling.\n\n# Getting Started with Create React App\n\nThis project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `npm start`\n\nRuns the app in the development mode.\\\nOpen [http://localhost:3000](http://localhost:3000) to view it in your browser.\n\nThe page will reload when you make changes.\\\nYou may also see any lint errors in the console.\n\n### `npm test`\n\nLaunches the test runner in the interactive watch mode.\\\nSee the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.\n\n### `npm run build`\n\nBuilds the app for production to the `build` folder.\\\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\\\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n### `npm run eject`\n\n**Note: this is a one-way operation. Once you `eject`, you can't go back!**\n\nIf you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.\n\nInstead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.\n\nYou don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.\n\n## Learn More\n\nYou can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).\n\nTo learn React, check out the [React documentation](https://reactjs.org/).\n\n### Code Splitting\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)\n\n### Analyzing the Bundle Size\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)\n\n### Making a Progressive Web App\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)\n\n### Advanced Configuration\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)\n\n### Deployment\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)\n\n### `npm run build` fails to minify\n\nThis section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsatyam-software-developer%2Fphotofolio-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsatyam-software-developer%2Fphotofolio-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsatyam-software-developer%2Fphotofolio-react/lists"}