I have an iframe embedded in an ember app. How can I call a component's method from within the iframe?
I guess I somehow need to get the ember instance via window.parent but how to do it and especially how to trigger an ember action?
I have an iframe embedded in an ember app. How can I call a component's method from within the iframe?
I guess I somehow need to get the ember instance via window.parent but how to do it and especially how to trigger an ember action?
You will face 2 problems.
First, until frame's content is loaded from the same domain as app, it's completely isolated. But there is a way to communicate with such frame, window.postMessage
So, within iframe, such code should be executed:
First argument is data to send to parent window (i put just action field there, but you can add other info that you need to pass)
Second problem is calling an ember action. I'd suggest to define message listener inside application route's
beforeModel
hook. This hook will be executed once, when user loads app. That makes it a right place.This code will call application route's actions. Inside them you will manipulate your app. I created a twiddle that demonstrates this approach.
(Sorry about poorly formatted and not very clean code, it's just a bit late)