You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.3 KiB
63 lines
2.3 KiB
package com.fr.design.upm; |
|
|
|
import com.fr.design.dialog.BasicPane; |
|
import com.fr.design.ui.ModernUIPane; |
|
import com.fr.design.upm.event.DownloadEvent; |
|
import com.fr.event.Event; |
|
import com.fr.event.EventDispatcher; |
|
import com.fr.event.Listener; |
|
import com.teamdev.jxbrowser.chromium.JSValue; |
|
import com.teamdev.jxbrowser.chromium.events.ScriptContextAdapter; |
|
import com.teamdev.jxbrowser.chromium.events.ScriptContextEvent; |
|
|
|
import java.awt.*; |
|
|
|
/** |
|
* @author richie |
|
* @version 10.0 |
|
* Created by richie on 2019-04-12 |
|
* Update Plugin Manager容器 |
|
*/ |
|
public class UpmModernPane extends BasicPane { |
|
|
|
private ModernUIPane<Object> modernUIPane; |
|
|
|
@Override |
|
protected String title4PopupWindow() { |
|
return "UPM"; |
|
} |
|
|
|
public UpmModernPane() { |
|
setLayout(new BorderLayout()); |
|
if (UpmFinder.checkUPMResourcesExist()) { |
|
modernUIPane = new ModernUIPane.Builder<>() |
|
.prepare(new ScriptContextAdapter() { |
|
@Override |
|
public void onScriptContextCreated(ScriptContextEvent event) { |
|
JSValue window = event.getBrowser().executeJavaScriptAndReturnValue("window"); |
|
window.asObject().setProperty("PluginHelper", UpmJSBridge.getBridge(event.getBrowser())); |
|
} |
|
}) |
|
.withURL(UpmFinder.getMainResourcePath()) |
|
.build(); |
|
} else { |
|
modernUIPane = new ModernUIPane.Builder<>() |
|
.withComponent(WarnComponent.KEY) |
|
.prepare(new ScriptContextAdapter() { |
|
@Override |
|
public void onScriptContextCreated(ScriptContextEvent event) { |
|
JSValue window = event.getBrowser().executeJavaScriptAndReturnValue("window"); |
|
window.asObject().setProperty("PluginHelper", UpmJSBridge.getBridge(event.getBrowser())); |
|
} |
|
}).build(); |
|
EventDispatcher.listen(DownloadEvent.SUCCESS, new Listener<String>() { |
|
@Override |
|
public void on(Event event, String param) { |
|
modernUIPane.redirect(UpmFinder.getMainResourcePath()); |
|
} |
|
}); |
|
} |
|
add(modernUIPane, BorderLayout.CENTER); |
|
} |
|
|
|
}
|
|
|