Skip to content

Instantly share code, notes, and snippets.

@drnic
Created August 16, 2021 03:16
Show Gist options
  • Save drnic/37b7d0959b00e943bcdc64fd06ba0a53 to your computer and use it in GitHub Desktop.
Save drnic/37b7d0959b00e943bcdc64fd06ba0a53 to your computer and use it in GitHub Desktop.
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
// 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