DEV Community

jackvanzandt
jackvanzandt

Posted on

Homework week 12

repo link: https://github.com/jackvanzandt/project-two

We started to get the search bar and results linked together by creating a new array called filteredData that contains only the objects from the original badge array that match the search criteria. The search criteria are defined by checking if the lowercase value of the name, creator, or department property of each object includes the lowercase search input. By doing this, the code is able to narrow down the results to only those that match the search input. The filtered data can then be used to render the results to the user.

One real world use-case where micro-service architecture could fit into the business context is in the media streaming industry. Media streaming companies such as Netflix or Hulu have complex systems for managing and delivering content to their users. By using monolithic design architecture, each component can be developed and deployed independently. This allows for greater flexibility in modifying or updating one component without affecting the entire system.

Image description

We are still having trouble connecting the API to the search functionality of the frontend along with having an independent badge that can be altered and duplicated if needed.

Top comments (0)