{"id":19269084,"url":"https://github.com/jan-milenkov/ReactTask","last_synced_at":"2026-06-30T17:30:21.696Z","repository":{"id":233122299,"uuid":"615314206","full_name":"instamenta/ReactTask","owner":"instamenta","description":"Simple React app with Catalog and search functionality, fully responsive and animated ( please view at 50% zoom)","archived":false,"fork":false,"pushed_at":"2023-03-22T11:20:43.000Z","size":1179,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-05T12:42:24.121Z","etag":null,"topics":["animation-css","pure-css","react","responsive-web-design","vite"],"latest_commit_sha":null,"homepage":"https://releva-interview-react-task.onrender.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/instamenta.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-03-17T12:21:51.000Z","updated_at":"2023-04-11T16:16:59.000Z","dependencies_parsed_at":"2024-04-19T07:15:08.713Z","dependency_job_id":null,"html_url":"https://github.com/instamenta/ReactTask","commit_stats":null,"previous_names":["instamenta/reacttask"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instamenta%2FReactTask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instamenta%2FReactTask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instamenta%2FReactTask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instamenta%2FReactTask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/instamenta","download_url":"https://codeload.github.com/instamenta/ReactTask/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240371761,"owners_count":19790888,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["animation-css","pure-css","react","responsive-web-design","vite"],"created_at":"2024-11-09T20:18:27.608Z","updated_at":"2026-06-30T17:30:21.634Z","avatar_url":"https://github.com/instamenta.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ReactTask\n## Please view at 50% zoom \nThis is a simple support desk app built using React and Vite. The app allows users to search for support staff and view their availability status.\n## ASCII art representation of the architecture of the React app\n```\n     ┌─────────┐        ┌─────────┐\n     │  index  │        │   App   │\n     │  .html  ├──┐  ┌─►├─────────┤\n     └─────────┘  │  │  │Catalog  │\n                  │  │  ├─────────┤\n                  │  │  │  APIs   │\n                  │  │  └─────────┘\n                  │  │\n                  │  │  ┌─────────┐\n                  ├──┼─►│  CSS    │\n                  │  │  └─────────┘\n                  │  │\n                  │  │  ┌─────────┐\n                  └──┴─►│  JSON   │\n                     │  └─────────┘\n                     │\n                     │   ┌─────────┐\n                     └──►│  SVGs   │\n                         └─────────┘\n```\n## App Architecture\n```\nReactTask/\n├── node_modules/\n├── public/\n│   ├── favicon.ico\n│   ├── index.html\n│   ├── icon-available.svg\n│   ├── icon-busy.svg\n│   └── icon-search.svg\n├── src/\n│   ├── api.json\n│   ├── __mocks__/\n│   │   ├── fileMock.js\n│   │   └── styleMock.js\n│   ├── __tests__/\n│   │   └── App.test.jsx\n│   ├── components/\n│   │   └── Catalog/\n│   │       ├── Catalog.css\n│   │       ├── Catalog.jsx\n│   │       └── Catalog.test.jsx\n│   ├── App.css\n│   ├── App.jsx\n│   ├── main.jsx\n│   ├── setupTests.js\n│   └── index.css\n├── babel.config.js\n├── index.html\n├── jest.config.cjs\n├── jest.setup.js\n├── vite.config.js\n├── .gitignore\n├── package-lock.json\n└── package.json\n```\n## App Preview: \n![Capture](https://user-images.githubusercontent.com/98179343/225954614-25efa9b2-58cd-4b47-921e-d75e5f4cc5f9.PNG)\n\n## Usage\nTo use the app, you need to have Node.js and npm installed on your system. Once you have those installed, follow the steps below:\n\nClone the repository\n\n```\ngit clone https://github.com/instamenta/ReactTask.git\n```\nInstall the dependencies\n\n```\ncd react-app\n```\n```\nnpm install\n```\nStart the development server\n```\nnpm run dev\n```\nRun tests\n```\nnpm run test\n```\n\n### Basic Explanation\n* (read the comments to clarify)\n#### App\nThe App component is responsible for rendering the main layout of the app.\nIt consists of a navigation bar and a Catalog component that displays the support staff list.\n\n#### Catalog\nThe Catalog component is responsible for displaying the support staff list.\nIt receives a props object that contains the search string entered by the user.\nIt then filters the userDataArray based on the search string and displays the filtered results.\n\n## Technologies Used\nThe app was built using the following technologies:\n\n* React - A JavaScript library for building user interfaces\n* Vite - A build tool that provides fast development server and optimized build\n* CSS - A style sheet language used for describing the presentation of a document\n### Acknowledgements\nThis app was built as part of a technical task for Instamenta.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjan-milenkov%2FReactTask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjan-milenkov%2FReactTask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjan-milenkov%2FReactTask/lists"}