Giter Club home page Giter Club logo

Comments (3)

jatintyagi avatar jatintyagi commented on August 15, 2024

you would have to load your F2 app inside your F2.Events.on("EventName",function(data){})

var _token = F2.AppHandlers.getToken();
//create & assign a "root" element for the App
F2.AppHandlers.on(
_token,
F2.Constants.AppHandlers.APP_CREATE_ROOT,
function(appConfig) {
appConfig.root = document.getElementById(appConfig.appId); // Your container

}

);
//render the App
F2.AppHandlers.on(
_token,
F2.Constants.AppHandlers.APP_RENDER,
function(appConfig, appHtml) {
$(appConfig.root).append(appHtml); // appending HTML result
}
);
//init F2 & register Apps
F2.init();
F2.registerApps([
{
appId: 'com_openf2_examples_nodejs_helloworld',
manifestUrl: 'http://www.openf2.org/F2/apps'
},
{
appId: 'com_openf2_examples_csharp_marketnews',
manifestUrl: 'http://www.openf2.org/F2/apps'
}
]);

from f2.

g-sudheer avatar g-sudheer commented on August 15, 2024

@jatintyagi , thank you for sharing this one.

I was aware of the above approach, but thank you for sending this.

I'm more looking with the new declarative approach on f2-autoload (http://docs.openf2.org/container-development.html#auto-loading-apps) using F2.Events.

something like..

 <div id="F2.Events.on('xx' , loadF2) ? f2-autoload : 'app-id'" data-app-id="' data-manifesturl="http://test.f2.app"></div>

Thanks,
Sudheer.

from f2.

drawluap avatar drawluap commented on August 15, 2024

@g-sudheer, here's a basic example of the declarative approach in action from the documentation link that you provided:

http://jsfiddle.net/drawluap/jcpbthu8/

In terms of context passing between apps and container (via F2.Events), I don't that much changes if a container developer opts to use the declarative approach. Specifically, the app class would still emit and listen for events and the container would also need to emit/listen if applicable. The declarative approach really only simplifies app registration but does not allow for declarative eventing (as far as I can tell).

I think you

from f2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.