/slider-issue

slider issue while changing the state in set interval

Primary LanguageJavaScript

React: Catalog Viewer

Complete a partially completed React catalog viewer application. Certain core React functionalities have already been implemented. Complete the application as shown below in order to pass all the unit tests.

The application has 2 components:

  • The Viewer component, which displays the selected product in a large size.
  • The Thumbs component, which presents a full list of product thumbnails. The list of images is passed to the Thumbs component.

The application has the following functionalities:

  • Initially, the catalog displays the first image in the Viewer.
  • Clicking on the previous or next button displays the previous or next image respectively. The thumbnail list is circular:
    • Clicking the next button when the last image is showing should display the first image.
    • Clicking the previous button when the first image is showing should display the last image.
  • Clicking on any thumbnail loads the appropriate image in the Viewer.
  • The checkbox with the label "Start Slide Show" has the following features:
    • When checked, starts the automatic display of images in the Viewer, beginning with the currently displayed image and cycling to the next every 3 seconds
    • When unchecked, stops the automatic cycling of images
    • During cycling, the user can interact as before (click any thumbnail or the next or previous buttons), after which cycling continues from that image

The following data-testid attributes are required in the component for the tests to pass:

  • The Viewer component should have the data-testid attribute 'catalog-view'.
  • The previous button should have the data-testid attribute 'prev-slide-btn'.
  • The next button should have the data-testid attribute 'next-slide-btn'.
  • The thumbnail buttons should have the data-testid attributes 'thumb-button-0', 'thumb-button-1', 'thumb-button-2', and 'thumb-button-3'.
  • The "Start Slide Show" checkbox should have the data-testid attribute 'toggle-slide-show-button'.

Please note that the component has the above data-testid attributes for test cases and certain classes and ids for rendering purposes. It is advised not to change them.

Environment

  • React Version: 16.13.1
  • Node Version: ^12.18.3
  • Default Port: 8000

Project Specifications

Read-Only Files

  • src/App.test.js

Commands

  • run:
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm start
  • install:
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm install
  • test:
bash bin/env_setup && . $HOME/.nvm/nvm.sh && npm test