Created
August 16, 2021 03:16
-
-
Save drnic/37b7d0959b00e943bcdc64fd06ba0a53 to your computer and use it in GitHub Desktop.
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
class ApplicationReflex < StimulusReflex::Reflex | |
before_reflex do | |
jwt = ShopifyApp::JWT.new(element.data_jwt) # pass in "Bearer: blah" | |
if jwt | |
self.headers = {"jwt.shopify_domain" => jwt.shopify_domain, "jwt.shopify_user_id" => jwt.shopify_user_id} | |
end | |
end | |
end |
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
// https://github.com/kirillplatonov/shopify-hotwire-sample/blob/main/app/javascript/shopify_app/shopify_app.js | |
// plus `stimulus-reflex:before` event below: | |
document.addEventListener("DOMContentLoaded", () => { | |
... | |
document.addEventListener("stimulus-reflex:before", async event => { | |
window.sessionToken = await retrieveToken() | |
console.log(`stimulus-reflex:before`, window.sessionToken) | |
event.detail.controller.element.reflexData[event.detail.reflexId].attrs[ | |
"data-jwt" | |
] = window.sessionToken | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment