Created
March 13, 2025 21:57
-
-
Save insin/532ad7769d6bf8d1005f762b9e1ac0f5 to your computer and use it in GitHub Desktop.
Get Twitter React state
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
function getState() { | |
let $reactRoot = document.querySelector('#react-root') | |
let wrapped = $reactRoot.firstElementChild['wrappedJSObject'] || $reactRoot.firstElementChild | |
let reactPropsKey = Object.keys(wrapped).find(key => key.startsWith('__reactProps')) | |
if (reactPropsKey) { | |
let state = wrapped[reactPropsKey].children?.props?.children?.props?.store?.getState() | |
if (state) return state | |
warn('React state not found') | |
} else { | |
warn('React prop key not found') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment