Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

navigation-hide-on-click="true" hides navigation when clicking nextEl/prevEl #7559

Closed
5 of 6 tasks
techfg opened this issue May 27, 2024 · 4 comments · Fixed by rizwan-r-r/generative-ai-docs#55 · 4 remaining pull requests
Closed
5 of 6 tasks

navigation-hide-on-click="true" hides navigation when clicking nextEl/prevEl #7559

techfg opened this issue May 27, 2024 · 4 comments · Fixed by rizwan-r-r/generative-ai-docs#55 · 4 remaining pull requests
Labels
t0ggles Linked to the t0ggles task

Comments

@techfg
Copy link

techfg commented May 27, 2024

Check that this is really a bug

  • I confirm

Reproduction link

https://codesandbox.io/p/sandbox/swiper-element-navigation-hide-on-click-repro-3x4w6c

Bug description

With navigation-hide-on-click="true", clicking on navigation elements results in the navigation elements toggling hidden/visible.

In reviewing the target of the event passed to the listener, it is always the swiper-container and not the navigation element (when nav element was clicked) resulting in the internal checks failing to detect that the navigation element itself was clicked.

I am unable to reproduce this issue with Swiper Core - see identical configuration repro. When using Core, the "swiper" click event never fires when clicking a navigation element, whereas in Element, swiperclick fires.

One other note is that I noticed that each event fires twice (in both Element and Core). For example, when clicking a slide, click event fires twice and navigationHide/Show fires twice. This does seem odd but possibly expected behavior? As mentioned, this occurs in both Element & Core. The double event does not happen every time but it happens nearly every time.

Steps to reproduce:

  1. Open Element Repro
  2. Open dev tools console for preview window
  3. Click prev/next element
  4. Open Core Repro
  5. Open dev tools console for preview window
  6. Click prev/next element

Expected Behavior

  1. When clicking the navigation element itself, the navigation visibility should not change and the click event should not fire.
  2. Unclear if this is expected behavior or not but it does seem odd that events fire twice so mentioning it here just in case it is not expected behavior.

Actual Behavior

When clicking the navigation element directly, the navigation toggles visibility and each event fires twice.

Element Repro Console Log (event name / target id / event)

swiperclick swiper-repro CustomEvent {isTrusted: false}
swiperclick swiper-repro CustomEvent {isTrusted: false}
swipernavigationhide swiper-repro CustomEvent {isTrusted: false}
swipernavigationhide swiper-repro CustomEvent {isTrusted: false}

Core Repro Console Log (event name / swiper instance)

swipernavigationnext {__swiper__: true, support: Object, device: Object, browser: Object, eventsListeners: Object, …}
swipernavigationnext {__swiper__: true, support: Object, device: Object, browser: Object, eventsListeners: Object, …}

Swiper version

11.1.3

Platform/Target and Browser Versions

Windows Edge Version 125.0.2535.51, Windows Chrome Version 125.0.6422.112, Firefox 126.0

Validations

  • Follow our Code of Conduct
  • Read the docs.
  • Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
  • Make sure this is a Swiper issue and not a framework-specific issue

Would you like to open a PR for this bug?

  • I'm willing to open a PR
@nolimits4web
Copy link
Owner

t0ggles-create swiper

Copy link

t0ggles bot commented May 27, 2024

Task nolimits4web/SWIPER-137 was created

t0ggles task SWIPER-137

@t0ggles t0ggles bot added the t0ggles Linked to the t0ggles task label May 27, 2024
Copy link

t0ggles bot commented May 30, 2024

Task nolimits4web/SWIPER-137 status changed to Done

@techfg
Copy link
Author

techfg commented May 30, 2024

Hello @nolimits4web -

Thanks for the quick turn on applying a fix for the navigation buttons, I've verified that the navigation buttons no longer toggle visibility when clicked when hideOnClick=true with v11.1.4.

Unfortunately, I'm still seeing what I believe are other issues as mentioned in the OP:

  1. The swiperclick event fires when the navigation button is clicked. This is different behavior than the Core version as the Core version does not fire the click event when a navigation button is clicked.
  2. Events (e.g., swiperclick, swipernavigationhide, etc.) are all firing twice - this happens in Core & Element

Let me know if you feel if these items are expected behavior and if not, happy to open a new issue to cover those.

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment