Last active
October 26, 2024 07:36
-
-
Save olejorgenb/5ee29179838a9c663a4d96b1118f283f to your computer and use it in GitHub Desktop.
gitlab-toggle-comments-only
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
// 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() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://bookmarkl.ink/olejorgenb/5ee29179838a9c663a4d96b1118f283f