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

feat(ktabs): add before change prop #2644

Merged
merged 5 commits into from
Mar 24, 2025
Merged

Conversation

portikM
Copy link
Member

@portikM portikM commented Mar 11, 2025

Summary

Adds beforeChange prop in KTabs

Context: sometimes (especially in views that have forms) we want to prompt user and get their confirmation before they switch to a different tab and currently KTabs does not provide an easy way to do that

@portikM portikM self-assigned this Mar 11, 2025
@portikM portikM requested review from adamdehaven, jillztom, Justineo and a team as code owners March 11, 2025 22:10
Copy link

netlify bot commented Mar 11, 2025

Deploy Preview for kongponents-sandbox ready!

Name Link
🔨 Latest commit a2ec9f4
🔍 Latest deploy log https://app.netlify.com/sites/kongponents-sandbox/deploys/67e16fec10a6a20008097c9b
😎 Deploy Preview https://deploy-preview-2644--kongponents-sandbox.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Mar 11, 2025

Deploy Preview for kongponents ready!

Name Link
🔨 Latest commit a2ec9f4
🔍 Latest deploy log https://app.netlify.com/sites/kongponents/deploys/67e16fecd0a291000868cd39
😎 Deploy Preview https://deploy-preview-2644--kongponents.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.


Prop that takes a function return value of which determines whether tab change should be skipped. Useful when some information needs to me brought to user's attention before they leave the content in the currently displayed tab.

The function receives new tab value as an argument and returns a boolean value, `false` will prevent tab change. Defaults to `() => true`.
Copy link
Contributor

@Justineo Justineo Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest we also add support for async operations:

async function onBeforeTabchange() {
  return await checkSomeCondition()
}

Or when we add programatical use for modals:

async function onBeforeTabchange() {
  return await showConfirmModal()
}

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have a use case for that? The use case we're trying to accommodate here is to give a way to communicate to the user that they will loose unsaved progress when switching away from the form.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's reasonable to assume the callback might need to be asynchronous

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

Copy link
Contributor

@DariaYeremina DariaYeremina left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@portikM portikM merged commit becd5af into main Mar 24, 2025
10 checks passed
@portikM portikM deleted the fix/ktabs-before-change-prop branch March 24, 2025 16:58
kongponents-bot pushed a commit that referenced this pull request Mar 24, 2025
# [9.25.0](v9.24.3...v9.25.0) (2025-03-24)

### Features

* **ktabs:** add before change prop ([#2644](#2644)) ([becd5af](becd5af))
@kongponents-bot
Copy link
Collaborator

🎉 This PR is included in version 9.25.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants