Commit 6af8b258 authored by yann300's avatar yann300

keep a list of plugin we don't want to autoload && and add remixd to it.

parent 34f090e8
...@@ -19,11 +19,14 @@ export class RemixAppManager extends PluginEngine { ...@@ -19,11 +19,14 @@ export class RemixAppManager extends PluginEngine {
constructor (plugins) { constructor (plugins) {
super(plugins, settings) super(plugins, settings)
this.event = new EventEmitter() this.event = new EventEmitter()
this.donotAutoReload = ['remixd'] // that would be a bad practice to force loading some plugins at page load.
this.registered = {} this.registered = {}
} }
onActivated (plugin) { onActivated (plugin) {
if (!this.donotAutoReload.includes(plugin.name)) {
localStorage.setItem('workspace', JSON.stringify(this.actives)) localStorage.setItem('workspace', JSON.stringify(this.actives))
}
this.event.emit('activate', plugin.name) this.event.emit('activate', plugin.name)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment