Skip to content

Instantly share code, notes, and snippets.

@olejorgenb
Last active October 26, 2024 07:36
Show Gist options
  • Save olejorgenb/5ee29179838a9c663a4d96b1118f283f to your computer and use it in GitHub Desktop.
Save olejorgenb/5ee29179838a9c663a4d96b1118f283f to your computer and use it in GitHub Desktop.
gitlab-toggle-comments-only
// bookmarklet_title: Toggle comments only
// bookmarklet_about: Toggle between comments only and all activity on GitLab issues/MRs
// Source: https://gist.github.com/olejorgenb/5ee29179838a9c663a4d96b1118f283f
// LIB
// SCRIPT
function main() {
function commentOnly() {
return document.querySelector('li[data-filter-type="comments"]')
}
function all() {
return document.querySelector('li[data-filter-type="all"]')
}
function isCommentOnly() {
return commentOnly().className.includes("is-active")
}
function clickListItem(li) {
li.children[0].click()
}
if (isCommentOnly()) {
clickListItem(all())
} else {
clickListItem(commentOnly())
}
}
main()
@olejorgenb
Copy link
Author

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