-
Notifications
You must be signed in to change notification settings - Fork 413
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
Fix active-tab selection for different page contexts #3212
Merged
+27
−21
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,6 @@ const samplesLightThemeName = 'idea' | |
window.addEventListener('load', () => { | ||
document.querySelectorAll("div[data-platform-hinted]") | ||
.forEach(elem => elem.addEventListener('click', (event) => togglePlatformDependent(event, elem))) | ||
document.querySelectorAll("div[tabs-section]") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the code was removed here because it duplicates the same code that was already in |
||
.forEach(elem => elem.addEventListener('click', (event) => toggleSectionsEventHandler(event))) | ||
const filterSection = document.getElementById('filter-section') | ||
if (filterSection) { | ||
filterSection.addEventListener('click', (event) => filterButtonHandler(event)) | ||
|
@@ -177,19 +175,26 @@ function handleAnchor() { | |
} | ||
|
||
function initTabs() { | ||
document.querySelectorAll("div[tabs-section]") | ||
.forEach(element => { | ||
showCorrespondingTabBody(element) | ||
element.addEventListener('click', (event) => toggleSectionsEventHandler(event)) | ||
}) | ||
let cached = localStorage.getItem("active-tab") | ||
if (cached) { | ||
let parsed = JSON.parse(cached) | ||
let tab = document.querySelector('div[tabs-section] > button[data-togglable="' + parsed + '"]') | ||
if (tab) { | ||
toggleSections(tab) | ||
} | ||
} | ||
document.querySelectorAll("div[tabs-section]").forEach(element => { | ||
showCorrespondingTabBody(element) | ||
element.addEventListener('click', (event) => toggleSectionsEventHandler(event)) | ||
}); | ||
|
||
initTabsForType("classlike"); | ||
initTabsForType("package"); | ||
} | ||
|
||
function initTabsForType(type) { | ||
const cached = localStorage.getItem("active-tab-" + type); | ||
if (!cached) return; | ||
|
||
const parsed = JSON.parse(cached); | ||
const tab = document.querySelector( | ||
'div[tabs-section] > button[data-togglable="' + parsed + '"][data-type="' + type + '"]' | ||
); | ||
if (!tab) return; | ||
|
||
toggleSections(tab); | ||
} | ||
|
||
function showCorrespondingTabBody(element) { | ||
|
@@ -294,9 +299,14 @@ function toggleSections(target) { | |
} | ||
|
||
function toggleSectionsEventHandler(evt) { | ||
if (!evt.target.getAttribute("data-togglable")) return | ||
localStorage.setItem('active-tab', JSON.stringify(evt.target.getAttribute("data-togglable"))) | ||
toggleSections(evt.target) | ||
const togglable = evt.target.getAttribute("data-togglable"); | ||
if (!togglable) return; | ||
|
||
const type = evt.target.getAttribute("data-type"); | ||
if (!type) return; | ||
|
||
localStorage.setItem('active-tab-' + type, JSON.stringify(togglable)); | ||
toggleSections(evt.target); | ||
} | ||
|
||
function togglePlatformDependent(e, container) { | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh btw, it might be worth adding a test that verifies that this attribute exists on the pages, and adding a comment to these tests that the value is used in js tab-handling scripts wouldn't hurt. Should be a simple and quick intro into writing html tests as well
We don't have any UI tests, so if this gets lost during refactoring or someone thinks it's not needed, it might lead to regression.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we reuse
.main-content[data-page-type]
for the purpose? Currently, the attribute is created for every tab. We are trying to decrease the size of the generated HTML.Also, it seems to make no sense to have an empty attribute if
getDocumentableType()
returnsnull
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vmishenev thanks! You are right, I was thinking, that it will be harder to reusing it, but in the end it simplified code a lot :)
Pushed changes with usage of it.
So I will now add test for checking that just
data-page-type
attribute is present on page