I’m making a plugin that creates a panel view. Since I can’t easily pass data to the plugin’s front end, I have to fetch the necessary data and then initialize the plugin. However, nothing happens. I get a blank panel page. Here’s what I do:
If I move the registration out of the timeout, the panel loads, the plugin loads, and everything works as expected. Why am I unable to register the plugin asynchronously?
How do I initialize my plugin only after the necessary data for it is available?
Yep, that’s what I would do too. But I have a Vuex store attached to my root component and its state depends on the initial data. If I initialize the store state after it’s created, I get a bunch of errors from its getters. Therefore, I wanted to initialize the whole plugin app after that data is present.
The real question is why can’t Kirby handle the plugin being initialized asynchronously.
Ok, I think i probably know what happens: panel.plugin() basically only does some transformations and then stores all of it to an object in window.panel. Once the Panel gets loaded, it looks for this objects and actually registers the components etc. in its Vue instance (this way we can bridge between the Panel’s Vue isntance and plugins).
Now your call probably takes so long (not saying that its slow, just longer than the rest of the code), that the Panel has already checked and registered everything before your plugin calls panel.plugin().
I don’t see an easy way around this at the moment.
Those panel views are never created. The code works if i move it out of the promise but yeah that doesn’t help me.
Is there any other way register panel plugins dynamicaly or pass them data upfront?