use of com.haulmont.cuba.gui.screen.FrameOwner in project cuba by cuba-platform.
the class FragmentComponentLoader method createComponent.
@Override
public void createComponent() {
String src = element.attributeValue("src");
String screenId = element.attributeValue("screen");
if (src == null && screenId == null) {
throw new GuiDevelopmentException("Either 'src' or 'screen' must be specified for 'frame'", context, "fragment", element.attributeValue("id"));
}
String fragmentId;
if (element.attributeValue("id") != null) {
fragmentId = element.attributeValue("id");
} else if (screenId != null) {
fragmentId = screenId;
} else {
fragmentId = src;
}
FragmentHelper fragmentHelper = getFragmentHelper();
WindowInfo windowInfo;
if (src == null) {
// load screen class only once
windowInfo = getWindowConfig().getWindowInfo(screenId).resolve();
} else {
windowInfo = fragmentHelper.createFakeWindowInfo(src, fragmentId);
}
StopWatch createStopWatch = createStopWatch(ScreenLifeCycle.CREATE, windowInfo.getId());
Fragment fragment = factory.create(Fragment.NAME);
ScreenFragment controller = fragmentHelper.createController(windowInfo, fragment);
// setup screen and controller
ComponentLoaderContext parentContext = (ComponentLoaderContext) getContext();
FrameOwner hostController = parentContext.getFrame().getFrameOwner();
setHostController(controller, hostController);
setWindowId(controller, windowInfo.getId());
setFrame(controller, fragment);
setScreenContext(controller, new ScreenContextImpl(windowInfo, parentContext.getOptions(), getScreenContext(hostController)));
setScreenData(controller, new ScreenDataImpl());
FragmentImplementation fragmentImpl = (FragmentImplementation) fragment;
fragmentImpl.setFrameOwner(controller);
fragmentImpl.setId(fragmentId);
FragmentContextImpl frameContext = new FragmentContextImpl(fragment, innerContext);
((FrameImplementation) fragment).setContext(frameContext);
if (windowInfo.getTemplate() != null) {
String frameId = fragmentId;
if (parentContext.getFullFrameId() != null) {
frameId = parentContext.getFullFrameId() + "." + frameId;
}
innerContext = new ComponentLoaderContext(getComponentContext().getOptions());
innerContext.setMessagesPack(fragmentHelper.getMessagePack(windowInfo.getTemplate()));
innerContext.setCurrentFrameId(fragmentId);
innerContext.setFullFrameId(frameId);
innerContext.setFrame(fragment);
innerContext.setParent(parentContext);
innerContext.setProperties(loadProperties(element));
LayoutLoader layoutLoader = getLayoutLoader(innerContext);
ScreenXmlLoader screenXmlLoader = beanLocator.get(ScreenXmlLoader.NAME);
Element rootElement = screenXmlLoader.load(windowInfo.getTemplate(), windowInfo.getId(), getComponentContext().getParams());
String messagesPack = rootElement.attributeValue("messagesPack");
if (messagesPack != null) {
innerContext.setMessagesPack(messagesPack);
}
this.fragmentLoader = layoutLoader.createFragmentContent(fragment, rootElement);
}
createStopWatch.stop();
this.resultComponent = fragment;
}
use of com.haulmont.cuba.gui.screen.FrameOwner in project cuba by cuba-platform.
the class TimerFacetProvider method addInitTimerMethodTask.
// for compatibility only
@Deprecated
protected void addInitTimerMethodTask(Timer timer, String timerMethodName, ComponentContext context) {
FrameOwner controller = context.getFrame().getFrameOwner();
if (controller instanceof LegacyFragmentAdapter) {
controller = ((LegacyFragmentAdapter) controller).getRealScreen();
}
Class<? extends FrameOwner> windowClass = controller.getClass();
Method timerMethod;
try {
timerMethod = windowClass.getMethod(timerMethodName, Timer.class);
} catch (NoSuchMethodException e) {
throw new GuiDevelopmentException("Unable to find invoke method for timer", context, ParamsMap.of("Timer Id", timer.getId(), "Method name", timerMethodName));
}
timer.addTimerActionListener(new DeclarativeTimerActionHandler(timerMethod, controller));
}
use of com.haulmont.cuba.gui.screen.FrameOwner in project cuba by cuba-platform.
the class LinkCellClickListener method callControllerInvoke.
protected void callControllerInvoke(Entity rowItem, String columnId, String invokeMethodName) {
FrameOwner controller = table.getFrame().getFrameOwner();
if (controller instanceof LegacyFragmentAdapter) {
controller = ((LegacyFragmentAdapter) controller).getRealScreen();
}
Method method;
method = findLinkInvokeMethod(controller.getClass(), invokeMethodName);
if (method != null) {
try {
method.invoke(controller, rowItem, columnId);
} catch (Exception e) {
throw new RuntimeException("Unable to cal linkInvoke method for table column", e);
}
} else {
try {
method = controller.getClass().getMethod(invokeMethodName);
try {
method.invoke(controller);
} catch (Exception e1) {
throw new RuntimeException("Unable to call linkInvoke method for table column", e1);
}
} catch (NoSuchMethodException e1) {
throw new IllegalStateException(String.format("No suitable methods named %s for invoke", invokeMethodName));
}
}
}
Aggregations